Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 505786 | Differences between
and this patch

Collapse All | Expand All

(-)/etc/init.d/rfcomm (-7 / +3 lines)
Lines 10-22 Link Here
10
10
11
start() {
11
start() {
12
	if [ "${RFCOMM_ENABLE}" = "true" -a -x /usr/bin/rfcomm ]; then
12
	if [ "${RFCOMM_ENABLE}" = "true" -a -x /usr/bin/rfcomm ]; then
13
		if [ -f "${RFCOMM_CONFIG}" ]; then
13
		ebegin "Starting rfcomm"
14
			ebegin "Starting rfcomm"
14
		/usr/bin/rfcomm bind all
15
			/usr/bin/rfcomm -f "${RFCOMM_CONFIG}" bind all
15
		eend $?
16
			eend $?
17
		else
18
			ewarn "Not enabling rfcomm because RFCOMM_CONFIG does not exists"
19
		fi
20
	fi
16
	fi
21
}
17
}
22
18

Return to bug 505786