diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-06-25 17:24:09 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-10-19 22:34:50 +0200 |
commit | 36695e880aff9c1525ed4efd5e42df1c62932a80 (patch) | |
tree | 72d454b675f2232833045b0e44d276ce1e7e6bfc /units/systemd-bless-boot.service.in | |
parent | 82ea38258c0f4964c2f3ad3691c6e4554c4f0bb0 (diff) | |
download | systemd-36695e880aff9c1525ed4efd5e42df1c62932a80.tar.gz |
add new systemd-bless-boot.service that marks boots as successful
This is the counterpiece to the boot counting implemented in
systemd-boot: if a boot is detected as successful we mark drop the
counter again from the booted snippet or kernel image.
Diffstat (limited to 'units/systemd-bless-boot.service.in')
-rw-r--r-- | units/systemd-bless-boot.service.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/units/systemd-bless-boot.service.in b/units/systemd-bless-boot.service.in new file mode 100644 index 0000000000..511d991d3b --- /dev/null +++ b/units/systemd-bless-boot.service.in @@ -0,0 +1,22 @@ +# 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=Mark the Current Boot Loader Entry as Good +Documentation=man:systemd-bless-boot.service(8) +DefaultDependencies=no +Requires=boot-complete.target +After=local-fs.target boot-complete.target +Conflicts=shutdown.target +Before=shutdown.target + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=@rootlibexecdir@/systemd-bless-boot good |