Fix integration test fedora 34 with firewalld

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2021-08-10 09:58:04 +05:30
parent 7a62e01af6
commit c244abd82f
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,3 @@
---
bugfixes:
- firewalld - fix integration tests for Fedora 34 (https://github.com/ansible-collections/ansible.posix/pull/243).

View file

@ -15,6 +15,13 @@
register: check_output register: check_output
ignore_errors: true ignore_errors: true
- name: Enable dbus-broker daemon
service:
name: dbus-broker
enabled: true
state: started
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('34', '=='))
- name: Test Online Operations - name: Test Online Operations
block: block:
- name: start firewalld - name: start firewalld