mds/app-admin/pulse2-inventory-server/files/pulse2-inventory-server.initd

21 lines
512 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 mmc-agent
}
start() {
ebegin "Starting Pulse2 Inventory Server"
eval start-stop-daemon --start --quiet --exec /usr/sbin/pulse2-inventory-server --pidfile /var/run/pulse2-inventory-server.pid
eend $?
}
stop() {
ebegin "Stopping Pulse2 Inventory Server"
start-stop-daemon --stop --quiet --pidfile /var/run/pulse2-inventory-server.pid
eend $?
}