frr: Update reloading all services

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer 2024-03-28 17:41:12 +00:00
parent 7c6b05dfb8
commit 56d32cbe91
1 changed files with 5 additions and 2 deletions

View File

@ -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)