aboutsummaryrefslogtreecommitdiff
path: root/src/inn/nnrpd.rc
blob: d7c9028325173a9cd489863002a6e0800c5b6fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions
[ -f /etc/conf.d/nnrpd ] && . /etc/conf.d/nnrpd
[ -z "$NNRPD_OPTS" ] && print "FATAL: No arguments where passed" && exit 1;

PID=`pidof -o %PPID nnrpd`
case "$1" in
	start)
		stat_busy "Starting InterNetNews Readers Daemon"
		if [ ! -f /var/run/nnrpd.pid ]; then
			stat_append ":: InterNetNews (innd) is not running"
			stat_fail
			exit 1
		fi
		
		[ -d /var/run/inn ] || mkdir -p /var/run/inn
		[ -z "$PID" ] && nnrpd $NNRPD_OPTS 2>&- >&-
		if [ $? -gt 0 ]; then
			stat_fail
		else
			PID=`pidof -o %PPID nnrpd`
			echo $PID > /var/run/nnrpd.pid
			add_daemon nnrpd
			stat_done
		fi

	;;
	stop)
		stat_busy "Stopping InterNetNews Readers Daemon"
		[ ! -z "$PID" ] && kill $PID >&-
		if [ $? -gt 0 ]; then
			stat_fail
		else
			rm /var/run/nnrpd.pid
			rm_daemon nnrpd
			stat_done
		fi
	;;
	restart)
		$0 stop
		sleep 1
		$0 start
	;;
	*)
		echo "usage: $0 {start|stop|restart}"
esac
exit 0