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

nspawn: --private-users-ownership= value is called 'chown', not 'own'

(cherry picked from commit bae936b418e08063b68c95f4df53c3cd4f70e881)
(cherry picked from commit bdf3f9b8f274d958befa54c95811910013b39a80)
This commit is contained in:
Lennart Poettering 2024-11-13 12:14:53 +01:00 committed by Luca Boccassi
parent cab88476b2
commit 809b265172

View File

@ -475,7 +475,8 @@ static int custom_mount_check_all(void) {
if (path_equal(m->destination, "/") && arg_userns_mode != USER_NAMESPACE_NO) {
if (arg_userns_ownership != USER_NAMESPACE_OWNERSHIP_OFF)
return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
"--private-users-ownership=own may not be combined with custom root mounts.");
"--private-users-ownership=%s may not be combined with custom root mounts.",
user_namespace_ownership_to_string(arg_userns_ownership));
if (arg_uid_shift == UID_INVALID)
return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
"--private-users with automatic UID shift may not be combined with custom root mounts.");