1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/roles/firewalld/handlers/main.yml
Evangelos Foutras 72eb5d049e
Capitalize few more handler names that were missed
Fixes: 578b781966c4 ("Capitalize the handler name in handler invocations")
Fixes: 26f289b72bfb ("Capitalize the first letter of all task names")
2022-09-16 19:19:23 +03:00

12 lines
452 B
YAML

# NOTE: hack for a systemd bug (restarting firewalld.service fails due to fail2ban.service)
# https://github.com/systemd/systemd/issues/2830
# https://bugzilla.opensuse.org/show_bug.cgi?id=1146856
# - name: Restart firewalld
# service: name=firewalld state=restarted
- name: Stop firewalld
service: name=firewalld state=stopped
listen: Restart firewalld
- name: Start firewalld
service: name=firewalld state=started
listen: Restart firewalld