summaryrefslogtreecommitdiff
path: root/src/shared/condition.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-06-07 13:29:19 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-06-07 13:40:08 +0200
commit294eace024b0e6c34cb64e3bb4f8958bb98ee00b (patch)
tree9298103dd5cce2b058a6488eb817f1d203f79df0 /src/shared/condition.c
parentdc16846c26287fd2081eb3c4a73487c9b186e2b7 (diff)
downloadsystemd-294eace024b0e6c34cb64e3bb4f8958bb98ee00b.tar.gz
core: disable "update" units in the initramfs
Initially I wanted to add ConditionPathExists=!/etc/initrd-release in various units (ldconfig.service, systemd-sysusers.service, systemd-hwdb-update.service, systemd-journal-catalog-update, systemd-update-done.service), but I think it's better to just disable the mechanism in the initrd altogether. Initrd images are put together in a very particular way, and there is not need to do post-update steps on them. If a unit from some other package winds up in the initrd, we wouldn't want to invoke it either. Also, any modifications are ephemeral, so any update would happen on every use. And finally, initrd images are all about speed, and we shouldn't invoke any unneeded services.
Diffstat (limited to 'src/shared/condition.c')
-rw-r--r--src/shared/condition.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/shared/condition.c b/src/shared/condition.c
index d4d9eacc4b..b86312548d 100644
--- a/src/shared/condition.c
+++ b/src/shared/condition.c
@@ -675,6 +675,11 @@ static int condition_test_needs_update(Condition *c, char **env) {
if (r > 0)
return b;
+ if (in_initrd()) {
+ log_debug("We are in an initrd, not doing any updates.");
+ return false;
+ }
+
if (!path_is_absolute(c->parameter)) {
log_debug("Specified condition parameter '%s' is not absolute, assuming an update is needed.", c->parameter);
return true;