diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2014-02-20 08:38:20 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2014-02-20 08:38:20 +0200 |
commit | a549e6ac6b6b6dbe30f0486ec078e607c63ab860 (patch) | |
tree | 510f307f30657fda60553346b769b73216117310 /net-wireless/bluez/files/init.d-hidd | |
parent | b6ebc3ab027b6c55a57fde0eaedaae6114ed0d81 (diff) |
cleanup....
Diffstat (limited to 'net-wireless/bluez/files/init.d-hidd')
-rw-r--r-- | net-wireless/bluez/files/init.d-hidd | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/net-wireless/bluez/files/init.d-hidd b/net-wireless/bluez/files/init.d-hidd deleted file mode 100644 index 39399a9..0000000 --- a/net-wireless/bluez/files/init.d-hidd +++ /dev/null @@ -1,30 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/files/init.d-hidd,v 1.1 2010/09/07 11:00:27 pacho Exp $ - -depend() { - need bluetooth -} - -start() { - local result service - - ebegin "Starting hidd" - start-stop-daemon --start --quiet \ - --exec /usr/bin/hidd -- ${HIDD_OPTIONS} --server - result="$?" - service="/etc/bluetooth/input.service" - if [ ${result} -ne 0 ] && grep -q "Autostart=true" "${service}"; then - eerror "You have Autostart=true in ${service}." - eerror "Change this to false if you want to use hidd." - fi - eend ${result} -} - -stop() { - ebegin "Stopping hidd" - hidd --killall - start-stop-daemon --stop --quiet --exec /usr/bin/hidd - eend $? -} |