File: inn2.init

package info (click to toggle)
inn2 2.5.2-2~squeeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 11,072 kB
  • ctags: 8,521
  • sloc: ansic: 91,418; sh: 13,249; perl: 12,311; makefile: 2,928; yacc: 868; python: 342; lex: 266
file content (61 lines) | stat: -rw-r--r-- 1,297 bytes parent folder | download | duplicates (2)
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
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/sh -e
### BEGIN INIT INFO
# Provides:          inn2
# Required-Start:    $local_fs $remote_fs $syslog
# Required-Stop:     $local_fs $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: INN news server
# Description:       The InterNetNews news server.
### END INIT INFO
#
# Start/stop the news server.
#

test -f /usr/lib/news/bin/rc.news || exit 0

start () {
    if [ ! -d /var/run/news ]; then
	mkdir -p /var/run/news
	chown news:news /var/run/news
	chmod 775 /var/run/news
    fi
    su news -c /usr/lib/news/bin/rc.news > /var/log/news/rc.news 2>&1
}

stop () {
    su news -c '/usr/lib/news/bin/rc.news stop' >> /var/log/news/rc.news 2>&1
}

case "$1" in
    start)
	echo -n "Starting news server: "
	start
	echo "done."
	;;
    stop)
	echo -n "Stopping news server: "
	stop
	echo "done."
	;;
    reload|force-reload)
	echo -n "Reloading most INN configuration files: "
	ctlinnd -t 20 reload '' 'init script'
	;;
    restart)
	echo -n "Restarting innd: "
	if [ -f /var/run/news/innd.pid ]; then
	    ctlinnd -t 20 throttle 'init script' > /dev/null || true
	    ctlinnd -t 20 xexec innd > /dev/null || start
	else
	    start
	fi
	echo "done."
	;;
    *)
	echo "Usage: /etc/init.d/inn2 start|stop|restart|reload">&2
	exit 1
	;;
esac

exit 0