#!/bin/sh
#
# gdm:		Starts the Gnome Display Manager
#
# Version:	@(#) /etc/rc.d/init.d/gdm 0.1
#
# chkconfig:	5 95 05
# description:	Starts and stops the Gnome Display Manager at startup and \
#		shutdown..
#
# config:	/etc/X11/gdm/gdm-config
# probe:	true
# hide:		true

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

GDM_VT=vt9

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

RETVAL=0
# See how we were called.
case "$1" in
  start)
	# Check if the service is already running?
	if [ ! -f /var/lock/subsys/gdm ]; then
		msg_starting "Gnome Display Manager"
		start-stop-daemon --start -b --exec /usr/sbin/gdm ${GDM_VT}
		ok
		RETVAL=$?
		[ $RETVAL -eq 0 ] && touch /var/lock/subsys/gdm
	else
		msg_already_running "Gnome Display Manager"
	fi
	;;
  stop)
	if [ -f /var/lock/subsys/gdm ]; then
		msg_stopping "Gnome Display Manager"
		killproc gdm
		rm -f /var/lock/subsys/gdm
	else
		msg_not_running "Gnome Display Manager"
	fi
	;;
  status)
	status gdm gdm-binary
	exit $?
	;;
  restart|force-reload)
	$0 stop
	$0 start
	exit $?
	;;
  *)
	msg_usage "$0 {start|stop|restart|force-reload|status}"
	exit 3
esac

exit $RETVAL
