diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-30 14:16:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-30 14:16:39 +0000 |
commit | 8c68e1670143622b46b887787b81c61a32955baf (patch) | |
tree | 5b12c657cf709074a4f2449a718f184fa688242c /main/quagga/zebra.initd | |
parent | 4259b276a2df2018458a622e3ceedad38b1c22ec (diff) | |
download | aports-8c68e1670143622b46b887787b81c61a32955baf.tar.bz2 aports-8c68e1670143622b46b887787b81c61a32955baf.tar.xz |
main/quagga: fixes for zebra init.d and default config
* do not hardcode path to ip
* the -l option seems to be removed
Diffstat (limited to 'main/quagga/zebra.initd')
-rw-r--r-- | main/quagga/zebra.initd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/quagga/zebra.initd b/main/quagga/zebra.initd index f0cc00843..5ca8ef58c 100644 --- a/main/quagga/zebra.initd +++ b/main/quagga/zebra.initd @@ -17,7 +17,7 @@ checkconfig() { cleanup() { ebegin "Cleaning up stale zebra routes..." - /usr/sbin/ip route flush proto zebra + ip route flush proto zebra eend $? } |