PKGBUILDs/extra/gdm/gdm
2009-10-09 21:23:22 -05:00

35 lines
511 B
Bash
Executable file

#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
start)
stat_busy "Starting GDM"
/usr/sbin/gdm
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon gdm
stat_done
fi
;;
stop)
stat_busy "Stopping GDM"
/usr/sbin/gdm-stop > /dev/null 2>&1
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon gdm
stat_done
fi
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0