Merge remote-tracking branch 'origin/master' into next

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2024-03-31 13:36:08 +02:00
38 changed files with 421 additions and 66 deletions

View File

@@ -22,7 +22,7 @@
. /etc/sysconfig/rc
. ${rc_functions}
DAEMONS="zebra bgpd ospfd staticd"
DAEMONS="mgmtd zebra bgpd ospfd staticd"
case "${1}" in
start)
@@ -51,8 +51,11 @@ case "${1}" in
;;
reload)
boot_mesg "Reloading FRRouting..."
reloadproc /usr/sbin/frr-reload
# Reload all daemons
for daemon in ${DAEMONS}; do
boot_mesg "Reloading FRRouting ${daemon}..."
reloadproc "/usr/sbin/${daemon}"
done
;;
restart)