diff options
Diffstat (limited to 'net-wireless/bluez/files/bluetooth-init.d-r2')
-rw-r--r-- | net-wireless/bluez/files/bluetooth-init.d-r2 | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net-wireless/bluez/files/bluetooth-init.d-r2 b/net-wireless/bluez/files/bluetooth-init.d-r2 new file mode 100644 index 000000000000..7975cb558d06 --- /dev/null +++ b/net-wireless/bluez/files/bluetooth-init.d-r2 @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +depend() { + after coldplug + need dbus localmount hostname +} + +start() { + ebegin "Starting ${SVCNAME}" + start-stop-daemon --start --exec /usr/sbin/bluetoothd + eend $? +} + +stop() { + ebegin "Shutting down ${SVCNAME}" + start-stop-daemon --stop --quiet --exec /usr/sbin/bluetoothd + eend $? +} |