From: Luca Boccassi Date: Wed, 15 Jul 2026 14:39:40 +0000 (+0100) Subject: nspawn: log at error level before exiting if parsing OCI fails X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ef10ee3f16d90be3e2f836a0a11b212e06b2468;p=thirdparty%2Fsystemd.git nspawn: log at error level before exiting if parsing OCI fails Currently it silently errors out, with nothing at all printed on the console Follow-up for de40a3037af944f6803375f2f5269cffc4247f56 --- diff --git a/src/nspawn/nspawn-oci.c b/src/nspawn/nspawn-oci.c index f92e1e416b4..e113a6097bc 100644 --- a/src/nspawn/nspawn-oci.c +++ b/src/nspawn/nspawn-oci.c @@ -2123,9 +2123,9 @@ int oci_load(FILE *f, const char *bundle, Settings **ret) { if (!s->bundle) return log_oom(); - r = oci_dispatch(oci, table, 0, s); + r = oci_dispatch(oci, table, /* flags= */ 0, s); if (r < 0) - return r; + return log_error_errno(r, "Failed to parse OCI bundle configuration file '%s': %m", path); if (s->properties) { r = sd_bus_message_seal(s->properties, 0, 0);