You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
266 B
YAML
16 lines
266 B
YAML
8 years ago
|
---
|
||
|
- name: touch sysctl.conf
|
||
|
file:
|
||
|
path: /etc/sysctl.conf
|
||
|
state: touch
|
||
|
|
||
|
- name: copy ff.conf
|
||
|
copy:
|
||
|
src: ff.conf
|
||
|
dest: /etc/sysctl.d/ff.conf
|
||
|
register: ff_conf
|
||
|
|
||
|
- name: reload sysctl
|
||
|
when: ff_conf.changed
|
||
|
command: /usr/bin/sysctl -p
|