diff options
author | tron <tron@pkgsrc.org> | 1999-07-21 20:38:55 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-07-21 20:38:55 +0000 |
commit | 8e1e001c9cae894dd971240298f75fd672d06059 (patch) | |
tree | 2559d3ae59ac84daf9ce1c030dc4fe5ca0d78597 /news/inn/files | |
parent | 51dcf0b11590836c3b408e037b8a88d3b47b6f3b (diff) | |
download | pkgsrc-8e1e001c9cae894dd971240298f75fd672d06059.tar.gz |
Add standard script to launch INN at system startup.
Diffstat (limited to 'news/inn/files')
-rw-r--r-- | news/inn/files/innd.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/news/inn/files/innd.sh b/news/inn/files/innd.sh new file mode 100644 index 00000000000..4594f56e95c --- /dev/null +++ b/news/inn/files/innd.sh @@ -0,0 +1,10 @@ +#!/bin/sh +# +# $NetBSD: innd.sh,v 1.1 1999/07/21 20:38:56 tron Exp $ +# +if [ -x @@PREFIX@@/bin/inndstart -a -s @@INN_DATA_DIR@@/db/active ]; +then + @@PREFIX@@/bin/inndstart >/dev/null 2>&1 + echo -n ' innd' +fi +exit 0 |