oopen-server/roles/common/handlers/main.yml

33 lines
554 B
YAML

---
- name: Update timezone
command: dpkg-reconfigure --frontend noninteractive tzdata
#- name: Restart ssh
# shell: sleep 3; systemctl restart sshd
# async: 1
# poll: 0
# Does NOT Work
#
# Error was:
# Start request repeated too quickly.
#
# See also: https://github.com/ansible/ansible-modules-core/issues/1533
#
- name: Restart ssh
service:
name: ssh
state: restarted
- name: Restart postfix
service:
name: postfix
state: restarted
- name: Reload bind9
service:
name: bind9
state: reloaded
enabled: yes