mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
4885626b56
If for any reason local-fs.target fails at startup while a password is requested by systemd-cryptsetup@.service, we end up with the emergency shell competing with systemd-ask-password-console.service for the console. This patch makes sure that: - systemd-ask-password-console.service is stopped before entering in emergency mode so it won't make any access to the console while the emergency shell is running. - systemd-ask-password-console.path is also stopped so any attempts to restart systemd-cryptsetup in the emergency shell won't restart systemd-ask-password-console.service and kill the emergency shell. - systemd-ask-password-wall.path is stopped so systemd-ask-password-wall.service won't be started as this service pulls the default dependencies in. Fixes: #10131
22 lines
750 B
SYSTEMD
22 lines
750 B
SYSTEMD
# SPDX-License-Identifier: LGPL-2.1+
|
|
#
|
|
# 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=Dispatch Password Requests to Console
|
|
Documentation=man:systemd-ask-password-console.service(8)
|
|
DefaultDependencies=no
|
|
Conflicts=shutdown.target emergency.service
|
|
After=plymouth-start.service systemd-vconsole-setup.service
|
|
Before=shutdown.target
|
|
ConditionPathExists=!/run/plymouth/pid
|
|
|
|
[Service]
|
|
ExecStart=@rootbindir@/systemd-tty-ask-password-agent --watch --console
|
|
SystemCallArchitectures=native
|