blob: 0c20373d6c3a38e8b3327ada52f8bec6c3b6a0ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/system-tools-backends/files/stb.rc,v 1.2 2010/01/20 22:30:14 eva Exp $
depend() {
need dbus
}
start() {
ebegin "Starting system-tools-backend"
start-stop-daemon --start --exec /usr/sbin/system-tools-backends -- -D
eend $?
}
stop() {
ebegin "Stopping system-tools-backend"
start-stop-daemon --stop --pidfile /var/run/system-tools-backends.pid
eend $?
}
|