summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2017-02-04 16:19:44 +0100
committerPacho Ramos <pacho@gentoo.org>2017-02-04 16:20:18 +0100
commitb4723357d9721f055a054bb0bfd1596cbfea96b1 (patch)
treed84a18ae768b36b4d98125b68001c738f00d9ea5 /net-wireless/bluez/files
parentnet-wireless/bluez: Stable (diff)
downloadgentoo-b4723357d9721f055a054bb0bfd1596cbfea96b1.tar.gz
gentoo-b4723357d9721f055a054bb0bfd1596cbfea96b1.tar.bz2
gentoo-b4723357d9721f055a054bb0bfd1596cbfea96b1.zip
net-wireless/bluez: Drop old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'net-wireless/bluez/files')
-rw-r--r--net-wireless/bluez/files/bluetooth-init.d-r221
-rw-r--r--net-wireless/bluez/files/rfcomm-conf.d5
-rw-r--r--net-wireless/bluez/files/rfcomm-init.d27
3 files changed, 0 insertions, 53 deletions
diff --git a/net-wireless/bluez/files/bluetooth-init.d-r2 b/net-wireless/bluez/files/bluetooth-init.d-r2
deleted file mode 100644
index d16181e98825..000000000000
--- a/net-wireless/bluez/files/bluetooth-init.d-r2
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
- after coldplug
- need dbus localmount hostname
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start --exec /usr/sbin/bluetoothd
- eend $?
-}
-
-stop() {
- ebegin "Shutting down ${SVCNAME}"
- start-stop-daemon --stop --quiet --exec /usr/sbin/bluetoothd
- eend $?
-}
diff --git a/net-wireless/bluez/files/rfcomm-conf.d b/net-wireless/bluez/files/rfcomm-conf.d
deleted file mode 100644
index d87acdb282eb..000000000000
--- a/net-wireless/bluez/files/rfcomm-conf.d
+++ /dev/null
@@ -1,5 +0,0 @@
-# Bind rfcomm devices (allowed values are "true" and "false")
-RFCOMM_ENABLE=true
-
-# Config file for rfcomm
-RFCOMM_CONFIG="/etc/bluetooth/rfcomm.conf"
diff --git a/net-wireless/bluez/files/rfcomm-init.d b/net-wireless/bluez/files/rfcomm-init.d
deleted file mode 100644
index 84095be84234..000000000000
--- a/net-wireless/bluez/files/rfcomm-init.d
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
- after coldplug
- need dbus localmount hostname
-}
-
-start() {
- if [ "${RFCOMM_ENABLE}" = "true" -a -x /usr/bin/rfcomm ]; then
- if [ -f "${RFCOMM_CONFIG}" ]; then
- ebegin "Starting rfcomm"
- /usr/bin/rfcomm -f "${RFCOMM_CONFIG}" bind all
- eend $?
- else
- ewarn "Not enabling rfcomm because RFCOMM_CONFIG does not exists"
- fi
- fi
-}
-
-stop() {
- ebegin "Shutting down rfcomm"
- /usr/bin/rfcomm release all
- eend $?
-}