xorg/xorg-xdm/xdm

24 lines
225 B
Plaintext
Raw Normal View History

2007-09-30 14:25:41 +02:00
#!/bin/sh
#
# /etc/rc.d/xdm: start/stop xdm
#
case $1 in
start)
/usr/bin/xdm
;;
stop)
killall -q /usr/bin/xdm
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file