aboutsummaryrefslogtreecommitdiffstats
path: root/testing/bluez/bluetooth.initd
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2011-04-06 19:40:17 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-04-06 19:41:05 +0000
commit8d36e7d94c0c940d7eac811b442e210221e1275f (patch)
treef4ed6a9f8c69bd197613da3b789d9fbe6f6104c5 /testing/bluez/bluetooth.initd
parentdbe47b47d727acd5341ecd135ef944399d62c9d0 (diff)
downloadaports-8d36e7d94c0c940d7eac811b442e210221e1275f.tar.bz2
aports-8d36e7d94c0c940d7eac811b442e210221e1275f.tar.xz
main/bluez: moved from testing
Diffstat (limited to 'testing/bluez/bluetooth.initd')
-rw-r--r--testing/bluez/bluetooth.initd32
1 files changed, 0 insertions, 32 deletions
diff --git a/testing/bluez/bluetooth.initd b/testing/bluez/bluetooth.initd
deleted file mode 100644
index ef25720bf6..0000000000
--- a/testing/bluez/bluetooth.initd
+++ /dev/null
@@ -1,32 +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"
-
- if [ -x /sbin/udevadm ]; then
- udevadm trigger --subsystem-match=bluetooth --action=add
- eend $?
- fi
-
- if [ "${RFCOMM_ENABLE}" = "true" -a -x /usr/bin/rfcomm ]; then
- if [ -f "${RFCOMM_CONFIG}" ]; then
- /usr/bin/rfcomm -f "${RFCOMM_CONFIG}" bind all
- else
- ewarn "Not enabling rfcomm because RFCOMM_CONFIG does not exists"
- fi
- fi
- eend $?
-}
-
-stop() {
- ebegin "Shutting down Bluetooth"
- eend 0
-}