From 9254f67f3ece89e0be66c95a31a536e9c4c6e002 Mon Sep 17 00:00:00 2001 From: Ikrom Date: Thu, 10 May 2018 15:13:53 +0500 Subject: [PATCH] Update firewalld.py (#39951) Typo fixed +label: docsite_pr --- lib/ansible/modules/system/firewalld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/firewalld.py b/lib/ansible/modules/system/firewalld.py index 29ec59d54ce..a4a3d1066d9 100644 --- a/lib/ansible/modules/system/firewalld.py +++ b/lib/ansible/modules/system/firewalld.py @@ -77,7 +77,7 @@ notes: - Requires the python2 bindings of firewalld, which may not be installed by default if the distribution switched to python 3 - Zone transactions (creating, deleting) can be performed by using only the zone and state parameters "present" or "absent". Note that zone transactions must explicitly be permanent. This is a limitation in firewalld. - This also means that you will have to reload firewalld after adding a zone that you wish to perfom immediate actions on. + This also means that you will have to reload firewalld after adding a zone that you wish to perform immediate actions on. The module will not take care of this for you implicitly because that would undo any previously performed immediate actions which were not permanent. Therefor, if you require immediate access to a newly created zone it is recommended you reload firewalld immediately after the zone creation returns with a changed state and before you perform any other immediate, non-permanent actions on that zone.