diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 2001-01-27 08:58:15 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 2001-01-27 08:58:15 +0000 |
commit | 393d81dcc714ca773eb67fc69cd58139962856ba (patch) | |
tree | 3652e0d69e2fe482a48d23df57715f768899c327 /net/zebra-pj | |
parent | d24b069c94b1111f3b53e37b2ca0b842ab6672d1 (diff) | |
download | ports-393d81dcc714ca773eb67fc69cd58139962856ba.tar.gz ports-393d81dcc714ca773eb67fc69cd58139962856ba.zip |
Notes
Diffstat (limited to 'net/zebra-pj')
-rw-r--r-- | net/zebra-pj/Makefile | 2 | ||||
-rw-r--r-- | net/zebra-pj/files/zebractl.sh | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/net/zebra-pj/Makefile b/net/zebra-pj/Makefile index ec0774975b6c..71e04471a757 100644 --- a/net/zebra-pj/Makefile +++ b/net/zebra-pj/Makefile @@ -7,7 +7,7 @@ PORTNAME= zebra PORTVERSION= 0.90a -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/ 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' ) ;; |