#!/bin/sh
#
# kdm:		Starts the KDE Display Manager
#
# description:	Starts and stops the KDE Display Manager at startup and \
#		shutdown..
#
# chkconfig:	5 99 01
#
# probe:	true
# hide:		true
#
# $Id: kdebase-kdm.init,v 1.9 2008/04/27 00:54:06 glen Exp $

. /etc/rc.d/init.d/functions

# Get service config
if [ -f /etc/sysconfig/kdm ]; then
	. /etc/sysconfig/kdm
fi

start() {
	# Check if the service is already running?
	if [ ! -f /var/lock/subsys/kdm ]; then
		msg_starting "KDE Display Manager"
		daemon /usr/bin/kdm
		RETVAL=$?
		[ $RETVAL -eq 0 ] && touch /var/lock/subsys/kdm
	else
		msg_already_running "KDE Display Manager"
	fi
}

stop() {
	# Check if the service is already running?
	if [ -f /var/lock/subsys/kdm ]; then
		msg_stopping "KDE Display Manager"
		killproc kdm
		rm -f /var/lock/subsys/kdm
	else
		msg_not_running "KDE Display Manager"
	fi
}

condrestart() {
	if [ -f /var/lock/subsys/kdm ]; then
		stop
		start
	else
		msg_not_running "KDE Display Manager"
		RETVAL=$1
	fi
}

RETVAL=0
# See how we were called.
case "$1" in
  start)
  	start
	;;
  stop)
  	stop
	;;
  restart)
	stop
	start
	;;
  try-restart)
	condrestart 0
	;;
  force-reload)
	condrestart 7
	;;
  status)
	status kdm
	exit $?
	;;
  *)
	msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
	exit 3
esac

exit $RETVAL
