diff options
author | Christian Birchinger <joker@gentoo.org> | 2014-01-09 13:24:42 +0000 |
---|---|---|
committer | Christian Birchinger <joker@gentoo.org> | 2014-01-09 13:24:42 +0000 |
commit | 62fa69ab1afc59bbaf953d5d0b57e3f835df334a (patch) | |
tree | 9da74b0a18d9fa81f9a8b7e90adbe5203645ea72 /net-wireless/bluez/files | |
parent | masked guacamole deps due to bug 497262 (diff) | |
download | gentoo-2-62fa69ab1afc59bbaf953d5d0b57e3f835df334a.tar.gz gentoo-2-62fa69ab1afc59bbaf953d5d0b57e3f835df334a.tar.bz2 gentoo-2-62fa69ab1afc59bbaf953d5d0b57e3f835df334a.zip |
The bluez 5 bluetoothd doesn't fork into background. Use start-stop-daemon --background to handle this.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x0151863A67652900!)
Diffstat (limited to 'net-wireless/bluez/files')
-rw-r--r-- | net-wireless/bluez/files/bluetooth-init.d-r3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-wireless/bluez/files/bluetooth-init.d-r3 b/net-wireless/bluez/files/bluetooth-init.d-r3 index c7afe112cedf..f97fdb2c7916 100644 --- a/net-wireless/bluez/files/bluetooth-init.d-r3 +++ b/net-wireless/bluez/files/bluetooth-init.d-r3 @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/files/bluetooth-init.d-r3,v 1.1 2013/12/23 23:05:20 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/files/bluetooth-init.d-r3,v 1.2 2014/01/09 13:24:42 joker Exp $ depend() { after coldplug @@ -10,7 +10,7 @@ depend() { start() { ebegin "Starting ${SVCNAME}" - start-stop-daemon --start --exec /usr/libexec/bluetooth/bluetoothd + start-stop-daemon --start --background --exec /usr/libexec/bluetooth/bluetoothd eend $? } |