From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH] Fix radvd startup Date: Sat, 27 Jan 2018 17:06:18 +0000 Message-ID: <1517072778-3768-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5388279959347877896==" List-Id: --===============5388279959347877896== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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 --- 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=3D"/etc/radvd.conf" =20 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 } =20 radvd_clear_config() { @@ -48,12 +48,19 @@ radvd_write_config() { =20 # 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=3D${EXIT_FALSE} =20 + for zone in $(zones_get_local); do + if __radvd_config_interface ${zone} && [ ${return_value} =3D ${EXIT_TRUE} = ]; then + # We return TRUE when __radvd_config_interface succeed and no errors happ= end till now + return_value=3D${EXIT_TRUE} + else + return_value=3D${EXIT_FALSE} + fi done >> ${RADVD_CONFIGFILE} =20 - return ${EXIT_OK} + return ${return_value} } =20 __radvd_config_interface() { --=20 2.6.3 --===============5388279959347877896==--