From 2b7a35c3460176d2d938eb599cc6ab1a4d13a08c Mon Sep 17 00:00:00 2001 From: piotrtrojanowski-dev <53664786+piotrtrojanowski-dev@users.noreply.github.com> Date: Tue, 27 Jul 2021 09:37:58 +0200 Subject: [PATCH 1/2] Fix requires firewalld version in comments for permanent parameter. --- plugins/modules/firewalld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/firewalld.py b/plugins/modules/firewalld.py index ae5c2a2..f892cd3 100644 --- a/plugins/modules/firewalld.py +++ b/plugins/modules/firewalld.py @@ -81,7 +81,7 @@ options: permanent: description: - Should this configuration be in the running firewalld configuration or persist across reboots. - - As of Ansible 2.3, permanent operations can operate on firewalld configs when it is not running (requires firewalld >= 3.0.9). + - As of Ansible 2.3, permanent operations can operate on firewalld configs when it is not running (requires firewalld >= 0.3.9). - Note that if this is C(no), immediate is assumed C(yes). type: bool immediate: From 944f5416c9d095b7b930744f0e0919e4b89d5a51 Mon Sep 17 00:00:00 2001 From: Hideki Saito Date: Sat, 7 Aug 2021 13:28:08 +0900 Subject: [PATCH 2/2] Added changelog fragment file to PR #233 Signed-off-by: Hideki Saito --- changelogs/fragments/233-fix-wrong-firewalld-version-info.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 changelogs/fragments/233-fix-wrong-firewalld-version-info.yml diff --git a/changelogs/fragments/233-fix-wrong-firewalld-version-info.yml b/changelogs/fragments/233-fix-wrong-firewalld-version-info.yml new file mode 100644 index 0000000..f1bf525 --- /dev/null +++ b/changelogs/fragments/233-fix-wrong-firewalld-version-info.yml @@ -0,0 +1,3 @@ +--- +trivial: + - firewalld - fix wrong version number in the module document.