dd8f05e902
git-svn-id: http://svn.sabayonlinux.org/overlay@1420 d7aec97c-591d-0410-af39-a8856400b30a
28 lines
470 B
Plaintext
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 $?
|
|
}
|
|
|