diff options
author | anders <anders@FreeBSD.org> | 2002-08-14 00:14:07 +0000 |
---|---|---|
committer | anders <anders@FreeBSD.org> | 2002-08-14 00:14:07 +0000 |
commit | b324d4c0e0a3cd3a459edc4775e4100652b8bb92 (patch) | |
tree | 3521d2e4b7ac09b8b05a8984b37213ed5228f76e /net/rwhois | |
parent | 714c4e18805009109b98dcc2b7c97a817790758d (diff) | |
download | FreeBSD-ports-b324d4c0e0a3cd3a459edc4775e4100652b8bb92.zip FreeBSD-ports-b324d4c0e0a3cd3a459edc4775e4100652b8bb92.tar.gz |
Fix startup-scripts for -current /bin/sh issues.
Diffstat (limited to 'net/rwhois')
-rw-r--r-- | net/rwhois/files/rwhoisd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rwhois/files/rwhoisd.sh b/net/rwhois/files/rwhoisd.sh index 878e887..cc977b5 100644 --- a/net/rwhois/files/rwhoisd.sh +++ b/net/rwhois/files/rwhoisd.sh @@ -10,7 +10,7 @@ start) # remove or comment the following line and uncomment the one below it once you have # configured your server's data echo "rwhoisd not started; sample data still in place. See ${PREFIX}/share/doc/rwhois for details." - #[ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ] && ${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhoisd.conf & && echo -n ' rwhoisd' + #if [ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ]; then (${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhoisd.conf &); echo -n ' rwhoisd'; fi ;; stop) # killall rwhoisd && echo -n ' rwhoisd |