summaryrefslogtreecommitdiff
path: root/units
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2018-06-19 10:50:41 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-06-19 13:42:19 +0200
commit520741d08eb223703421df0b082bbbe522992f20 (patch)
tree9e23153a00008bf32aa6c090ce14c93693d7c117 /units
parentc0373eb019db70017878ee64d042de902e4c98ee (diff)
downloadsystemd-520741d08eb223703421df0b082bbbe522992f20.tar.gz
units: Add new system-update-pre.target
systemd offline-updates allows dropping multiple system update units to be added to system-update.target.wants. As documented in systemd.offline-updates(7) only 1 of these units should actually be active (based on the /system-update symlink) and when that unit is done it should reboot the system. In some cases it is desirable to run a unit whenever booting in offline-updates mode indepedent of which update unit is going to handle the update. One example of this is integration with bootloader code which checks if the previous boot was succesful. Since the active unit will reboot the system when it is done, there is no guarantee that adding such a unit to system-update.target.wants will get it executed always. This commit adds a system-update-pre.target which can be used for units which should always run when booting in offline-updates mode.
Diffstat (limited to 'units')
-rw-r--r--units/meson.build1
-rw-r--r--units/system-update-pre.target16
-rw-r--r--units/system-update.target1
3 files changed, 18 insertions, 0 deletions
diff --git a/units/meson.build b/units/meson.build
index 77d52c1083..e4ac6ced64 100644
--- a/units/meson.build
+++ b/units/meson.build
@@ -77,6 +77,7 @@ units = [
['sysinit.target', ''],
['syslog.socket', ''],
['system-update.target', ''],
+ ['system-update-pre.target', ''],
['system-update-cleanup.service', ''],
['systemd-ask-password-console.path', '',
'sysinit.target.wants/'],
diff --git a/units/system-update-pre.target b/units/system-update-pre.target
new file mode 100644
index 0000000000..dbd9ad92ec
--- /dev/null
+++ b/units/system-update-pre.target
@@ -0,0 +1,16 @@
+# 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=Offline System Update (Pre)
+Documentation=man:systemd.offline-updates(7)
+Documentation=man:systemd.special(7) man:systemd-system-update-generator(8)
+RefuseManualStart=yes
+After=sysinit.target
+Before=system-update.target
diff --git a/units/system-update.target b/units/system-update.target
index c46bfe754a..b52a494892 100644
--- a/units/system-update.target
+++ b/units/system-update.target
@@ -14,4 +14,5 @@ Documentation=man:systemd.special(7) man:systemd-system-update-generator(8)
Requires=sysinit.target
After=sysinit.target
AllowIsolate=yes
+Wants=system-update-pre.target
Wants=system-update-cleanup.service