Sophie

Sophie

distrib > Mandriva > 2006.0 > i586 > media > main-src > by-pkgid > 4e6ba2b876b513d7384f4dfd134a07e0 > files > 11

bluez-utils-2.19-7mdk.src.rpm

#!/bin/sh

debug_mesg () {
    [ -n "$UDEV_LOG" ] && /usr/sbin/logger -t bluetooth "$@"
}


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