diff options
author | andreas <andreas@FreeBSD.org> | 2001-01-27 16:58:15 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 2001-01-27 16:58:15 +0800 |
commit | 0c6b27e3732257039754b8b4774fd8e67ab7c5c6 (patch) | |
tree | 0bf8fa13bc42341fe1df339d44f99563b43d503d /net/zebra-pj/files | |
parent | bd07977dafd308bd8df5c789f2137f62109bd03a (diff) | |
download | freebsd-ports-gnome-0c6b27e3732257039754b8b4774fd8e67ab7c5c6.tar.gz freebsd-ports-gnome-0c6b27e3732257039754b8b4774fd8e67ab7c5c6.tar.zst freebsd-ports-gnome-0c6b27e3732257039754b8b4774fd8e67ab7c5c6.zip |
- -d makes possible to start daemons in certain order
- for that purpose you have to remove the '&'
forgot that in last commit.
Submitted by: Frank Bartels <knarf@camelot.de>
Diffstat (limited to 'net/zebra-pj/files')
-rw-r--r-- | net/zebra-pj/files/zebractl.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/zebra-pj/files/zebractl.sh b/net/zebra-pj/files/zebractl.sh index 62dd00c05245..f7c485fd2c40 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.3 2001-01-25 23:15:36 andreas Exp $ +# $FreeBSD: /tmp/pcvs/ports/net/zebra-pj/files/Attic/zebractl.sh,v 1.4 2001-01-27 08:58:15 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 -d > /dev/null 2>&1 & \ + !!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 & \ + !!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 & \ + !!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 & \ + !!PREFIX!!/sbin/bgpd -d > /dev/null 2>&1 \ echo -n ' bgpd' ) ;; |