2020-07-21 10:23:41 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Hans de Goede <hdegoede@redhat.com>
|
|
|
|
Date: Mon, 3 Sep 2018 13:01:58 +0200
|
|
|
|
Subject: [PATCH] grub-boot-success.timer: Add a few Conditions for running the
|
|
|
|
timer
|
|
|
|
|
|
|
|
Add 2 Conditions for running the boot-success timer / service:
|
|
|
|
|
|
|
|
1) Do not run it for system users, this fixes errors about gdm not being
|
|
|
|
allowed to use pkexec when the greeter session lasts for more then 2 minutes:
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1592201#c6
|
|
|
|
|
|
|
|
2) Do not run the timer when pkexec is not available (on minimal installs)
|
|
|
|
since then it will just lead to a bunch of errors without doing anything:
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1619445
|
|
|
|
|
|
|
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
2022-05-10 07:20:45 +00:00
|
|
|
[rharwood: rebase fuzz around boot-succes timer commit]
|
|
|
|
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
|
2020-07-21 10:23:41 +00:00
|
|
|
---
|
2022-05-10 07:20:45 +00:00
|
|
|
docs/grub-boot-success.timer | 1 +
|
|
|
|
1 file changed, 1 insertion(+)
|
2020-07-21 10:23:41 +00:00
|
|
|
|
|
|
|
diff --git a/docs/grub-boot-success.timer b/docs/grub-boot-success.timer
|
2022-05-10 07:20:45 +00:00
|
|
|
index 406f17200..51d1eb238 100644
|
2020-07-21 10:23:41 +00:00
|
|
|
--- a/docs/grub-boot-success.timer
|
|
|
|
+++ b/docs/grub-boot-success.timer
|
2022-05-10 07:20:45 +00:00
|
|
|
@@ -2,6 +2,7 @@
|
2020-07-21 10:23:41 +00:00
|
|
|
Description=Mark boot as successful after the user session has run 2 minutes
|
2022-05-10 07:20:45 +00:00
|
|
|
ConditionUser=!@system
|
|
|
|
ConditionVirtualization=!container
|
2020-07-21 10:23:41 +00:00
|
|
|
+ConditionPathExists=/usr/bin/pkexec
|
|
|
|
|
|
|
|
[Timer]
|
|
|
|
OnActiveSec=2min
|