fix #894 by actually updating with the modified settings
This commit is contained in:
parent
8fff5ac9ce
commit
d705647873
1 changed files with 5 additions and 3 deletions
|
@ -76,7 +76,7 @@ options:
|
|||
notes:
|
||||
- Not tested on any Debian based system.
|
||||
requirements: [ 'firewalld >= 0.2.11' ]
|
||||
author: "Adam Miller (@maxamillion)"
|
||||
author: "Adam Miller (@maxamillion)"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
@ -137,7 +137,7 @@ def set_port_disabled_permanent(zone, port, protocol):
|
|||
|
||||
####################
|
||||
# source handling
|
||||
#
|
||||
#
|
||||
def get_source(zone, source):
|
||||
fw_zone = fw.config().getZoneByName(zone)
|
||||
fw_settings = fw_zone.getSettings()
|
||||
|
@ -150,11 +150,13 @@ def add_source(zone, source):
|
|||
fw_zone = fw.config().getZoneByName(zone)
|
||||
fw_settings = fw_zone.getSettings()
|
||||
fw_settings.addSource(source)
|
||||
fw_zone.update(fw_settings)
|
||||
|
||||
def remove_source(zone, source):
|
||||
fw_zone = fw.config().getZoneByName(zone)
|
||||
fw_settings = fw_zone.getSettings()
|
||||
fw_settings.removeSource(source)
|
||||
fw_zone.update(fw_settings)
|
||||
|
||||
####################
|
||||
# service handling
|
||||
|
@ -190,7 +192,7 @@ def set_service_disabled_permanent(zone, service):
|
|||
fw_settings = fw_zone.getSettings()
|
||||
fw_settings.removeService(service)
|
||||
fw_zone.update(fw_settings)
|
||||
|
||||
|
||||
|
||||
####################
|
||||
# rich rule handling
|
||||
|
|
Loading…
Reference in a new issue