Sophie

Sophie

distrib > Mandriva > 10.2 > x86_64 > by-pkgid > 1aebb1378a2b7112488d2aaddd022e5a > files > 13

bluez-utils-2.14-1.1.102mdk.src.rpm

#!/bin/sh

. /etc/hotplug/hotplug.functions 

if [ "${ACTION}" = "add" ] 
then
	if [ ! -f /var/lock/subsys/bluetooth ]; then
	    debug_mesg "Initializing hci"
	    /sbin/hcid -i
	fi
	
	debug_mesg "Starting hidd"
	/etc/init.d/hidd start
fi

if [ "${ACTION}" = "del" ]
then
	debug_mesg "Stopping hidd"
	/etc/init.d/hidd stop
fi