2024-08-28 10:37:41 +00:00
|
|
|
- name: reboot
|
|
|
|
reboot:
|
|
|
|
when: "'handler' not in ansible_skip_tags"
|
|
|
|
|
2023-07-14 12:17:44 +00:00
|
|
|
- name: reload interfaces
|
|
|
|
command: ifreload -a
|
2024-05-18 16:35:41 +00:00
|
|
|
when: "'handler' not in ansible_skip_tags"
|
2024-08-28 10:37:41 +00:00
|
|
|
|
2024-09-10 08:11:13 +00:00
|
|
|
- name: reload postfix
|
|
|
|
service:
|
|
|
|
name: postfix
|
|
|
|
state: reloaded
|
|
|
|
when: "'handler' not in ansible_skip_tags"
|
|
|
|
|
2024-08-28 10:37:41 +00:00
|
|
|
- name: update package cache
|
|
|
|
package:
|
|
|
|
update_cache: yes
|
|
|
|
when: "'handler' not in ansible_skip_tags"
|