You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/ippl/files/ippl.rc

31 lines
573 B

#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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"
}