roles/common: Update iptables for Ubuntu 16.04

Basically, anything after 15.04 is using firewalld.
This commit is contained in:
Alan Orth 2016-04-14 20:57:18 +03:00
parent ad232a7a8b
commit d265b522e8
1 changed files with 3 additions and 3 deletions

View File

@ -16,18 +16,18 @@
- restart iptables-persistent
- name: Install firewalld and deps
when: ansible_distribution_version == '15.04'
when: ansible_distribution_version >= '15.04'
apt: pkg={{ item }} state=latest
with_items:
- firewalld
- tidy
- name: Copy firewalld public zone file
when: ansible_distribution_version == '15.04'
when: ansible_distribution_version >= '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 == '15.04'
when: ansible_distribution_version >= '15.04'
shell: tidy -xml -iq -m -w 0 /etc/firewalld/zones/public.xml
notify:
- restart firewalld