servers/roles/proxmox/handlers/main.yml

19 lines
391 B
YAML
Raw Normal View History

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