opt/x11/xdm
2006-02-23 17:10:28 +00:00

25 lines
267 B
Bash
Executable File

#!/bin/sh
#
# /etc/rc.d/xdm: start/stop X display manager
#
case $1 in
start)
. /etc/profile
/usr/X11R6/bin/xdm
;;
stop)
killall -q /usr/X11R6/bin/xdm
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file