diff options
author | Luca Boccassi <bluca@debian.org> | 2021-04-02 17:30:43 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-04-06 12:02:42 +0200 |
commit | 7c20dd4b6ef6e69862576722ac69b895d7a92dc9 (patch) | |
tree | 23f18ad6899684f97708d612dfcff8b00f789bfe /units/systemd-firstboot.service | |
parent | update (diff) | |
download | systemd-7c20dd4b6ef6e69862576722ac69b895d7a92dc9.tar.xz systemd-7c20dd4b6ef6e69862576722ac69b895d7a92dc9.zip |
sysusers/firstboot: temporarily disable LoadCredential
Single-param LoadCredential= in units causes systemd v247/v248 to
assert when parsing. Disable it for now, until the fix is merged
in the stable trees, released and available (eg: in Debian
for the CI)
See: https://github.com/systemd/systemd/issues/19178
Diffstat (limited to 'units/systemd-firstboot.service')
-rw-r--r-- | units/systemd-firstboot.service | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/units/systemd-firstboot.service b/units/systemd-firstboot.service index 2e57b064c1..70bc67e1d6 100644 --- a/units/systemd-firstboot.service +++ b/units/systemd-firstboot.service @@ -29,10 +29,12 @@ StandardError=tty # Optionally, pick up basic fields from credentials passed to the service # manager. This is useful for importing this data from nspawn's # --set-credential= switch. -LoadCredential=passwd.hashed-password.root -LoadCredential=passwd.plaintext-password.root -LoadCredential=passwd.shell.root -LoadCredential=firstboot.locale -LoadCredential=firstboot.locale-messages -LoadCredential=firstboot.keymap -LoadCredential=firstboot.timezone +# FIXME: temporarily disabled as it causes asserts on v247/v248, see: +# https://github.com/systemd/systemd/issues/19178 +#LoadCredential=passwd.hashed-password.root +#LoadCredential=passwd.plaintext-password.root +#LoadCredential=passwd.shell.root +#LoadCredential=firstboot.locale +#LoadCredential=firstboot.locale-messages +#LoadCredential=firstboot.keymap +#LoadCredential=firstboot.timezone |