core/chakra-hardware-detection/etc/rc.d/xorg-detect
2010-05-21 22:16:47 +00:00

25 lines
263 B
Bash
Executable File

#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
start)
stat_busy "Configuring X.org"
/opt/chakra/bin/xorg-detect.sh
stat_done
;;
stop)
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac