summaryrefslogtreecommitdiffstats
path: root/testing/bluez/bluetooth-init.d
diff options
context:
space:
mode:
Diffstat (limited to 'testing/bluez/bluetooth-init.d')
-rw-r--r--testing/bluez/bluetooth-init.d31
1 files changed, 0 insertions, 31 deletions
diff --git a/testing/bluez/bluetooth-init.d b/testing/bluez/bluetooth-init.d
deleted file mode 100644
index 111902aae..000000000
--- a/testing/bluez/bluetooth-init.d
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/files/4.60/bluetooth-init.d,v 1.1 2010/02/01 19:47:46 pacho Exp $
-
-depend() {
- after coldplug
- need dbus localmount
-}
-
-start() {
- ebegin "Starting Bluetooth"
-
- udevadm trigger --subsystem-match=bluetooth
- eend $?
-
- if [ "${RFCOMM_ENABLE}" = "true" -a -x /usr/bin/rfcomm ]; then
- if [ -f "${RFCOMM_CONFIG}" ]; then
- ebegin " Starting rfcomm"
- /usr/bin/rfcomm -f "${RFCOMM_CONFIG}" bind all
- eend $?
- else
- ewarn "Not enabling rfcomm because RFCOMM_CONFIG does not exists"
- fi
- fi
-}
-
-stop() {
- ebegin "Shutting down Bluetooth"
- eend 0
-}