scripts/ansible/handlers.yml

46 lines
735 B
YAML
Raw Normal View History

2019-08-25 14:17:20 -04:00
---
2019-12-03 23:11:20 -05:00
- name: Enable weechat service
service:
name: weechat
enabled: yes
- name: Re-export exportfs
command: exportfs -arv
- name: Restart and enable smartd
service:
name: smartd
enabled: yes
state: restarted
2019-08-25 14:17:20 -04:00
- name: Restart chrony service
service:
name: chrony
state: restarted
2019-12-02 22:06:59 -05:00
- name: Restart postfix
service:
name: postfix
state: restarted
2019-08-25 14:17:20 -04:00
- name: Restart sshd service
service:
name: sshd
state: restarted
2019-09-02 01:29:24 -04:00
- name: Restart systemd-logind service
service:
name: systemd-logind
state: restarted
2019-12-02 22:06:59 -05:00
- name: Restart zfs-zed
service:
name: zfs-zed
state: restarted
2020-12-24 02:17:45 -05:00
- name: Restart and enable tor
service:
name: tor
enabled: yes
state: restarted