mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 15:15:26 +01:00
Merge pull request #243 from Akasurde/test
Fix integration test fedora 34 with firewalld SUMMARY Signed-off-by: Abhijeet Kasurde akasurde@redhat.com ISSUE TYPE Bugfix Pull Request COMPONENT NAME plugins/modules/firewalld.py Reviewed-by: Hideki Saito <saito@fgrep.org> Reviewed-by: None <None>
This commit is contained in:
commit
bd594970a8
2 changed files with 10 additions and 0 deletions
3
changelogs/fragments/firewalld_integ_test.yml
Normal file
3
changelogs/fragments/firewalld_integ_test.yml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
bugfixes:
|
||||
- firewalld - fix integration tests for Fedora 34 (https://github.com/ansible-collections/ansible.posix/pull/243).
|
||||
|
|
@ -15,6 +15,13 @@
|
|||
register: check_output
|
||||
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
|
||||
block:
|
||||
- name: start firewalld
|
||||
|
|
|
|||
Loading…
Reference in a new issue