diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-07 09:10:33 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-07 09:10:33 -0700 |
commit | 1dc80446ebaa5905fabd18a85f8d608ef24200b3 (patch) | |
tree | 707d0e64d01e8d7c2a94ec53d2e5b0ef7559dc66 | |
parent | e305f18c5fd971d8ee6ffb19d6eefc620bcf7d31 (diff) | |
download | quagga-1dc80446ebaa5905fabd18a85f8d608ef24200b3.tar.bz2 quagga-1dc80446ebaa5905fabd18a85f8d608ef24200b3.tar.xz |
Don't start watchquagga during boot
-rwxr-xr-x | debian/vyatta-quagga.init.d | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/debian/vyatta-quagga.init.d b/debian/vyatta-quagga.init.d index b90fca04..454aba20 100755 --- a/debian/vyatta-quagga.init.d +++ b/debian/vyatta-quagga.init.d @@ -30,15 +30,14 @@ for dir in $pid_dir $log_dir ; do fi done -# Only start zebra and watchquagga (for zebra) here -# Other daemons if any started in vyatta config +# Only start zebra here. other daemons started in vyatta config vyatta_quagga_start () { local -a daemons if [ $# -gt 0 ] ; then daemons=( $* ) else - daemons=( zebra watchquagga ) + daemons=( zebra ) fi log_daemon_msg "Starting routing services" |