contrib/entrance/entrance.rc.d
2006-11-13 21:12:21 +01:00

29 lines
285 B
Bash

#!/bin/sh
#
# /etc/rc.d/entrance: start/stop enlighted display manager
#
case $1 in
start)
/usr/sbin/entranced
;;
stop)
pkill -f /usr/sbin/entranced
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file