diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/quagga-manager | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/quagga-manager b/scripts/quagga-manager index 220a5fba..be0435b9 100755 --- a/scripts/quagga-manager +++ b/scripts/quagga-manager @@ -43,9 +43,10 @@ start() { fi local -a args=( -d -P 0 -i $pidfile ) - if [ "$daemon" = "zebra" ]; then - args+=( -l -S -s 1048576 ) - fi + case $daemon in + zebra) args+=( -l -S -s 1048576 );; + bgpd) args+=( -I );; + esac exec start-stop-daemon --start --oknodo --quiet \ --chdir $log_dir --exec $binpath --pidfile $pidfile \ |