diff options
author | Pablo Correa Gómez <ablocorrea@hotmail.com> | 2023-04-12 17:28:21 +0200 |
---|---|---|
committer | Pablo Correa Gómez <ablocorrea@hotmail.com> | 2023-04-12 17:40:12 +0200 |
commit | 4f5eaac12a6cb578eeb21fea383dcba6409d10f4 (patch) | |
tree | d95368153638f52d63be3e4eaed6344f6612c313 | |
parent | 068d2a8b898a544ff1f08ae92ce91d7bcce9fe73 (diff) | |
download | alpine-conf-4f5eaac12a6cb578eeb21fea383dcba6409d10f4.zip |
setup-desktop: gnome: add elogind to default runlevelmaster
It is a hard-dependency for gdm, that talks to it through DBus.
It is supposed to be started before the display manager, but without
adding it to the runlevel, that's not happening. So add it, instead of
hoping that DBus activation works once gdm is already running.
-rw-r--r-- | setup-desktop.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setup-desktop.in b/setup-desktop.in index 90d96ef..8f7cdeb 100644 --- a/setup-desktop.in +++ b/setup-desktop.in @@ -69,6 +69,7 @@ case "$de" in setup-xorg-base ${BROWSER:-firefox} $(apk info --quiet --depends \ gnome gnome-apps-core) "$@" rc-update add gdm + rc-update add elogind ;; plasma) setup-xorg-base ${BROWSER:-firefox} \ |