ansible-role-pureftpd/handlers/main.yml
2024-03-11 20:22:30 +01:00

11 lines
309 B
YAML

---
# handlers file for ansible-role-pureftpd
- name: Restart pureftpd
ansible.builtin.service:
name: pure-ftpd
state: restarted
when: pureftpd_service_state != 'stopped'
become: true
# Ignore errors due to: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=754762;msg=9
ignore_errors: true