#!/sbin/openrc-run depend() { need localmount use dbus } start() { ebegin "Starting ${RC_SVCNAME}" start-stop-daemon --start -b -p /run/lightdm.pid \ -- /usr/sbin/lightdm eend } stop() { ebegin "Stopping ${RC_SVCNAME}" start-stop-daemon --stop -p /run/lightdm.pid eend }