Files @ dbcb79e3944d
Branch filter:

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

binki
dev-libs/libstrl: Add code to remove libstrl.la which, especially for this library, could cause future complications if any program would happen to actually use it.

(Portage version: 2.2.0_alpha2-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
#!/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}"
}