2015-02-27 00:58:55 +00:00
|
|
|
#!/sbin/runscript
|
2015-08-16 17:20:11 +00:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2015-02-27 00:58:55 +00:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-16 17:20:11 +00:00
|
|
|
# $Id$
|
2015-02-27 00:58:55 +00:00
|
|
|
|
|
|
|
depend() {
|
|
|
|
need net
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
ebegin "Starting ${SVCNAME}"
|
|
|
|
start-stop-daemon \
|
|
|
|
--start \
|
|
|
|
--exec "/usr/sbin/hiawatha" \
|
|
|
|
--pidfile "/var/run/hiawatha.pid"
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
ebegin "Stopping ${SVCNAME}"
|
|
|
|
start-stop-daemon \
|
|
|
|
--stop \
|
|
|
|
--exec "/usr/sbin/hiawatha" \
|
|
|
|
--pidfile "/var/run/hiawatha.pid"
|
|
|
|
eend $?
|
|
|
|
}
|