Files @ dcd03923f105
Branch filter:

Location: ohnobinki_overlay/net-irc/atheme/files/atheme.initd

binki
Support use of the gentoo_prefix repo.
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
	need net
}

start() {
	ebegin "Starting ${SVCNAME}"
	start-stop-daemon --start --quiet --chuid atheme --exec /usr/bin/atheme-services
	eend $? "Failed to start ${SVCNAME}"
}

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