mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-24 22:43:07 +02:00
26 lines
486 B
YAML
26 lines
486 B
YAML
---
|
|
- name: Check the system
|
|
raw: uname -a
|
|
register: OS
|
|
tags:
|
|
- update-users
|
|
|
|
- include_tasks: ubuntu.yml
|
|
when: '"Ubuntu" in OS.stdout or "Linux" in OS.stdout'
|
|
tags:
|
|
- update-users
|
|
|
|
- include_tasks: freebsd.yml
|
|
when: '"FreeBSD" in OS.stdout'
|
|
tags:
|
|
- update-users
|
|
|
|
- name: Sysctl tuning
|
|
sysctl: name="{{ item.item }}" value="{{ item.value }}"
|
|
when: item.item != ""
|
|
with_items:
|
|
- "{{ sysctl|default([]) }}"
|
|
tags:
|
|
- always
|
|
|
|
- meta: flush_handlers
|