From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH] Fix radvd startup
Date: Sat, 27 Jan 2018 17:06:18 +0000 [thread overview]
Message-ID: <1517072778-3768-1-git-send-email-jonatan.schlag@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1809 bytes --]
We now only start radvd when we write a config fr a zone into the config
file and when no errors happen.
Fixes: #11450
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
src/functions/functions.radvd | 31 +++++++++++++++++++------------
1 file changed, 19 insertions(+), 12 deletions(-)
diff --git a/src/functions/functions.radvd b/src/functions/functions.radvd
index 4e41160..bd016a0 100644
--- a/src/functions/functions.radvd
+++ b/src/functions/functions.radvd
@@ -23,16 +23,16 @@ RADVD_CONFIGFILE="/etc/radvd.conf"
radvd_update() {
# (Re-)write the configuration file
- radvd_write_config
-
- # Reload the radvd service if it is already running
- if service_is_active radvd; then
- service_reload radvd
- return ${EXIT_OK}
+ if radvd_write_config; then
+ # Reload the radvd service if it is already running
+ if service_is_active radvd; then
+ service_reload radvd
+ return ${EXIT_OK}
+ fi
+
+ # Start the radvd service
+ service_start radvd
fi
-
- # Start the radvd service
- service_start radvd
}
radvd_clear_config() {
@@ -48,12 +48,19 @@ radvd_write_config() {
# Write the configuration for all zones.
local zone
- for zone in $(zones_get_local); do
- __radvd_config_interface ${zone}
+ # The return value determine if radvd is started or not
+ local return_value=${EXIT_FALSE}
+ for zone in $(zones_get_local); do
+ if __radvd_config_interface ${zone} && [ ${return_value} = ${EXIT_TRUE} ]; then
+ # We return TRUE when __radvd_config_interface succeed and no errors happend till now
+ return_value=${EXIT_TRUE}
+ else
+ return_value=${EXIT_FALSE}
+ fi
done >> ${RADVD_CONFIGFILE}
- return ${EXIT_OK}
+ return ${return_value}
}
__radvd_config_interface() {
--
2.6.3
next reply other threads:[~2018-01-27 17:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-27 17:06 Jonatan Schlag [this message]
2018-02-06 0:52 ` 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=1517072778-3768-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