public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH] zone: response with an error if a zone is already up or down
Date: Tue, 25 Jul 2017 15:13:57 +0200	[thread overview]
Message-ID: <1500988437-3732-1-git-send-email-jonatan.schlag@ipfire.org> (raw)

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

Fixes: #11368

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

diff --git a/src/functions/functions.zone b/src/functions/functions.zone
index 91ce629..eccca3a 100644
--- a/src/functions/functions.zone
+++ b/src/functions/functions.zone
@@ -369,6 +369,12 @@ zone_up() {
 		return ${EXIT_ERROR}
 	fi
 
+	# Check if the zone is already up
+	if zone_is_active ${zone}; then
+		log ERROR "Zone ${zone} is already up"
+		return ${EXIT_ERROR}
+	fi
+
 	# Check if a zone has got the remove tag.
 	if zone_has_destroy_tag ${zone}; then
 		error "Cannot bring up any zone which is to be removed."
@@ -405,6 +411,13 @@ zone_down() {
 		return ${EXIT_ERROR}
 	fi
 
+	# Check if the zone is already down
+	if ! zone_is_active ${zone}; then
+		log ERROR "Zone ${zone} is already down"
+		return ${EXIT_ERROR}
+	fi
+
+
 	local hook="$(zone_get_hook "${zone}")"
 	if [ -z "${hook}" ]; then
 		error "Config file did not provide any hook."
-- 
2.6.3


             reply	other threads:[~2017-07-25 13:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-25 13:13 Jonatan Schlag [this message]
2017-07-25 22:32 ` Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1500988437-3732-1-git-send-email-jonatan.schlag@ipfire.org \
    --to=jonatan.schlag@ipfire.org \
    --cc=network@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox