Use new syntax for Jinj2 filters that are used as tests
Ansible 2.5.0 uses a new syntax for Jinja2 filters that are used as tests. See: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.5.html
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
---
|
||||
- name: Install firewalld and deps
|
||||
when: ansible_distribution_major_version | version_compare('8', '>=')
|
||||
when: ansible_distribution_major_version is version_compare('8', '>=')
|
||||
apt: pkg={{ item }} state=present
|
||||
with_items:
|
||||
- firewalld
|
||||
@ -8,11 +8,11 @@
|
||||
tags: packages
|
||||
|
||||
- name: Copy firewalld public zone file
|
||||
when: ansible_distribution_major_version | version_compare('8', '>=')
|
||||
when: ansible_distribution_major_version is version_compare('8', '>=')
|
||||
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_major_version | version_compare('8', '>=')
|
||||
when: ansible_distribution_major_version is version_compare('8', '>=')
|
||||
command: tidy -xml -iq -m -w 0 /etc/firewalld/zones/public.xml
|
||||
notify:
|
||||
- reload firewalld
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
- name: Install firewalld and deps
|
||||
when: ansible_distribution_version | version_compare('15.04', '>=')
|
||||
when: ansible_distribution_version is version_compare('15.04', '>=')
|
||||
apt: pkg={{ item }} state=present
|
||||
with_items:
|
||||
- firewalld
|
||||
@ -8,11 +8,11 @@
|
||||
tags: packages
|
||||
|
||||
- name: Copy firewalld public zone file
|
||||
when: ansible_distribution_version | version_compare('15.04', '>=')
|
||||
when: ansible_distribution_version is 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', '>=')
|
||||
when: ansible_distribution_version is version_compare('15.04', '>=')
|
||||
command: tidy -xml -iq -m -w 0 /etc/firewalld/zones/public.xml
|
||||
notify:
|
||||
- reload firewalld
|
||||
|
Reference in New Issue
Block a user