diff options
author | Taner Tas <taner76@gmail.com> | 2019-03-24 13:42:01 +0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-25 15:15:14 +0200 |
commit | f73cb5c48ec938020c59024cc75f7b7d19ec9b31 (patch) | |
tree | e25c4cddff01e939600844c749cd5764574999ee /community/lightdm/lightdm.initd | |
parent | 107990a8c66b184eb8c116f2697fc76627e8b722 (diff) | |
download | aports-f73cb5c48ec938020c59024cc75f7b7d19ec9b31.tar.bz2 aports-f73cb5c48ec938020c59024cc75f7b7d19ec9b31.tar.xz |
testing/lightdm* -> community/
lightdm* : move from testing
lightdm-gtk-greeter: upgrade to 2.0.6
Diffstat (limited to 'community/lightdm/lightdm.initd')
-rwxr-xr-x | community/lightdm/lightdm.initd | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/community/lightdm/lightdm.initd b/community/lightdm/lightdm.initd new file mode 100755 index 0000000000..6de51487e5 --- /dev/null +++ b/community/lightdm/lightdm.initd @@ -0,0 +1,15 @@ +#!/sbin/openrc-run + +depend() { + need localmount dbus +} + +description="Lightweight Display Manager" +command="/usr/bin/lightdm" +command_background="yes" +pidfile="/run/lightdm.pid" + +start_pre() { + checkpath --owner lightdm:lightdm --directory /run/lightdm +} + |