Sophie

Sophie

distrib > Mandriva > 2007.0 > x86_64 > media > main-updates-src > by-pkgid > 92a06ac9caf718c0c089b13d937f26d1 > files > 11

bluez-utils-3.4-4.1mdv2007.0.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