diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 2001-01-25 23:15:36 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 2001-01-25 23:15:36 +0000 |
commit | a9b6a3658e78a50b791a4dc4d8c3136223f66295 (patch) | |
tree | 943f3ebf941d18c7fc43d592bbedfb205814c39d /net/zebra | |
parent | 55b30d755dbac46d321dc5a92b8dff1b306bbc6d (diff) | |
download | ports-a9b6a3658e78a50b791a4dc4d8c3136223f66295.tar.gz ports-a9b6a3658e78a50b791a4dc4d8c3136223f66295.zip |
Notes
Diffstat (limited to 'net/zebra')
-rw-r--r-- | net/zebra/Makefile | 1 | ||||
-rw-r--r-- | net/zebra/files/zebractl.sh | 10 |
2 files changed, 6 insertions, 5 deletions
diff --git a/net/zebra/Makefile b/net/zebra/Makefile index 0ee2757c3736..ec0774975b6c 100644 --- a/net/zebra/Makefile +++ b/net/zebra/Makefile @@ -7,6 +7,7 @@ PORTNAME= zebra PORTVERSION= 0.90a +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/ diff --git a/net/zebra/files/zebractl.sh b/net/zebra/files/zebractl.sh index 17304a65b0dd..c67281258c48 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.2 2001-01-12 18:29:08 andreas Exp $ +# $FreeBSD: /tmp/pcvs/ports/net/zebra/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' ) ;; |