Sophie

Sophie

distrib > Mandriva > 2008.0 > x86_64 > media > main-backports-src > by-pkgid > 5e500a66d400c31c815a470523945a53 > files > 13

bluez-utils-3.23-1mdv2008.0.src.rpm

#!/bin/sh
#
# dund:		Bluetooth Human Interface Device Daemon.
#
# chkconfig:	- 26 59
# description:	Bluetooth Human Interface Device Daemon. Provides keyboard,
#		mouse etc. functionality over Bluetooth.
#
### BEGIN INIT INFO
# Provides: hidd
# Required-Start: bluetooth
# Required-Stop: bluetooth
# Short-Description: Bluetooth Human Interface Device Daemon
# Description: Bluetooth Human Interface Device Daemon.
#              Provides keyboard, mouse etc. functionality over Bluetooth.
### END INIT INFO

# Source function library.
. /etc/rc.d/init.d/functions

. /etc/sysconfig/network

[ ${NETWORKING} = "no" ] && exit 0

[ -r /etc/sysconfig/hidd ] || exit 0

. /etc/sysconfig/hidd

[ -z "$HIDDARGS" ] && exit 0

start() 
{
        echo -n $"Starting hidd: "
        daemon /sbin/hidd $HIDDARGS

	touch /var/lock/subsys/hidd
        echo
}

stop() 
{
        echo -n $"Shutting down hidd: "
	/sbin/hidd -K
	killproc hidd

	rm -f  /var/lock/subsys/hidd
        echo
}

[ -f /sbin/hidd ] || exit 0

# See how we were called.
case "$1" in
  start)
	start
        ;;
  stop)
	stop
        ;;
  restart|reload)
	stop
	start
	;;
  condrestart)
	[ -e /var/lock/subsys/hidd ] && (stop; start)
	;;
  status)
  	status hidd
  	exit $?
	;;
  *)
        echo $"Usage: $0 {start|stop|restart|reload|condrestart|status}"
        exit 1
esac

exit 0