Files
sablink-distro/app-admin/system-tools-backends/files/system-tools-backends
T
2007-07-06 10:40:36 +00:00

28 lines
470 B
Plaintext

#!/sbin/runscript
# Copyright 2007 Fabio Erculiani
# Distributed under the terms of the GNU General Public License v2
depend() {
need dbus
before xdm
}
PIDFILE=/var/run/system-tools-backends.pid
STB=/usr/bin/system-tools-backends
DESC="System Tools Backends"
start() {
ebegin "Starting "$DESC
start-stop-daemon --start -q --exec $STB --pidfile $PIDFILE
eend $?
}
stop() {
ebegin "Stopping "$DESC
start-stop-daemon --stop -q --pidfile $PIDFILE
eend $?
}