mirror of
https://git.proxmox.com/git/systemd
synced 2026-02-05 01:54:37 +00:00
This commit was created using the following commands and then fixing up debian/patches/series manually. $ git config diff.renames false $ git rebase --onto debian/208-5 v208 stable/v208-stable $ git checkout -b patch-queue/experimental HEAD $ gbp-pq export --no-patch-numbers $ git add --ignore-removal debian/patches/
93 lines
3.9 KiB
Diff
93 lines
3.9 KiB
Diff
From: =?utf-8?q?Zbigniew_J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
|
Date: Sun, 8 Dec 2013 18:56:16 -0500
|
|
Subject: man: document 'is-enabled' output
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=953077
|
|
(cherry picked from commit 171754aa4ae37a6ab626878256f7b664da78ef55)
|
|
---
|
|
man/systemctl.xml | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++-----
|
|
1 file changed, 59 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/man/systemctl.xml b/man/systemctl.xml
|
|
index 166282c..b4bc15d 100644
|
|
--- a/man/systemctl.xml
|
|
+++ b/man/systemctl.xml
|
|
@@ -437,7 +437,7 @@ systemctl start foo
|
|
|
|
<listitem>
|
|
<para>When used with <command>enable</command>,
|
|
- <command>disable</command>, <command>is-enabled</command>
|
|
+ <command>disable</command>,
|
|
(and related commands), make changes only temporarily, so
|
|
that they are lost on the next reboot. This will have the
|
|
effect that changes are not made in subdirectories of
|
|
@@ -885,10 +885,64 @@ kobject-uevent 1 systemd-udevd-kernel.socket systemd-udevd.service
|
|
|
|
<listitem>
|
|
<para>Checks whether any of the specified unit files are
|
|
- enabled (as with <command>enable</command>). Returns an exit
|
|
- code of 0 if at least one is enabled, non-zero
|
|
- otherwise. Prints the current enable status. To suppress
|
|
- this output, use <option>--quiet</option>.</para>
|
|
+ enabled (as with <command>enable</command>). Returns an
|
|
+ exit code of 0 if at least one is enabled, non-zero
|
|
+ otherwise. Prints the current enable status (see table).
|
|
+ To suppress this output, use <option>--quiet</option>.
|
|
+ </para>
|
|
+
|
|
+ <table>
|
|
+ <title>
|
|
+ <command>is-enabled</command> output
|
|
+ </title>
|
|
+
|
|
+ <tgroup cols='3'>
|
|
+ <thead>
|
|
+ <row>
|
|
+ <entry>Printed string</entry>
|
|
+ <entry>Meaning</entry>
|
|
+ <entry>Return value</entry>
|
|
+ </row>
|
|
+ </thead>
|
|
+ <tbody>
|
|
+ <row>
|
|
+ <entry><literal>enabled</literal></entry>
|
|
+ <entry morerows='1'>Enabled through a symlink in <filename>.wants</filename> directory (permanently or just in <filename>/run</filename>)</entry>
|
|
+ <entry morerows='1'>0</entry>
|
|
+ </row>
|
|
+ <row>
|
|
+ <entry><literal>enabled-runtime</literal></entry>
|
|
+ </row>
|
|
+ <row>
|
|
+ <entry><literal>linked</literal></entry>
|
|
+ <entry morerows='1'>Made available through a symlink to the unit file (permanently or just in <filename>/run</filename>)</entry>
|
|
+ <entry morerows='1'>1</entry>
|
|
+ </row>
|
|
+ <row>
|
|
+ <entry><literal>linked-runtime</literal></entry>
|
|
+ </row>
|
|
+ <row>
|
|
+ <entry><literal>masked</literal></entry>
|
|
+ <entry morerows='1'>Disabled entirely (permanently or just in <filename>/run</filename>)</entry>
|
|
+ <entry morerows='1'>1</entry>
|
|
+ </row>
|
|
+ <row>
|
|
+ <entry><literal>masked-runtime</literal></entry>
|
|
+ </row>
|
|
+ <row>
|
|
+ <entry><literal>static</literal></entry>
|
|
+ <entry>Unit is not enabled, but has no provisions for enabling in [Install] section</entry>
|
|
+ <entry>1</entry>
|
|
+ </row>
|
|
+ <row>
|
|
+ <entry><literal>disabled</literal></entry>
|
|
+ <entry>Unit is not enabled</entry>
|
|
+ <entry>1</entry>
|
|
+ </row>
|
|
+ </tbody>
|
|
+ </tgroup>
|
|
+ </table>
|
|
+
|
|
</listitem>
|
|
</varlistentry>
|
|
|