summaryrefslogtreecommitdiff
path: root/src/boot
diff options
context:
space:
mode:
authorJonathan Lebon <jonathan@jlebon.com>2018-09-28 14:30:38 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-10-23 13:10:49 +0000
commitac1a919ffd4fe944d06c4f4510604baa73d1bf8e (patch)
treecfa0e1d3ff26bb16d5d7ea9514b73fdfb13d33ee /src/boot
parent1e16aec357c5c6f02d358c81ce8c81ce68fe0818 (diff)
downloadostree-ac1a919ffd4fe944d06c4f4510604baa73d1bf8e.tar.gz
boot: Add ostree-finalize-staged.path
Rather than manually starting the `ostree-finalize-staged.service` unit, we can leverage systemd's path units for this. It fits quite nicely too, given that we already have a path we drop iif we have a staged deployment. To give some time for the preset to make it to systems, we don't yet drop the explicit call to `systemctl start`. Though we do make it conditional based on a DEBUG env var so that we can actually test it in CI for now. Once we're sure this has propagated, we can drop the `systemctl start` path and the env var together. Closes: #1740 Approved by: cgwalters
Diffstat (limited to 'src/boot')
-rw-r--r--src/boot/ostree-finalize-staged.path28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/boot/ostree-finalize-staged.path b/src/boot/ostree-finalize-staged.path
new file mode 100644
index 00000000..f0f76151
--- /dev/null
+++ b/src/boot/ostree-finalize-staged.path
@@ -0,0 +1,28 @@
+# Copyright (C) 2018 Red Hat, Inc.
+#
+# This library 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 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+# For some implementation discussion, see:
+# https://lists.freedesktop.org/archives/systemd-devel/2018-March/040557.html
+[Unit]
+Description=OSTree Monitor Staged Deployment
+Documentation=man:ostree(1)
+
+[Path]
+PathExists=/run/ostree/staged-deployment
+
+[Install]
+WantedBy=multi-user.target