summaryrefslogtreecommitdiff
blob: df9ecd1d9d3bb2c22f7cfeba2d003c4bf3a03abb (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
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

depend() {
	need net
}

checkconfig() {
	if [ ! -f /etc/ippl.conf ]
	then
		eerror "Please create /etc/ippl.conf"
		return 1
	fi
	return 0
}

start() {
	checkconfig || return $?
	ebegin "Starting ippl"
	start-stop-daemon --start --quiet --pidfile /run/ippl.pid \
		--exec /usr/sbin/ippl
	eend $? "Failed to start ippl"
}

stop() {
	ebegin "Stopping ippl"
	start-stop-daemon --stop --quiet --pidfile /run/ippl.pid
	eend $? "Failed to stop ippl"
}