67f07b7c9e
- Add luks2 to GRUB_MODULES - 20-grub-install: Create a symvers.gz symbolic link - 20-grub-install: Always use fedora as the boot entry --class Resolves: rhbz#1957014 - grub.macros: Install font in /boot/grub2 instead of the ESP Resolves: rhbz#1739762 - grub.macros: Use consistent file mode for legacy and EFI Resolves: rhbz#1965794 - Drop grub2 prelink configuration Resolves: rhbz#1659675 - Remove triggers needed to upgrade from legacy GRUB - Don't harcode grub2 in the spec file - Update to unifont-13.0.06 Resolves: rhbz#1939125 - 20-grub-install: Use relative paths for btrfs in BLS snippets Resolves: rhbz#1906191 - Don't update the cmdline when generating legacy menuentry commands - Suppress gettext error message Resolves: rhbz#1592124 - grub-boot-success.timer: Only run if not in a container Resolves: rhbz#1914571 - grub-set-password: Always use /boot/grub2/user.cfg as password default Resolves: rhbz#1955294 - Remove outdated URL for BLS document Resolves: rhbz#1926453 - templates: Check for EFI at runtime instead of config generation time Resolves: rhbz#1823864 - efi: Print an error if boot to firmware setup is not supported Resolves: rhbz#1823864 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Gena Makhomed <gmm@csdoc.com>
|
|
Date: Thu, 1 Jul 2021 01:07:46 +0200
|
|
Subject: [PATCH] grub-boot-success.timer: Only run if not in a container
|
|
|
|
The grub-boot-success.timer should be disabled inside a container since it
|
|
leads to the following error:
|
|
|
|
Jan 09 22:56:38 test sshd[8786]: pam_unix(sshd:session): session opened for user www(uid=1000) by (uid=0)
|
|
Jan 09 22:58:39 test systemd[8857]: Starting Mark boot as successful...
|
|
Jan 09 22:58:39 test systemd[8857]: grub-boot-success.service: Main process exited, code=exited, status=1/FAILURE
|
|
Jan 09 22:58:39 test systemd[8857]: grub-boot-success.service: Failed with result 'exit-code'.
|
|
Jan 09 22:58:39 test systemd[8857]: Failed to start Mark boot as successful.
|
|
Jan 09 22:58:39 test grub2-set-bootflag[10034]: Error canonicalizing /boot/grub2/grubenv filename: No such file or directory
|
|
|
|
Resolves: rhbz#1914571
|
|
---
|
|
docs/grub-boot-success.timer | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/docs/grub-boot-success.timer b/docs/grub-boot-success.timer
|
|
index 5d8fcba21aa..406f1720056 100644
|
|
--- a/docs/grub-boot-success.timer
|
|
+++ b/docs/grub-boot-success.timer
|
|
@@ -1,6 +1,7 @@
|
|
[Unit]
|
|
Description=Mark boot as successful after the user session has run 2 minutes
|
|
ConditionUser=!@system
|
|
+ConditionVirtualization=!container
|
|
|
|
[Timer]
|
|
OnActiveSec=2min
|