diff options
author | Maanya Goenka <maanyagoenka@microsoft.com> | 2023-08-16 20:43:06 +0200 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2023-11-03 17:59:58 +0100 |
commit | db776f6935e99755ffe7267cb7dcd9ba0f1ad6a4 (patch) | |
tree | a00963ff617a8a12e7a752e483f61742b121d5b2 /man/org.freedesktop.portable1.xml | |
parent | core: check that extensions have the hierarchies before overlaying (diff) | |
download | systemd-db776f6935e99755ffe7267cb7dcd9ba0f1ad6a4.tar.xz systemd-db776f6935e99755ffe7267cb7dcd9ba0f1ad6a4.zip |
portable: add support for confext
Support confexts for portable services
Diffstat (limited to 'man/org.freedesktop.portable1.xml')
-rw-r--r-- | man/org.freedesktop.portable1.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/man/org.freedesktop.portable1.xml b/man/org.freedesktop.portable1.xml index e5902a0328..118d86d727 100644 --- a/man/org.freedesktop.portable1.xml +++ b/man/org.freedesktop.portable1.xml @@ -309,14 +309,14 @@ node /org/freedesktop/portable1 { <function>ReattachImageWithExtensions()</function> methods take in options as flags instead of booleans to allow for extendability. <varname>SD_SYSTEMD_PORTABLE_FORCE_ATTACH</varname> will cause safety checks that ensure the units are not running while the new image is attached or detached - to be skipped. <varname>SD_SYSTEMD_PORTABLE_FORCE_SYSEXT</varname> will cause the check that the + to be skipped. <varname>SD_SYSTEMD_PORTABLE_FORCE_EXTENSION</varname> will cause the check that the <filename>extension-release.<replaceable>NAME</replaceable></filename> file in the extension image matches the image name to be skipped. They are defined as follows:</para> <programlisting> -#define SD_SYSTEMD_PORTABLE_RUNTIME (UINT64_C(1) << 0) -#define SD_SYSTEMD_PORTABLE_FORCE_ATTACH (UINT64_C(1) << 1) -#define SD_SYSTEMD_PORTABLE_FORCE_SYSEXT (UINT64_C(1) << 2) +#define SD_SYSTEMD_PORTABLE_RUNTIME (UINT64_C(1) << 0) +#define SD_SYSTEMD_PORTABLE_FORCE_ATTACH (UINT64_C(1) << 1) +#define SD_SYSTEMD_PORTABLE_FORCE_EXTENSION (UINT64_C(1) << 2) </programlisting> </refsect2> |