summaryrefslogtreecommitdiff
path: root/news/inn/files/innd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'news/inn/files/innd.sh')
-rw-r--r--news/inn/files/innd.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/news/inn/files/innd.sh b/news/inn/files/innd.sh
index bd6ca4849d5..5c04e7d80b2 100644
--- a/news/inn/files/innd.sh
+++ b/news/inn/files/innd.sh
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: innd.sh,v 1.14 2008/06/23 09:10:53 spz Exp $
+# $NetBSD: innd.sh,v 1.15 2008/09/03 20:19:39 spz Exp $
#
# PROVIDE: inn
# REQUIRE: DAEMON
@@ -25,18 +25,18 @@ then
if [ $# -eq 0 ]
then
echo -n ' innd'
- su news -c "@INN_PATHBIN@/rc.news start" >/dev/null
+ su -m news -c "@INN_PATHBIN@/rc.news start" >/dev/null
exit 0
fi
case "$1" in
start )
echo "Starting INN."
- su news -c "@INN_PATHBIN@/rc.news $1" >/dev/null
+ su -m news -c "@INN_PATHBIN@/rc.news $1" >/dev/null
exit 0
;;
stop )
- su news -c "@INN_PATHBIN@/rc.news $1"
+ su -m news -c "@INN_PATHBIN@/rc.news $1"
exit 0
;;
restart )