maybe chmod 0755 'init.d/pydoc-3.5'
maybe chmod 0755 'init.d/radvd'
maybe chmod 0755 'init.d/rarpd'
-maybe chmod 0755 'init.d/rfcomm'
maybe chmod 0755 'init.d/root'
maybe chmod 0755 'init.d/rpc.gssd'
maybe chmod 0755 'init.d/rpc.idmapd'
+++ /dev/null
-#!/sbin/openrc-run
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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 $?
-}