ansible-personal/roles/common/tasks/firewall_Ubuntu.yml
Alan Orth 948058151a
roles/common: Fix issues raised by ansible-lint
[ANSIBLE0010] Package installs should not use latest
2017-12-29 20:11:55 +02:00

19 lines
617 B
YAML

---
- name: Install firewalld and deps
when: ansible_distribution_version | version_compare('15.04', '>=')
apt: pkg={{ item }} state=present
with_items:
- firewalld
- tidy
tags: packages
- name: Copy firewalld public zone file
when: ansible_distribution_version | version_compare('15.04', '>=')
template: src=public.xml.j2 dest=/etc/firewalld/zones/public.xml owner=root mode=0600
- name: Format public.xml firewalld zone file
when: ansible_distribution_version | version_compare('15.04', '>=')
command: tidy -xml -iq -m -w 0 /etc/firewalld/zones/public.xml
notify:
- reload firewalld