#!/bin/sh # # xdm: Starts the X Display Manager # # Version: @(#) /etc/rc.d/init.d/xdm 1.3 # # chkconfig: 5 95 05 # description: Starts and stops the X Display Manager at startup and \ # shutdown. can run one of several display managers; gdm, kdm, \ # or xdm, in that order of preferential treatment. # # config: /etc/X11/xdm/xdm-config # probe: true # hide: true . /etc/rc.d/init.d/functions # Get service config if [ -f /etc/sysconfig/xdm ]; then . /etc/sysconfig/xdm fi RETVAL=0 # See how we were called. case "$1" in start) # Check if the service is already running? if [ ! -f /var/lock/subsys/xdm ]; then msg_starting "X Display Manager" daemon /usr/X11R6/bin/xdm RETVAL=$? [ $RETVAL -eq 0 ] && touch /var/lock/subsys/xdm else msg_already_running "X Display Manager" fi ;; stop) if [ -f /var/lock/subsys/xdm ]; then msg_stopping "X Display Manager" killproc xdm rm -f /var/lock/subsys/xdm else msg_not_running "X Display Manager" fi ;; status) status xdm exit $? ;; restart|force-reload) $0 stop $0 start exit $? ;; *) msg_usage "$0 {start|stop|restart|force-reload|status}" exit 3 esac exit $RETVAL