mirror of
https://github.com/systemd/systemd
synced 2025-10-06 00:13:24 +02:00
For "wizard" style interactive tools it's very annoying if they are interrupted by kernel log output or PID1's status output. let's add some infra to disable this temporarily. I decided to implement this as an IPC service so that we can make this robust: if the client request the muting dies we can automatically unmute again. This is hence a tiny varlink service, but it can also be started directly from the cmdline.
19 lines
545 B
Desktop File
19 lines
545 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# This file is part of systemd.
|
|
#
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
[Unit]
|
|
Description=Console Output Muting Service
|
|
Documentation=man:systemd-mute-console(8)
|
|
DefaultDependencies=no
|
|
Conflicts=shutdown.target
|
|
Before=shutdown.target
|
|
|
|
[Service]
|
|
ExecStart=systemd-mute-console
|