1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-11 05:17:44 +03:00

execute: if we fail to do namespacing, explain why we refuse to continue in a debug message

This commit is contained in:
Lennart Poettering 2018-10-24 16:55:17 +02:00
parent d1db1c438f
commit 2194547e3b

View File

@ -2431,6 +2431,10 @@ static int apply_mount_namespace(
return 0;
}
log_unit_debug(u, "Failed to set up namespace, and refusing to continue since the selected namespacing options alter mount environment non-trivially.\n"
"Bind mounts: %zu, temporary filesystems: %zu, root directory: %s, root image: %s, dynamic user: %s",
n_bind_mounts, context->n_temporary_filesystems, yes_no(root_dir), yes_no(root_image), yes_no(context->dynamic_user));
return -EOPNOTSUPP;
}