]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core/service: correct desc for first-level credential refreshing process 40673/head
authorMike Yuan <me@yhndnzj.com>
Fri, 13 Feb 2026 10:14:51 +0000 (11:14 +0100)
committerMike Yuan <me@yhndnzj.com>
Fri, 13 Feb 2026 13:51:44 +0000 (14:51 +0100)
It doesn't join the unit namespace. It would fork again to do so
if needed.

src/core/service.c

index 30e04ec5596158fadf18a3cb44ffd4b213767f1f..aa133a57db2781ed5352ef205f78bf06585f4819 100644 (file)
@@ -2886,7 +2886,7 @@ static void service_enter_refresh_credentials(Service *s) {
                                           FORK_ALLOW_DLOPEN, /* allow loading libacl to avoid doing so in pid1 */
                                           &worker);
         if (r < 0) {
-                log_unit_error_errno(UNIT(s), r, "Failed to fork process to refresh credentials in unit's namespace: %m");
+                log_unit_error_errno(UNIT(s), r, "Failed to fork process to refresh credentials: %m");
                 goto fail;
         }
         if (r == 0) {