blob: 2d1d90be4aac917fa0aa7701d25ebbdb25d73744 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/sbin/runscript
# Copyright 2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
start() {
ebegin "Starting nntp//rss"
start-stop-daemon --start --background --quiet --exec /usr/sbin/nntprss
eend $?
}
stop() {
ebegin "Stopping nntp//rss"
start-stop-daemon --stop --quiet --exec /usr/sbin/nntprss
eend $?
}
|