From: Chris Down Date: Mon, 8 Jun 2026 07:34:13 +0000 (+0900) Subject: core: Update stale UserNamespacePath= failure message X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=fb1e76c674a85c3956d3861bb64e8cd06df2e591;p=thirdparty%2Fsystemd.git core: Update stale UserNamespacePath= failure message The message is stale (this is about UserNamespacePath=, not PrivateUsers=) and this should be an error, not notice given we are going to fail. --- diff --git a/src/core/exec-invoke.c b/src/core/exec-invoke.c index 9cde9c62e44..6e65883ef9e 100644 --- a/src/core/exec-invoke.c +++ b/src/core/exec-invoke.c @@ -6108,7 +6108,7 @@ int exec_invoke( r = setup_shareable_ns(runtime->shared->userns_storage_socket, CLONE_NEWUSER); if (ERRNO_IS_NEG_PRIVILEGE(r)) { *exit_status = EXIT_USER; - return log_notice_errno(r, "PrivateUsers= is configured, but user namespace setup not permitted, refusing."); + return log_error_errno(r, "UserNamespacePath= is configured, but user namespace setup not permitted, refusing."); } if (r < 0) { *exit_status = EXIT_USER;