mirror of
https://github.com/systemd/systemd.git
synced 2024-11-24 02:33:36 +08:00
496b4fa0e9
* Remove extra period at end of unit description. Having an extra period at the end of this unit description makes log entries pertaining to it appear weirdly, as it seems the default expectation is that there is not to be a period at the end of a unit description. e.g.: `systemd[1]: Started Displays emergency message in full screen..`
22 lines
670 B
SYSTEMD
22 lines
670 B
SYSTEMD
# 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=Display Boot-Time Emergency Messages In Full Screen
|
|
Documentation=man:systemd-bsod.service(8)
|
|
ConditionVirtualization=no
|
|
DefaultDependencies=no
|
|
After=systemd-battery-check.service
|
|
Before=shutdown.target
|
|
Conflicts=shutdown.target
|
|
|
|
[Service]
|
|
RemainAfterExit=yes
|
|
ExecStart={{LIBEXECDIR}}/systemd-bsod --continuous
|