diff options
author | tron <tron@pkgsrc.org> | 1999-07-21 22:50:31 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-07-21 22:50:31 +0000 |
commit | 0a280c8b56365d0ee68b0b27c82bc73fb3a3b79f (patch) | |
tree | 6c00c7218fc615d0171353697133afa10a4be4fa /news | |
parent | 2f2569f5adeb286474f720c64769cbe779121094 (diff) | |
download | pkgsrc-0a280c8b56365d0ee68b0b27c82bc73fb3a3b79f.tar.gz |
We want to start "rc.news" and not "inndstart" of course.
Diffstat (limited to 'news')
-rw-r--r-- | news/inn/files/innd.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/news/inn/files/innd.sh b/news/inn/files/innd.sh index 4594f56e95c..53fb9c3e0dd 100644 --- a/news/inn/files/innd.sh +++ b/news/inn/files/innd.sh @@ -1,10 +1,10 @@ #!/bin/sh # -# $NetBSD: innd.sh,v 1.1 1999/07/21 20:38:56 tron Exp $ +# $NetBSD: innd.sh,v 1.2 1999/07/21 22:50:31 tron Exp $ # -if [ -x @@PREFIX@@/bin/inndstart -a -s @@INN_DATA_DIR@@/db/active ]; +if [ -x @@PREFIX@@/bin/rc.news -a -s @@INN_DATA_DIR@@/db/active ]; then - @@PREFIX@@/bin/inndstart >/dev/null 2>&1 + @@PREFIX@@/bin/rc.news >/dev/null echo -n ' innd' fi exit 0 |