ARA Records Ansible and makes it easier to understand and troubleshoot.It is another recursive acronym.
ara is a free and open source project under the GPLv3 license.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
- name: Reload iptables (Debian) command: '{{ reload_command }}' when: - not ansible_facts.is_chroot - ansible_facts.os_family == 'Debian' listen: "Reload iptables" - name: Reload iptables (RedHat) command: 'systemctl reload iptables' when: - not ansible_facts.is_chroot - ansible_facts.os_family == 'RedHat' listen: "Reload iptables" - name: Reload ip6tables (Red Hat) command: 'systemctl reload ip6tables' when: - not ansible_facts.is_chroot - ansible_facts.os_family == 'RedHat' listen: "Reload iptables"