summaryrefslogtreecommitdiffstats
path: root/testing/bluez/bluetooth.initd
blob: 9ec58e97c4d301be750a4f61c5a3dedd3a492b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/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
		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
}