#!/bin/sh
# Begin $rc_base/init.d/kdm

# $Id: kdm,v 1.4 2008/01/20 22:50:09 install Exp install $

. /etc/sysconfig/rc
. $rc_functions
pidfile=/var/run/kdm.pid
case "$1" in
	start)
		boot_mesg "Starting KDM"
		export HOME=/root
		cd $HOME
		loadproc /opt/kde/bin/kdm
		;;
	stop)
		if [ -f $pidfile ]; then
			boot_mesg "Stopping KDM"
			kill `cat $pidfile`
			rm $pidfile
		else
			statusproc /opt/kde/bin/kdm
		fi
		;;
	status)
                statusproc /opt/kde/bin/kdm
		;;
	restart)
		$0 stop
		$0 start
		;;
	*)
		echo "Usage: $0 start|stop|restart"
		;;
esac

# End of file