diff options
author | Taner Tas <taner76@gmail.com> | 2018-04-29 21:23:23 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-07-19 09:48:05 +0300 |
commit | 1930b07bb595290270526f94c53591876e0b56c7 (patch) | |
tree | 6130c65fe7faee091d666c1c6efdb85e7e172c15 /testing/lightdm/lightdm.initd | |
parent | b5a9835750e46d565040f7dea69c64d577bac166 (diff) | |
download | aports-1930b07bb595290270526f94c53591876e0b56c7.tar.bz2 aports-1930b07bb595290270526f94c53591876e0b56c7.tar.xz |
testing/lightdm: Upgrade to 1.26.0, improve abuild
* Clarify license
* Allow null passwords
* Improve APKBUILD, update patches
* Add -openrc subpackage
Diffstat (limited to 'testing/lightdm/lightdm.initd')
-rwxr-xr-x | testing/lightdm/lightdm.initd | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/lightdm/lightdm.initd b/testing/lightdm/lightdm.initd index 5ecac484c2..6de51487e5 100755 --- a/testing/lightdm/lightdm.initd +++ b/testing/lightdm/lightdm.initd @@ -1,15 +1,15 @@ -#!/sbin/runscript +#!/sbin/openrc-run depend() { need localmount dbus } -description="Lightweigh display manager" -command="/usr/sbin/lightdm" +description="Lightweight Display Manager" +command="/usr/bin/lightdm" command_background="yes" -pidfile="/var/run/lightdm.pid" +pidfile="/run/lightdm.pid" start_pre() { - checkpath --owner lightdm:lightdm --directory /var/run/lightdm + checkpath --owner lightdm:lightdm --directory /run/lightdm } |