blob: 4a91916919cc3afb14cad0bb4aaf8095162c1072 (
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
33
34
35
|
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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 $?
}
|