diff options
Diffstat (limited to 'net-wireless/bluez/files/rfcomm-init.d')
-rw-r--r-- | net-wireless/bluez/files/rfcomm-init.d | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/net-wireless/bluez/files/rfcomm-init.d b/net-wireless/bluez/files/rfcomm-init.d deleted file mode 100644 index 84095be84234..000000000000 --- a/net-wireless/bluez/files/rfcomm-init.d +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -depend() { - after coldplug - need dbus localmount hostname -} - -start() { - 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 rfcomm" - /usr/bin/rfcomm release all - eend $? -} |