mds/app-admin/mmc-agent/files/mmc-agent.initd
geos_one e591dbcdbc move fds to own overlay
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/mds@701 6952d904-891a-0410-993b-d76249ca496b
2009-01-21 12:56:02 +00:00

21 lines
438 B
Plaintext
Executable File

#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
depend() {
need net slapd
}
start() {
ebegin "Starting mmc-agent"
eval start-stop-daemon --start --quiet --exec /usr/sbin/mmc-agent --pidfile /var/run/mmc-agent.pid
eend $?
}
stop() {
ebegin "Stopping mmc-agent"
start-stop-daemon --stop --quiet --pidfile /var/run/mmc-agent.pid
eend $?
}