aboutsummaryrefslogtreecommitdiff
path: root/net/zebra-pj/files/zebractl.sh
diff options
context:
space:
mode:
Diffstat (limited to 'net/zebra-pj/files/zebractl.sh')
-rw-r--r--net/zebra-pj/files/zebractl.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/zebra-pj/files/zebractl.sh b/net/zebra-pj/files/zebractl.sh
index 129659d2c3e5..62dd00c05245 100644
--- a/net/zebra-pj/files/zebractl.sh
+++ b/net/zebra-pj/files/zebractl.sh
@@ -1,6 +1,6 @@
#! /bin/sh
#
-# $FreeBSD: /tmp/pcvs/ports/net/zebra-pj/files/Attic/zebractl.sh,v 1.2 2001-01-12 18:29:08 andreas Exp $
+# $FreeBSD: /tmp/pcvs/ports/net/zebra-pj/files/Attic/zebractl.sh,v 1.3 2001-01-25 23:15:36 andreas Exp $
#
# zebra start/stop script by "Andreas Klemm <andreas@FreeBSD.ORG>"
#
@@ -20,16 +20,16 @@ fi
case $1 in
start)
[ -f !!PREFIX!!/etc/zebra/zebra.conf ] && ( \
- !!PREFIX!!/sbin/zebra > /dev/null 2>&1 & \
+ !!PREFIX!!/sbin/zebra -d > /dev/null 2>&1 & \
echo -n ' zebra' )
[ -f !!PREFIX!!/etc/zebra/ripd.conf ] && ( \
- !!PREFIX!!/sbin/ripd > /dev/null 2>&1 & \
+ !!PREFIX!!/sbin/ripd -d > /dev/null 2>&1 & \
echo -n ' ripd' )
[ -f !!PREFIX!!/etc/zebra/ospfd.conf ] && ( \
- !!PREFIX!!/sbin/ospfd > /dev/null 2>&1 & \
+ !!PREFIX!!/sbin/ospfd -d > /dev/null 2>&1 & \
echo -n ' ospfd' )
[ -f !!PREFIX!!/etc/zebra/bgpd.conf ] && ( \
- !!PREFIX!!/sbin/bgpd > /dev/null 2>&1 & \
+ !!PREFIX!!/sbin/bgpd -d > /dev/null 2>&1 & \
echo -n ' bgpd' )
;;