void-packages/srcpkgs/gdm/files/gdm.rc
Juan RP 6b3e6dac34 Added gdm-2.30.0 build template.
--HG--
extra : convert_revision : 8738615e8737d4ef839dbcb9b0a5415192c1ba2d
2010-04-15 03:53:44 +02:00

22 lines
264 B
Text

#!/sbin/runscript
command=/usr/sbin/gdm-binary
depend()
{
need dbus
}
start()
{
ebegin "Starting GDM"
start-stop-daemon --start --exec ${command} --background
eend $?
}
stop()
{
ebegin "Stopping GDM"
start-stop-daemon --stop --exec ${command}
eend $?
}