ansible-role-postfix/handlers/main.yml
phil 53f2925435 Remove fail2ban config files
Better install them via fail2ban role
2023-10-26 22:34:18 +02:00

30 lines
573 B
YAML

---
- name: restart rsyslog
ansible.builtin.service:
name: rsyslog
state: restarted
- name: reload postfix
ansible.builtin.service:
name: postfix
state: reloaded
- name: restart postfix
ansible.builtin.service:
name: postfix
state: restarted
- name: reload monit
ansible.builtin.service:
name: monit
state: reloaded
- name: Get certificate
command: dehydrated --cron -g
delegate_to: "{{ gateway_host }}"
- name: reload nginx
ansible.builtin.service:
name: nginx
state: reloaded
delegate_to: "{{ gateway_host }}"