summaryrefslogtreecommitdiff
path: root/net/zebra/files
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>2001-01-29 22:12:54 +0000
committerAndreas Klemm <andreas@FreeBSD.org>2001-01-29 22:12:54 +0000
commit973d85ecfac0f389d4997576b2fc3a7f8472d2f2 (patch)
treede8bd9a28241f502c5f20d4f8faada65951f14c3 /net/zebra/files
parentAdd ucl 0.92, a data compression library with low memory usage during (diff)
- remove redirection to /dev/null for zebra and routing daemons
you should be able to see error messages if there are any Since daemons are started using -d options, you should normally see no output... - bumped PORTREVISION, since its a major win being able to see error messages if there are any Submitted by: knarf@camelot.de
Notes
Notes: svn path=/head/; revision=37767
Diffstat (limited to 'net/zebra/files')
-rw-r--r--net/zebra/files/zebractl.sh22
1 files changed, 9 insertions, 13 deletions
diff --git a/net/zebra/files/zebractl.sh b/net/zebra/files/zebractl.sh
index 8002c04dc1e3..140dc2713abc 100644
--- a/net/zebra/files/zebractl.sh
+++ b/net/zebra/files/zebractl.sh
@@ -1,6 +1,6 @@
#! /bin/sh
#
-# $FreeBSD: /tmp/pcvs/ports/net/zebra/files/Attic/zebractl.sh,v 1.4 2001-01-27 08:58:15 andreas Exp $
+# $FreeBSD: /tmp/pcvs/ports/net/zebra/files/Attic/zebractl.sh,v 1.5 2001-01-29 22:12:54 andreas Exp $
#
# zebra start/stop script by "Andreas Klemm <andreas@FreeBSD.ORG>"
#
@@ -19,18 +19,14 @@ fi
case $1 in
start)
- [ -f !!PREFIX!!/etc/zebra/zebra.conf ] && ( \
- !!PREFIX!!/sbin/zebra -d > /dev/null 2>&1 \
- echo -n ' zebra' )
- [ -f !!PREFIX!!/etc/zebra/ripd.conf ] && ( \
- !!PREFIX!!/sbin/ripd -d > /dev/null 2>&1 \
- echo -n ' ripd' )
- [ -f !!PREFIX!!/etc/zebra/ospfd.conf ] && ( \
- !!PREFIX!!/sbin/ospfd -d > /dev/null 2>&1 \
- echo -n ' ospfd' )
- [ -f !!PREFIX!!/etc/zebra/bgpd.conf ] && ( \
- !!PREFIX!!/sbin/bgpd -d > /dev/null 2>&1 \
- echo -n ' bgpd' )
+ [ -f !!PREFIX!!/etc/zebra/zebra.conf ] \
+ && !!PREFIX!!/sbin/zebra -d && echo -n ' zebra'
+ [ -f !!PREFIX!!/etc/zebra/ripd.conf ] \
+ && !!PREFIX!!/sbin/ripd -d && echo -n ' ripd'
+ [ -f !!PREFIX!!/etc/zebra/ospfd.conf ] \
+ && !!PREFIX!!/sbin/ospfd -d && echo -n ' ospfd'
+ [ -f !!PREFIX!!/etc/zebra/bgpd.conf ] \
+ && !!PREFIX!!/sbin/bgpd -d && echo -n ' bgpd'
;;
stop)