1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_rspamd.git synced 2024-08-16 17:09:51 +02:00
ansible_role_rspamd/handlers/main.yml

12 lines
214 B
YAML
Raw Permalink Normal View History

2021-01-21 20:50:04 +01:00
---
2023-10-29 15:42:13 +01:00
- name: Run sudo apt update
2021-01-21 20:50:04 +01:00
become: true
2022-04-07 23:10:30 +02:00
ansible.builtin.apt:
2021-01-21 20:50:04 +01:00
update_cache: true
2021-01-25 00:14:46 +01:00
2023-10-29 15:42:13 +01:00
- name: Run systemctl restart rspamd
2021-01-25 00:14:46 +01:00
become: true
ansible.builtin.systemd:
name: 'rspamd'
state: 'reloaded'