contrib/ati/atieventsd
2007-06-07 16:00:49 +02:00

24 lines
309 B
Bash

#!/bin/sh
#
# /etc/rc.d/atieventsd: start/stop ATI external events daemon
#
case $1 in
start)
/usr/sbin/atieventsd
;;
stop)
killall -q /usr/sbin/atieventsd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of File