mirror of
https://github.com/systemd/systemd
synced 2024-11-05 18:25:39 +00:00
921fc451cb
This renames systemd-boot-system-token.service to
systemd-boot-random-seed.service and conditions it less strictly.
Previously, the job of the service was to write a "system token" EFI
variable if it was missing. It called "bootctl --graceful random-seed"
for that. With this change we condition it more liberally: instead of
calling it only when the "system token" EFI variable isn't set, we call
it whenever a boot loader interface compatible boot loader is used. This
means, previously it was invoked on the first boot only: now it is
invoked at every boot.
This doesn#t change the command that is invoked. That's because
previously already the "bootctl --graceful random-seed" did two things:
set the system token if not set yet *and* refresh the random seed in the
ESP. Previousy we put the focus on the former, now we shift the focus to
the latter.
With this simple change we can replace the logic
f913c784ad
added, but from a service that
can run much later and doesn't keep the ESP pinned.
28 lines
1 KiB
Desktop File
28 lines
1 KiB
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# This file is part of systemd.
|
|
#
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
[Unit]
|
|
Description=Update Boot Loader Random Seed
|
|
Documentation=man:systemd-boot-random-seed.service(8) man:random(4)
|
|
|
|
DefaultDependencies=no
|
|
After=local-fs.target systemd-random-seed.service
|
|
Conflicts=shutdown.target
|
|
Before=sysinit.target shutdown.target
|
|
|
|
ConditionVirtualization=!container
|
|
ConditionPathExists=!/etc/initrd-release
|
|
# Only run this if the boot loader can support random seed initialization.
|
|
ConditionPathExists=|/sys/firmware/efi/efivars/LoaderFeatures-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f
|
|
ConditionPathExists=|/sys/firmware/efi/efivars/StubFeatures-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
ExecStart=bootctl --graceful random-seed
|