You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/system-tools-backends/files/stb.rc

22 lines
425 B

#!/sbin/openrc-run
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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 $?
}