From 4c9a288154b9c590d51eb12e44d525acded18759 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Mon, 25 Sep 2023 19:14:58 +0100 Subject: [PATCH] man: document SystemState's possible values --- man/org.freedesktop.systemd1.xml | 48 ++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/man/org.freedesktop.systemd1.xml b/man/org.freedesktop.systemd1.xml index 85feae089e..8a033c92be 100644 --- a/man/org.freedesktop.systemd1.xml +++ b/man/org.freedesktop.systemd1.xml @@ -702,8 +702,6 @@ node /org/freedesktop/systemd1 { - - @@ -1795,6 +1793,52 @@ node /org/freedesktop/systemd1 { access to the unit. It's read from the unit file when it is loaded and cached until the service manager is reloaded. This property contains an empty string if SELinux is not used or if no label could be read (for example because the unit is not backed by a file on disk). + + SystemState contains the current state of the system manager. The possible + values are: + + + + initializing + + The system is booting, and basic.target has not been reached + yet. + + + + starting + + The system is booting, and basic.target has been reached. + + + + + running + + The system has finished booting, and no units are in the failed state. + + + + + degraded + + The system has finished booting, but some units are in the failed state. + + + + + maintenance + + The system has finished booting, but it has been put in rescue or maintenance + mode. + + + + stopping + + The system is shutting down. + + -- 2.25.1