ansible-role-pureftpd/handlers/main.yml
2023-04-16 12:03:09 +02:00

11 lines
299 B
YAML

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