summaryrefslogtreecommitdiff
path: root/src/nspawn/nspawn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nspawn/nspawn.c')
-rw-r--r--src/nspawn/nspawn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c
index d3ef37fba3..33863b01b3 100644
--- a/src/nspawn/nspawn.c
+++ b/src/nspawn/nspawn.c
@@ -339,7 +339,7 @@ static int pick_cgroup_version(const char *directory, CGroupUnified outer) {
* false negative here for 230. */
r = systemd_installation_has_version(directory, 230);
if (r < 0)
- return log_error_errno(r, "Failed to determine systemd version in container: %m");
+ return log_error_errno(r, "Failed to decide cgroup version to use: Failed to determine systemd version in container: %m");
if (r > 0)
arg_unified_cgroup_hierarchy = CGROUP_UNIFIED_ALL;
else
@@ -349,7 +349,7 @@ static int pick_cgroup_version(const char *directory, CGroupUnified outer) {
/* Mixed cgroup hierarchy support was added in 232 */
r = systemd_installation_has_version(directory, 232);
if (r < 0)
- return log_error_errno(r, "Failed to determine systemd version in container: %m");
+ return log_error_errno(r, "Failed to decide cgroup version to use: Failed to determine systemd version in container: %m");
if (r > 0)
arg_unified_cgroup_hierarchy = CGROUP_UNIFIED_SYSTEMD;
else