diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-08-28 18:02:24 -0500 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-09-22 16:14:58 -0300 |
commit | 1077a9ac2f9b32c6f28f9e6e6188b0f4c8dd926d (patch) | |
tree | cd5ec6ff95a6a78408332066142206dc83f6dc5a /pcr/openrc-desktop/rfcomm-init.d-r2 | |
parent | a566855682e5a4de24dadc5ff2aa58d21d802728 (diff) |
openrc-desktop-20150828-1: updating version
Diffstat (limited to 'pcr/openrc-desktop/rfcomm-init.d-r2')
-rw-r--r-- | pcr/openrc-desktop/rfcomm-init.d-r2 | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/pcr/openrc-desktop/rfcomm-init.d-r2 b/pcr/openrc-desktop/rfcomm-init.d-r2 deleted file mode 100644 index c56405559..000000000 --- a/pcr/openrc-desktop/rfcomm-init.d-r2 +++ /dev/null @@ -1,35 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/files/rfcomm-init.d-r2,v 1.1 2014/06/26 17:18:43 alonbl Exp $ - -depend() { - need bluetooth -} - -checkconfig() { - if [ -z "${ADDRESS}" ]; then - eerror "ADDRESS must be set" - return 1 - fi - - return 0 -} - -start() { - local DEVICE=${RC_SVCNAME#*.} - - checkconfig || return 1 - - ebegin "Starting ${RC_SVCNAME}" - rfcomm bind "${DEVICE}" "${ADDRESS}" ${CHANNEL} - eend $? -} - -stop() { - local DEVICE=${RC_SVCNAME#*.} - - ebegin "Shutting down ${RC_SVCNAME}" - rfcomm release "${DEVICE}" - eend $? -} |