blob: 21e5031fa7fd46cd2d7e74c978d77d6edfca6948 (
plain)
1 #!/bin/sh
2 #
3 # /etc/rc.d/xdm: start/stop X display manager
4 #
5
6 case $1 in
7 start)
8 . /etc/profile
9 /usr/X11R6/bin/xdm
10 ;;
11 stop)
12 killall -q /usr/X11R6/bin/xdm
13 ;;
14 restart)
15 $0 stop
16 sleep 2
17 $0 start
18 ;;
19 *)
20 echo "usage: $0 [start|stop|restart]"
21 ;;
22 esac
23
24 # End of file
|