From 0b62ff48962757aa20d19d3515f1e792e7794773 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Sat, 9 Feb 2019 10:47:13 +0100 Subject: [PATCH] gdm.service: Order service after systemd-user-sessions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On a system with SSD (*hynotoad*), GDM does not start up properly. Only a black screen with the mouse pointer (clock) is shown. GDM seems to depend on other services, and comes up before the network target is reached, for example. In Debian, it’s ordered after `systemd-user-sessions.service`, so do the same here. --- misc_systemd_units/gdm.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc_systemd_units/gdm.service b/misc_systemd_units/gdm.service index e454a458..0ea6936d 100644 --- a/misc_systemd_units/gdm.service +++ b/misc_systemd_units/gdm.service @@ -1,7 +1,7 @@ [Unit] Description=GDM Wants=nvidia.service -After=nvidia.service +After=nvidia.service systemd-user-sessions.service ConditionPathExists=!/node/tags/lightdm [Service]