public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/5] zone: zone_config_check_same_setting check for config to edit
@ 2017-08-12 10:22 Jonatan Schlag
  2017-08-12 10:22 ` [PATCH 2/5] zone: zone_config_settings_write never generate an id Jonatan Schlag
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Jonatan Schlag @ 2017-08-12 10:22 UTC (permalink / raw)
  To: network

[-- Attachment #1: Type: text/plain, Size: 1377 bytes --]

We now check if we get the config, which we edit in this moment and when we continue.

Fixes: #11451

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/functions/functions.zone | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/src/functions/functions.zone b/src/functions/functions.zone
index 1eb492f..941314d 100644
--- a/src/functions/functions.zone
+++ b/src/functions/functions.zone
@@ -1155,12 +1155,13 @@ zone_config_check_same_setting() {
 	# with the same setting is already configured for this zone.
 	# Returns True when yes and False when no.
 
-	assert [ $# -eq 4 ]
+	assert [ $# -eq 5 ]
 
 	local zone=${1}
 	local hook=${2}
-	local key=${3}
-	local value=${4}
+	local id=${3}
+	local key=${4}
+	local value=${5}
 
 	# The key should be local for this function
 	local ${key}
@@ -1171,6 +1172,12 @@ zone_config_check_same_setting() {
 		if  [[ $(zone_config_get_hook "${zone}" "${config}") != ${hook} ]]; then
 			continue
 		fi
+
+		# Check if we get the config we want to create or edit (we must ignore this config on edit)
+		if [[ "${hook}.${id}" = "${config}" ]]; then
+			continue
+		fi
+
 		# Get the value of the key for a given function
 		zone_config_settings_read "${zone}" "${config}" \
                 --ignore-superfluous-settings "${key}"
-- 
2.6.3


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-08-13 12:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-12 10:22 [PATCH 1/5] zone: zone_config_check_same_setting check for config to edit Jonatan Schlag
2017-08-12 10:22 ` [PATCH 2/5] zone: zone_config_settings_write never generate an id Jonatan Schlag
2017-08-12 10:22 ` [PATCH 3/5] header-config: pass id to hook_parse_cmdline Jonatan Schlag
2017-08-12 10:22 ` [PATCH 4/5] config hooks: hook_parse_cmdline take id as an argument Jonatan Schlag
2017-08-12 10:22 ` [PATCH 5/5] config hook: generate new id inside hook_new Jonatan Schlag
2017-08-13 12:10 ` [PATCH 1/5] zone: zone_config_check_same_setting check for config to edit Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox