diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2014-02-20 08:38:20 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2014-02-20 08:38:20 +0200 |
commit | a549e6ac6b6b6dbe30f0486ec078e607c63ab860 (patch) | |
tree | 510f307f30657fda60553346b769b73216117310 /net-wireless/bluez/files/bluetooth-init.d | |
parent | b6ebc3ab027b6c55a57fde0eaedaae6114ed0d81 (diff) |
cleanup....
Diffstat (limited to 'net-wireless/bluez/files/bluetooth-init.d')
-rw-r--r-- | net-wireless/bluez/files/bluetooth-init.d | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/net-wireless/bluez/files/bluetooth-init.d b/net-wireless/bluez/files/bluetooth-init.d deleted file mode 100644 index 6e19ffb..0000000 --- a/net-wireless/bluez/files/bluetooth-init.d +++ /dev/null @@ -1,33 +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/bluetooth-init.d,v 1.1 2010/09/07 11:00:27 pacho Exp $ - -depend() { - after coldplug - need dbus localmount -} - -start() { - ebegin "Starting Bluetooth" - - udevadm trigger --subsystem-match=bluetooth --action=add - eend $? - - if [ "${RFCOMM_ENABLE}" = "true" -a -x /usr/bin/rfcomm ]; then - if [ -f "${RFCOMM_CONFIG}" ]; then - eindent - ebegin "Starting rfcomm" - /usr/bin/rfcomm -f "${RFCOMM_CONFIG}" bind all - eoutdent - eend $? - else - ewarn "Not enabling rfcomm because RFCOMM_CONFIG does not exists" - fi - fi -} - -stop() { - ebegin "Shutting down Bluetooth" - eend 0 -} |