* [gentoo-commits] gentoo-x86 commit in net-wireless/bluez/files: rfcomm-init.d-r2 rfcomm-init.d-r1
@ 2014-06-26 17:18 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; only message in thread
From: Alon Bar-Lev (alonbl) @ 2014-06-26 17:18 UTC (permalink / raw
To: gentoo-commits
alonbl 14/06/26 17:18:43
Added: rfcomm-init.d-r2
Removed: rfcomm-init.d-r1
Log:
Re-add rfcomm init.d, bug#505786
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Revision Changes Path
1.1 net-wireless/bluez/files/rfcomm-init.d-r2
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/files/rfcomm-init.d-r2?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/bluez/files/rfcomm-init.d-r2?rev=1.1&content-type=text/plain
Index: rfcomm-init.d-r2
===================================================================
#!/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 $?
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-06-26 17:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-26 17:18 [gentoo-commits] gentoo-x86 commit in net-wireless/bluez/files: rfcomm-init.d-r2 rfcomm-init.d-r1 Alon Bar-Lev (alonbl)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox