diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-10-30 14:21:09 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-10-31 22:08:08 +0100 |
commit | 243b63d8a6797cf9de37b309575d9ec0cb04c041 (patch) | |
tree | 4193f13ff3cbdce911e5bdaace7b46db39f8f549 /man | |
parent | man: warn that sysupdate's API is unstable (diff) | |
download | systemd-243b63d8a6797cf9de37b309575d9ec0cb04c041.tar.xz systemd-243b63d8a6797cf9de37b309575d9ec0cb04c041.zip |
meson: add separate option for sysupdated, disable in release builds
This commit introduces a build-time option to enable/disable sysupdated
separately from sysupdate. 'auto' translated to enabled by default in
developer builds.
Diffstat (limited to 'man')
-rw-r--r-- | man/org.freedesktop.sysupdate1.xml | 2 | ||||
-rw-r--r-- | man/rules/meson.build | 6 | ||||
-rw-r--r-- | man/systemd-sysupdated.service.xml | 2 | ||||
-rw-r--r-- | man/updatectl.xml | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/man/org.freedesktop.sysupdate1.xml b/man/org.freedesktop.sysupdate1.xml index 61c5847b1d..aa4a30e079 100644 --- a/man/org.freedesktop.sysupdate1.xml +++ b/man/org.freedesktop.sysupdate1.xml @@ -3,7 +3,7 @@ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" > <!-- SPDX-License-Identifier: LGPL-2.1-or-later --> -<refentry id="org.freedesktop.sysupdate1" conditional='ENABLE_SYSUPDATE' +<refentry id="org.freedesktop.sysupdate1" conditional='ENABLE_SYSUPDATED' xmlns:xi="http://www.w3.org/2001/XInclude"> <refentryinfo> <title>org.freedesktop.sysupdate1</title> diff --git a/man/rules/meson.build b/man/rules/meson.build index 5f69f01cc4..eb4300386d 100644 --- a/man/rules/meson.build +++ b/man/rules/meson.build @@ -65,7 +65,7 @@ manpages = [ ['org.freedesktop.portable1', '5', [], 'ENABLE_PORTABLED'], ['org.freedesktop.resolve1', '5', [], 'ENABLE_RESOLVE'], ['org.freedesktop.systemd1', '5', [], ''], - ['org.freedesktop.sysupdate1', '5', [], 'ENABLE_SYSUPDATE'], + ['org.freedesktop.sysupdate1', '5', [], 'ENABLE_SYSUPDATED'], ['org.freedesktop.timedate1', '5', [], 'ENABLE_TIMEDATED'], ['org.freedesktop.timesync1', '5', [], 'ENABLE_TIMESYNCD'], ['os-release', '5', ['extension-release', 'initrd-release'], ''], @@ -1107,7 +1107,7 @@ manpages = [ ['systemd-sysupdated.service', '8', ['systemd-sysupdated'], - 'ENABLE_SYSUPDATE'], + 'ENABLE_SYSUPDATED'], ['systemd-sysusers', '8', ['systemd-sysusers.service'], ''], ['systemd-sysv-generator', '8', [], 'HAVE_SYSV_COMPAT'], ['systemd-time-wait-sync.service', @@ -1286,7 +1286,7 @@ manpages = [ ['udev_new', '3', ['udev_ref', 'udev_unref'], ''], ['udevadm', '8', [], ''], ['ukify', '1', [], 'ENABLE_UKIFY'], - ['updatectl', '1', [], 'ENABLE_SYSUPDATE'], + ['updatectl', '1', [], 'ENABLE_SYSUPDATED'], ['user@.service', '5', ['systemd-user-runtime-dir', 'user-runtime-dir@.service'], diff --git a/man/systemd-sysupdated.service.xml b/man/systemd-sysupdated.service.xml index f28cc6c97f..30a9bd8d69 100644 --- a/man/systemd-sysupdated.service.xml +++ b/man/systemd-sysupdated.service.xml @@ -3,7 +3,7 @@ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> <!-- SPDX-License-Identifier: LGPL-2.1-or-later --> -<refentry id="systemd-sysupdated.service" conditional='ENABLE_SYSUPDATE'> +<refentry id="systemd-sysupdated.service" conditional='ENABLE_SYSUPDATED'> <refentryinfo> <title>systemd-sysupdated.service</title> diff --git a/man/updatectl.xml b/man/updatectl.xml index 9fece4f779..c7b0dbd309 100644 --- a/man/updatectl.xml +++ b/man/updatectl.xml @@ -3,7 +3,7 @@ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> <!-- SPDX-License-Identifier: LGPL-2.1-or-later --> -<refentry id="updatectl" conditional='ENABLE_SYSUPDATE' +<refentry id="updatectl" conditional='ENABLE_SYSUPDATED' xmlns:xi="http://www.w3.org/2001/XInclude"> <refentryinfo> |