]> Frank Brehm's Git Trees - config/bruni/etc.git/commitdiff
saving uncommitted changes in /etc prior to emerge run
authorFrank Brehm <frank@brehm-online.com>
Wed, 11 Oct 2017 00:00:41 +0000 (02:00 +0200)
committerFrank Brehm <frank@brehm-online.com>
Wed, 11 Oct 2017 00:00:41 +0000 (02:00 +0200)
bluetooth/main.conf
init.d/bluetooth

index d9cd9e0ceea32d4353b63b73d36699ce2922c873..ba17405cfdbd78fd2961d39049eae8de82af59b7 100644 (file)
@@ -1,6 +1,6 @@
 [General]
 
-# Default adaper name
+# Default adapter name
 # Defaults to 'BlueZ X.YZ'
 #Name = BlueZ
 
 # Defaults to "off"
 # Privacy = off
 
-#[Policy]
+[GATT]
+# GATT attribute cache.
+# Possible values:
+# always: Always cache attributes even for devices not paired, this is
+# recommended as it is best for interoperability, with more consistent
+# reconnection times and enables proper tracking of notifications for all
+# devices.
+# yes: Only cache attributes of paired devices.
+# no: Never cache attributes
+# Default: always
+#Cache = always
+
+[Policy]
 #
 # The ReconnectUUIDs defines the set of remote services that should try
 # to be reconnected to in case of a link loss (link supervision
index b54f47d16ffcd62cae46af7428c38a62c4a8e64a..97cf500008e06aa7f7bebaffef12acebda66c8b5 100755 (executable)
@@ -1,20 +1,12 @@
 #!/sbin/openrc-run
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+pidfile="/run/bluetoothd.pid"
+command="/usr/libexec/bluetooth/bluetoothd"
+command_background=1
+
 depend() {
        after coldplug
        need dbus localmount hostname
 }
-
-start() {
-       ebegin "Starting ${SVCNAME}"
-       start-stop-daemon --start --background --exec /usr/libexec/bluetooth/bluetoothd
-       eend $?
-}
-
-stop() {
-       ebegin "Shutting down ${SVCNAME}"
-       start-stop-daemon --stop --quiet --exec /usr/libexec/bluetooth/bluetoothd
-       eend $?
-}