1f092caba7
Add comments and revert logic changes in 01_fallback_counting Remove quotes when reading ID value from /etc/os-release Related: rhbz#1650706 blscfg: expand grub_users before passing to grub_normal_add_menu_entry() Resolves: rhbz#1650706 Drop buggy downstream patch "efinet: retransmit if our device is busy" Resolves: rhbz#1649048 Make the menu entry users option argument to be optional Related: rhbz#1652434 10_linux_bls: add missing menu entries options Resolves: rhbz#1652434 Drop "Be more aggro about actually using the *configured* network device." Resolves: rhbz#1654388 Fix menu entry selection based on title Resolves: rhbz#1654936 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Hans de Goede <hdegoede@redhat.com>
|
|
Date: Tue, 19 Jun 2018 15:20:54 +0200
|
|
Subject: [PATCH] docs: Add grub-boot-indeterminate.service example
|
|
|
|
This is an example service file, for use from
|
|
/lib/systemd/system/system-update.target.wants
|
|
to increment the boot_indeterminate variable when
|
|
doing offline updates.
|
|
|
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
---
|
|
docs/grub-boot-indeterminate.service | 11 +++++++++++
|
|
1 file changed, 11 insertions(+)
|
|
create mode 100644 docs/grub-boot-indeterminate.service
|
|
|
|
diff --git a/docs/grub-boot-indeterminate.service b/docs/grub-boot-indeterminate.service
|
|
new file mode 100644
|
|
index 00000000000..6c8dcb186b6
|
|
--- /dev/null
|
|
+++ b/docs/grub-boot-indeterminate.service
|
|
@@ -0,0 +1,11 @@
|
|
+[Unit]
|
|
+Description=Mark boot as indeterminate
|
|
+DefaultDependencies=false
|
|
+Requires=sysinit.target
|
|
+After=sysinit.target
|
|
+Wants=system-update-pre.target
|
|
+Before=system-update-pre.target
|
|
+
|
|
+[Service]
|
|
+Type=oneshot
|
|
+ExecStart=/usr/bin/grub2-editenv - incr boot_indeterminate
|