-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
systemd: Don't order systemd-user-sessions.service after network.target
Revert upstream commit 8c85680 This was causing delayed logins at boot waiting on dhcpcd. Fixes #60900
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
pkgs/os-specific/linux/systemd/user-sessions-not-after-network.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/units/systemd-user-sessions.service.in b/units/systemd-user-sessions.service.in | ||
index 6d585eb0a1..4c86ebc37e 100644 | ||
--- a/units/systemd-user-sessions.service.in | ||
+++ b/units/systemd-user-sessions.service.in | ||
@@ -10,7 +10,7 @@ | ||
[Unit] | ||
Description=Permit User Sessions | ||
Documentation=man:systemd-user-sessions.service(8) | ||
-After=remote-fs.target nss-user-lookup.target network.target | ||
+After=remote-fs.target nss-user-lookup.target | ||
|
||
[Service] | ||
Type=oneshot |