Initial commit

This commit is contained in:
nd 2021-04-09 23:50:37 +02:00
commit e2b06c5a87
No known key found for this signature in database
GPG key ID: 21B5CD4DEE3670E9

7
tasks/main.yml Normal file
View file

@ -0,0 +1,7 @@
- name: set sysctl settings
loop: "{{ sysctl|dict2items }}"
ansible.posix.sysctl:
name: "{{ item.key }}"
value: "{{ item.value }}"
state: present
sysctl_set: yes