mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-29 01:45:20 +00:00

Some basic functions are required by frrcommon.sh Signed-off-by: Quentin Young <qlyoung@nvidia.com>
19 lines
367 B
Bash
Executable File
19 lines
367 B
Bash
Executable File
#!/bin/ash
|
|
|
|
if [ -r "/lib/lsb/init-functions" ]; then
|
|
. /lib/lsb/init-functions
|
|
else
|
|
log_success_msg() {
|
|
echo "$@"
|
|
}
|
|
log_warning_msg() {
|
|
echo "$@" >&2
|
|
}
|
|
log_failure_msg() {
|
|
echo "$@" >&2
|
|
}
|
|
fi
|
|
|
|
source /usr/lib/frr/frrcommon.sh
|
|
/usr/lib/frr/watchfrr $(daemon_list)
|