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.
20 lines
342 B
YAML
20 lines
342 B
YAML
2 years ago
|
- name: reload_sysctl
|
||
|
command: sysctl --system
|
||
|
|
||
|
- name: restart_containerd
|
||
|
ansible.builtin.service:
|
||
|
name: containerd
|
||
|
state: restarted
|
||
|
|
||
|
- name: reload_networking
|
||
|
service:
|
||
|
name: networking
|
||
|
state: restarted
|
||
|
async: 5
|
||
|
poll: 0
|
||
|
notify: wait_for_connection
|
||
|
|
||
|
- name: wait_for_connection
|
||
|
wait_for_connection:
|
||
|
delay: 5
|