mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
42c5cdf01a
* firewalld: add zone target set Fixes https://github.com/ansible/ansible/issues/49232 Signed-off-by: Adam Miller <admiller@redhat.com> * fix sanity tests, add example of zone target setting Signed-off-by: Adam Miller <admiller@redhat.com> * test different zone/target combination as we're not hitting default settings Signed-off-by: Adam Miller <admiller@redhat.com> * fix enabled values for zone operations Signed-off-by: Adam Miller <admiller@redhat.com> * Apply suggestions from code review Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
69 lines
1.8 KiB
YAML
69 lines
1.8 KiB
YAML
# Test playbook for the firewalld module - source operations
|
|
# (c) 2020, Adam Miller <admiller@redhat.com>
|
|
|
|
# This file is part of Ansible
|
|
#
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
- name: firewalld dmz zone target DROP
|
|
firewalld:
|
|
zone: dmz
|
|
permanent: True
|
|
state: present
|
|
target: DROP
|
|
register: result
|
|
|
|
- name: assert firewalld dmz zone target DROP present worked
|
|
assert:
|
|
that:
|
|
- result is changed
|
|
|
|
- name: firewalld dmz zone target DROP rerun (verify not changed)
|
|
firewalld:
|
|
zone: dmz
|
|
permanent: True
|
|
state: present
|
|
target: DROP
|
|
register: result
|
|
|
|
- name: assert firewalld dmz zone target DROP present worked (verify not changed)
|
|
assert:
|
|
that:
|
|
- result is not changed
|
|
|
|
- name: firewalld dmz zone target DROP absent
|
|
firewalld:
|
|
zone: dmz
|
|
permanent: True
|
|
state: absent
|
|
target: DROP
|
|
register: result
|
|
|
|
- name: assert firewalld dmz zone target DROP absent worked
|
|
assert:
|
|
that:
|
|
- result is changed
|
|
|
|
- name: firewalld dmz zone target DROP rerun (verify not changed)
|
|
firewalld:
|
|
zone: dmz
|
|
permanent: True
|
|
state: absent
|
|
target: DROP
|
|
register: result
|
|
|
|
- name: assert firewalld dmz zone target DROP present worked (verify not changed)
|
|
assert:
|
|
that:
|
|
- result is not changed
|