From: Lennart Poettering Date: Tue, 16 Jun 2026 15:13:29 +0000 (+0200) Subject: homectl: actually honour --mute-console= (#42617) X-Git-Tag: v261-rc4~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76ef4902d3573296e00d7c0c1f84b5e442bd2ece;p=thirdparty%2Fsystemd.git homectl: actually honour --mute-console= (#42617) --- diff --git a/src/home/homectl.c b/src/home/homectl.c index 95c5e101ed0..3d3cd6087d1 100644 --- a/src/home/homectl.c +++ b/src/home/homectl.c @@ -2998,7 +2998,8 @@ static int create_interactively(void) { (void) plymouth_hide_splash(); _cleanup_(sd_varlink_flush_close_unrefp) sd_varlink *mute_console_link = NULL; - (void) mute_console(&mute_console_link); + if (arg_mute_console) + (void) mute_console(&mute_console_link); (void) terminal_reset_defensive_locked(STDOUT_FILENO, /* flags= */ 0);