0933fb5a74
--HG-- branch : gnome3
22 lines
257 B
Text
22 lines
257 B
Text
#!/sbin/runscript
|
|
|
|
command=/usr/sbin/gdm
|
|
|
|
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 $?
|
|
}
|