chiark / gitweb /
systemctl: add add-wants and add-requires verbs
[elogind.git] / man / systemctl.xml
1 <?xml version='1.0'?> <!--*-nxml-*-->
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5 <!--
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 -->
23
24 <refentry id="systemctl"
25           xmlns:xi="http://www.w3.org/2001/XInclude">
26
27   <refentryinfo>
28     <title>systemctl</title>
29     <productname>systemd</productname>
30
31     <authorgroup>
32       <author>
33         <contrib>Developer</contrib>
34         <firstname>Lennart</firstname>
35         <surname>Poettering</surname>
36         <email>lennart@poettering.net</email>
37       </author>
38     </authorgroup>
39   </refentryinfo>
40
41   <refmeta>
42     <refentrytitle>systemctl</refentrytitle>
43     <manvolnum>1</manvolnum>
44   </refmeta>
45
46   <refnamediv>
47     <refname>systemctl</refname>
48     <refpurpose>Control the systemd system and service manager</refpurpose>
49   </refnamediv>
50
51   <refsynopsisdiv>
52     <cmdsynopsis>
53       <command>systemctl</command>
54       <arg choice="opt" rep="repeat">OPTIONS</arg>
55       <arg choice="plain">COMMAND</arg>
56       <arg choice="opt" rep="repeat">NAME</arg>
57     </cmdsynopsis>
58   </refsynopsisdiv>
59
60   <refsect1>
61     <title>Description</title>
62
63     <para><command>systemctl</command> may be used to introspect and
64     control the state of the <literal>systemd</literal> system and
65     service manager. Please refer to
66     <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>
67     for an introduction into the basic concepts and functionality this
68     tool manages.</para>
69   </refsect1>
70
71   <refsect1>
72     <title>Options</title>
73
74     <para>The following options are understood:</para>
75
76     <variablelist>
77       <varlistentry>
78         <term><option>-t</option></term>
79         <term><option>--type=</option></term>
80
81         <listitem>
82           <para>The argument should be a comma-separated list of unit
83           types such as <option>service</option> and
84           <option>socket</option>.
85           </para>
86
87           <para>If one of the arguments is a unit type, when listing
88           units, limit display to certain unit types. Otherwise, units
89           of all types will be shown.</para>
90
91           <para>As a special case, if one of the arguments is
92           <option>help</option>, a list of allowed values will be
93           printed and the program will exit.</para>
94         </listitem>
95       </varlistentry>
96
97       <varlistentry>
98         <term><option>--state=</option></term>
99
100         <listitem>
101         <para>The argument should be a comma-separated list of unit LOAD,
102         SUB, or ACTIVE states. When listing units, show only those
103         in specified states.</para>
104         </listitem>
105       </varlistentry>
106
107       <varlistentry>
108         <term><option>-p</option></term>
109         <term><option>--property=</option></term>
110
111         <listitem>
112           <para>When showing unit/job/manager properties with the
113           <command>show</command> command, limit display to certain
114           properties as specified as argument. If not specified, all
115           set properties are shown. The argument should be a
116           comma-separated list of property names, such as
117           <literal>MainPID</literal>. If specified more than once, all
118           properties with the specified names are shown.</para>
119         </listitem>
120       </varlistentry>
121
122       <varlistentry>
123         <term><option>-a</option></term>
124         <term><option>--all</option></term>
125
126         <listitem>
127           <para>When listing units, show all loaded units, regardless
128           of their state, including inactive units. When showing
129           unit/job/manager properties, show all properties regardless
130           whether they are set or not.</para>
131           <para>To list all units installed on the system, use the
132           <command>list-unit-files</command> command instead.</para>
133         </listitem>
134       </varlistentry>
135
136       <varlistentry>
137         <term><option>-r</option></term>
138         <term><option>--recursive</option></term>
139
140         <listitem>
141           <para>When listing units, also show units of local
142           containers. Units of local containers will be prefixed with
143           the container name, separated by a single colon character
144           (<literal>:</literal>).</para>
145         </listitem>
146       </varlistentry>
147
148       <varlistentry>
149         <term><option>--reverse</option></term>
150
151         <listitem>
152           <para>Show reverse dependencies between units with
153           <command>list-dependencies</command>, i.e. units with
154           dependencies of type <varname>Wants=</varname> or
155           <varname>Requires=</varname> on the given unit.
156           </para>
157         </listitem>
158       </varlistentry>
159
160       <varlistentry>
161         <term><option>--after</option></term>
162
163         <listitem>
164           <para>With <command>list-dependencies</command>, show the
165           units that are ordered before the specified unit. In other
166           words, list the units that are in the <varname>After=</varname>
167           directive of the specified unit, have the specified unit in
168           their <varname>Before=</varname> directive, or are otherwise
169           implicit dependencies of the specified unit.</para>
170         </listitem>
171       </varlistentry>
172
173       <varlistentry>
174         <term><option>--before</option></term>
175
176         <listitem>
177           <para>With <command>list-dependencies</command>, show the
178           units that are ordered after the specified unit. In other
179           words, list the units that are in the <varname>Before=</varname>
180           directive of the specified unit, have the specified unit in
181           their <varname>After=</varname> directive, or otherwise depend
182           on the specified unit.</para>
183         </listitem>
184       </varlistentry>
185
186       <varlistentry>
187         <term><option>-l</option></term>
188         <term><option>--full</option></term>
189
190         <listitem>
191           <para>Do not ellipsize unit names, process tree entries,
192           journal output, or truncate unit descriptions in the output
193           of <command>status</command>, <command>list-units</command>,
194           <command>list-jobs</command>, and
195           <command>list-timers</command>.</para>
196         </listitem>
197       </varlistentry>
198
199       <varlistentry>
200         <term><option>--show-types</option></term>
201
202         <listitem>
203           <para>When showing sockets, show the type of the socket.</para>
204         </listitem>
205       </varlistentry>
206
207       <varlistentry>
208         <term><option>--job-mode=</option></term>
209
210         <listitem>
211         <para>When queuing a new job, this option controls how to deal with
212         already queued jobs. It takes one of <literal>fail</literal>,
213         <literal>replace</literal>,
214         <literal>replace-irreversibly</literal>,
215         <literal>isolate</literal>,
216         <literal>ignore-dependencies</literal>,
217         <literal>ignore-requirements</literal> or
218         <literal>flush</literal>. Defaults to
219         <literal>replace</literal>, except when the
220         <command>isolate</command> command is used which implies the
221         <literal>isolate</literal> job mode.</para>
222
223         <para>If <literal>fail</literal> is specified and a requested
224         operation conflicts with a pending job (more specifically:
225         causes an already pending start job to be reversed into a stop
226         job or vice versa), cause the operation to fail.</para>
227
228         <para>If <literal>replace</literal> (the default) is
229         specified, any conflicting pending job will be replaced, as
230         necessary.</para>
231
232         <para>If <literal>replace-irreversibly</literal> is specified,
233         operate like <literal>replace</literal>, but also mark the new
234         jobs as irreversible. This prevents future conflicting
235         transactions from replacing these jobs (or even being enqueued
236         while the irreversible jobs are still pending). Irreversible
237         jobs can still be cancelled using the <command>cancel</command>
238         command.</para>
239
240         <para><literal>isolate</literal> is only valid for start
241         operations and causes all other units to be stopped when the
242         specified unit is started. This mode is always used when the
243         <command>isolate</command> command is used.</para>
244
245         <para><literal>flush</literal> will cause all queued jobs to
246         be canceled when the new job is enqueued.</para>
247
248         <para>If <literal>ignore-dependencies</literal> is specified,
249         then all unit dependencies are ignored for this new job and
250         the operation is executed immediately. If passed, no required
251         units of the unit passed will be pulled in, and no ordering
252         dependencies will be honored. This is mostly a debugging and
253         rescue tool for the administrator and should not be used by
254         applications.</para>
255
256         <para><literal>ignore-requirements</literal> is similar to
257         <literal>ignore-dependencies</literal>, but only causes the
258         requirement dependencies to be ignored, the ordering
259         dependencies will still be honoured.</para>
260         </listitem>
261
262       </varlistentry>
263
264       <varlistentry>
265         <term><option>-i</option></term>
266         <term><option>--ignore-inhibitors</option></term>
267
268         <listitem>
269           <para>When system shutdown or a sleep state is requested,
270           ignore inhibitor locks. Applications can establish inhibitor
271           locks to avoid that certain important operations (such as CD
272           burning or suchlike) are interrupted by system shutdown or a
273           sleep state. Any user may take these locks and privileged
274           users may override these locks. If any locks are taken,
275           shutdown and sleep state requests will normally fail
276           (regardless of whether privileged or not) and a list of active locks
277           is printed. However, if <option>--ignore-inhibitors</option>
278           is specified, the locks are ignored and not printed, and the
279           operation attempted anyway, possibly requiring additional
280           privileges.</para>
281         </listitem>
282       </varlistentry>
283
284       <varlistentry>
285         <term><option>-q</option></term>
286         <term><option>--quiet</option></term>
287
288         <listitem>
289           <para>Suppress output to standard output in
290           <command>snapshot</command>,
291           <command>is-active</command>,
292           <command>is-failed</command>,
293           <command>is-enabled</command>,
294           <command>is-system-running</command>,
295           <command>enable</command> and
296         <command>disable</command>.</para>
297         </listitem>
298       </varlistentry>
299
300       <varlistentry>
301         <term><option>--no-block</option></term>
302
303         <listitem>
304           <para>Do not synchronously wait for the requested operation
305           to finish. If this is not specified, the job will be
306           verified, enqueued and <command>systemctl</command> will
307           wait until it is completed. By passing this argument, it is
308           only verified and enqueued.</para>
309         </listitem>
310       </varlistentry>
311
312       <varlistentry>
313         <term><option>--no-legend</option></term>
314
315         <listitem>
316           <para>Do not print the legend, i.e. the column headers and
317           the footer with hints.</para>
318         </listitem>
319       </varlistentry>
320
321       <xi:include href="user-system-options.xml" xpointer="user" />
322       <xi:include href="user-system-options.xml" xpointer="system" />
323
324       <varlistentry>
325         <term><option>--no-wall</option></term>
326
327         <listitem>
328           <para>Do not send wall message before halt, power-off,
329           reboot.</para>
330         </listitem>
331       </varlistentry>
332
333       <varlistentry>
334         <term><option>--global</option></term>
335
336         <listitem>
337           <para>When used with <command>enable</command> and
338           <command>disable</command>, operate on the global user
339           configuration directory, thus enabling or disabling a unit
340           file globally for all future logins of all users.</para>
341         </listitem>
342       </varlistentry>
343
344       <varlistentry>
345         <term><option>--no-reload</option></term>
346
347         <listitem>
348           <para>When used with <command>enable</command> and
349           <command>disable</command>, do not implicitly reload daemon
350           configuration after executing the changes.</para>
351         </listitem>
352       </varlistentry>
353
354       <varlistentry>
355         <term><option>--no-ask-password</option></term>
356
357         <listitem>
358           <para>When used with <command>start</command> and related
359           commands, disables asking for passwords. Background services
360           may require input of a password or passphrase string, for
361           example to unlock system hard disks or cryptographic
362           certificates. Unless this option is specified and the
363           command is invoked from a terminal,
364           <command>systemctl</command> will query the user on the
365           terminal for the necessary secrets. Use this option to
366           switch this behavior off. In this case, the password must be
367           supplied by some other means (for example graphical password
368           agents) or the service might fail. This also disables
369           querying the user for authentication for privileged
370           operations.</para>
371         </listitem>
372
373       </varlistentry>
374
375       <varlistentry>
376         <term><option>--kill-who=</option></term>
377
378         <listitem>
379           <para>When used with <command>kill</command>, choose which
380           processes to send a signal to. Must be one of
381           <option>main</option>, <option>control</option> or
382           <option>all</option> to select whether to kill only the main
383           process, the control process or all processes of the
384           unit. The main process of the unit is the one that defines
385           the life-time of it. A control process of a unit is one that
386           is invoked by the manager to induce state changes of it. For
387           example, all processes started due to the
388           <varname>ExecStartPre=</varname>,
389           <varname>ExecStop=</varname> or
390           <varname>ExecReload=</varname> settings of service units are
391           control processes. Note that there is only one control
392           process per unit at a time, as only one state change is
393           executed at a time. For services of type
394           <varname>Type=forking</varname>, the initial process started
395           by the manager for <varname>ExecStart=</varname> is a
396           control process, while the process ultimately forked off by
397           that one is then considered the main process of the unit (if
398           it can be determined). This is different for service units
399           of other types, where the process forked off by the manager
400           for <varname>ExecStart=</varname> is always the main process
401           itself. A service unit consists of zero or one main process,
402           zero or one control process plus any number of additional
403           processes. Not all unit types manage processes of these
404           types however. For example, for mount units, control processes
405           are defined (which are the invocations of
406           <filename>/usr/bin/mount</filename> and
407           <filename>/usr/bin/umount</filename>), but no main process
408           is defined. If omitted, defaults to
409           <option>all</option>.</para>
410         </listitem>
411
412       </varlistentry>
413
414       <varlistentry>
415         <term><option>-s</option></term>
416         <term><option>--signal=</option></term>
417
418         <listitem>
419           <para>When used with <command>kill</command>, choose which
420           signal to send to selected processes. Must be one of the
421           well known signal specifiers such as <constant>SIGTERM</constant>, <constant>SIGINT</constant> or
422           <constant>SIGSTOP</constant>. If omitted, defaults to
423           <option>SIGTERM</option>.</para>
424         </listitem>
425       </varlistentry>
426
427       <varlistentry>
428         <term><option>-f</option></term>
429         <term><option>--force</option></term>
430
431         <listitem>
432           <para>When used with <command>enable</command>, overwrite
433           any existing conflicting symlinks.</para>
434
435           <para>When used with <command>halt</command>,
436           <command>poweroff</command>, <command>reboot</command> or
437           <command>kexec</command>, execute the selected operation
438           without shutting down all units. However, all processes will
439           be killed forcibly and all file systems are unmounted or
440           remounted read-only. This is hence a drastic but relatively
441           safe option to request an immediate reboot. If
442           <option>--force</option> is specified twice for these
443           operations, they will be executed immediately without
444           terminating any processes or unmounting any file
445           systems. Warning: specifying <option>--force</option> twice
446           with any of these operations might result in data
447           loss.</para>
448         </listitem>
449       </varlistentry>
450
451       <varlistentry>
452         <term><option>--root=</option></term>
453
454         <listitem>
455           <para>When used with
456           <command>enable</command>/<command>disable</command>/<command>is-enabled</command>
457           (and related commands), use alternative root path when
458           looking for unit files.</para>
459         </listitem>
460
461       </varlistentry>
462
463       <varlistentry>
464         <term><option>--runtime</option></term>
465
466         <listitem>
467           <para>When used with <command>enable</command>,
468           <command>disable</command>,
469           (and related commands), make changes only temporarily, so
470           that they are lost on the next reboot. This will have the
471           effect that changes are not made in subdirectories of
472           <filename>/etc</filename> but in <filename>/run</filename>,
473           with identical immediate effects, however, since the latter
474           is lost on reboot, the changes are lost too.</para>
475
476           <para>Similarly, when used with
477           <command>set-property</command>, make changes only
478           temporarily, so that they are lost on the next
479           reboot.</para>
480         </listitem>
481       </varlistentry>
482
483       <varlistentry>
484         <term><option>--preset-mode=</option></term>
485
486         <listitem>
487           <para>Takes one of <literal>full</literal> (the default),
488           <literal>enable-only</literal>,
489           <literal>disable-only</literal>. When used with the
490           <command>preset</command> or <command>preset-all</command>
491           commands, controls whether units shall be disabled and
492           enabled according to the preset rules, or only enabled, or
493           only disabled.</para>
494         </listitem>
495       </varlistentry>
496
497       <varlistentry>
498         <term><option>-n</option></term>
499         <term><option>--lines=</option></term>
500
501         <listitem>
502           <para>When used with <command>status</command>, controls the
503           number of journal lines to show, counting from the most
504           recent ones. Takes a positive integer argument. Defaults to
505           10.</para>
506         </listitem>
507       </varlistentry>
508
509       <varlistentry>
510         <term><option>-o</option></term>
511         <term><option>--output=</option></term>
512
513         <listitem>
514           <para>When used with <command>status</command>, controls the
515           formatting of the journal entries that are shown. For the
516           available choices, see
517           <citerefentry><refentrytitle>journalctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
518           Defaults to <literal>short</literal>.</para>
519         </listitem>
520       </varlistentry>
521
522       <varlistentry>
523         <term><option>--plain</option></term>
524
525         <listitem>
526           <para>When used with <command>list-dependencies</command>,
527           the output is printed as a list instead of a tree.</para>
528         </listitem>
529       </varlistentry>
530
531       <xi:include href="user-system-options.xml" xpointer="host" />
532       <xi:include href="user-system-options.xml" xpointer="machine" />
533
534       <xi:include href="standard-options.xml" xpointer="help" />
535       <xi:include href="standard-options.xml" xpointer="version" />
536       <xi:include href="standard-options.xml" xpointer="no-pager" />
537     </variablelist>
538   </refsect1>
539
540   <refsect1>
541     <title>Commands</title>
542
543     <para>The following commands are understood:</para>
544
545     <refsect2>
546       <title>Unit Commands</title>
547
548       <variablelist>
549         <varlistentry>
550           <term><command>list-units <optional><replaceable>PATTERN</replaceable>...</optional></command></term>
551
552           <listitem>
553             <para>List known units (subject to limitations specified
554             with <option>-t</option>). If one or more
555             <replaceable>PATTERN</replaceable>s are specified, only
556             units matching one of them are shown.</para>
557
558             <para>This is the default command.</para>
559           </listitem>
560         </varlistentry>
561
562         <varlistentry>
563           <term><command>list-sockets <optional><replaceable>PATTERN</replaceable>...</optional></command></term>
564
565           <listitem>
566             <para>List socket units ordered by listening address.
567             If one or more <replaceable>PATTERN</replaceable>s are
568             specified, only socket units matching one of them are
569             shown. Produces output similar to
570             <programlisting>
571 LISTEN           UNIT                        ACTIVATES
572 /dev/initctl     systemd-initctl.socket      systemd-initctl.service
573 ...
574 [::]:22          sshd.socket                 sshd.service
575 kobject-uevent 1 systemd-udevd-kernel.socket systemd-udevd.service
576
577 5 sockets listed.</programlisting>
578             Note: because the addresses might contains spaces, this output
579             is not suitable for programmatic consumption.
580             </para>
581
582             <para>See also the options <option>--show-types</option>,
583             <option>--all</option>, and <option>--failed</option>.</para>
584           </listitem>
585         </varlistentry>
586
587         <varlistentry>
588           <term><command>list-timers <optional><replaceable>PATTERN</replaceable>...</optional></command></term>
589
590           <listitem>
591             <para>List timer units ordered by the time they elapse
592             next. If one or more <replaceable>PATTERN</replaceable>s
593             are specified, only units matching one of them are shown.
594             </para>
595
596             <para>See also the options <option>--all</option> and
597             <option>--failed</option>.</para>
598           </listitem>
599         </varlistentry>
600
601         <varlistentry>
602           <term><command>start <replaceable>PATTERN</replaceable>...</command></term>
603
604           <listitem>
605             <para>Start (activate) one or more units specified on the
606             command line.</para>
607
608             <para>Note that glob patterns operate on a list of currently
609             loaded units. Units which are not active and are not in a
610             failed state usually are not loaded, and would not be
611             matched by any pattern. In addition, in case of
612             instantiated units, systemd is often unaware of the
613             instance name until the instance has been started. Therefore,
614             using glob patterns with <command>start</command>
615             has limited usefulness.</para>
616           </listitem>
617         </varlistentry>
618         <varlistentry>
619           <term><command>stop <replaceable>PATTERN</replaceable>...</command></term>
620
621           <listitem>
622             <para>Stop (deactivate) one or more units specified on the
623             command line.</para>
624           </listitem>
625         </varlistentry>
626         <varlistentry>
627           <term><command>reload <replaceable>PATTERN</replaceable>...</command></term>
628
629           <listitem>
630             <para>Asks all units listed on the command line to reload
631             their configuration. Note that this will reload the
632             service-specific configuration, not the unit configuration
633             file of systemd. If you want systemd to reload the
634             configuration file of a unit, use the
635             <command>daemon-reload</command> command. In other words:
636             for the example case of Apache, this will reload Apache's
637             <filename>httpd.conf</filename> in the web server, not the
638             <filename>apache.service</filename> systemd unit
639             file.</para>
640
641             <para>This command should not be confused with the
642             <command>daemon-reload</command> command.</para>
643           </listitem>
644
645         </varlistentry>
646         <varlistentry>
647           <term><command>restart <replaceable>PATTERN</replaceable>...</command></term>
648
649           <listitem>
650             <para>Restart one or more units specified on the command
651             line. If the units are not running yet, they will be
652             started.</para>
653           </listitem>
654         </varlistentry>
655         <varlistentry>
656           <term><command>try-restart <replaceable>PATTERN</replaceable>...</command></term>
657
658           <listitem>
659             <para>Restart one or more units specified on the command
660             line if the units are running. This does nothing if units are not
661             running.  Note that, for compatibility with Red Hat init
662             scripts, <command>condrestart</command> is equivalent to this
663             command.</para>
664           </listitem>
665         </varlistentry>
666         <varlistentry>
667           <term><command>reload-or-restart <replaceable>PATTERN</replaceable>...</command></term>
668
669           <listitem>
670             <para>Reload one or more units if they support it. If not,
671             restart them instead. If the units are not running yet, they
672             will be started.</para>
673           </listitem>
674         </varlistentry>
675         <varlistentry>
676           <term><command>reload-or-try-restart <replaceable>PATTERN</replaceable>...</command></term>
677
678           <listitem>
679             <para>Reload one or more units if they support it. If not,
680             restart them instead. This does nothing if the units are not
681             running. Note that, for compatibility with SysV init scripts,
682             <command>force-reload</command> is equivalent to this
683             command.</para>
684           </listitem>
685         </varlistentry>
686         <varlistentry>
687           <term><command>isolate <replaceable>NAME</replaceable></command></term>
688
689           <listitem>
690             <para>Start the unit specified on the command line and its
691             dependencies and stop all others.</para>
692
693             <para>This is similar to changing the runlevel in a
694             traditional init system. The <command>isolate</command>
695             command will immediately stop processes that are not enabled
696             in the new unit, possibly including the graphical
697             environment or terminal you are currently using.</para>
698
699             <para>Note that this is allowed only on units where
700             <option>AllowIsolate=</option> is enabled. See
701             <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
702             for details.</para>
703           </listitem>
704         </varlistentry>
705         <varlistentry>
706           <term><command>kill <replaceable>PATTERN</replaceable>...</command></term>
707
708           <listitem>
709             <para>Send a signal to one or more processes of the
710             unit. Use <option>--kill-who=</option> to select which
711             process to kill. Use <option>--signal=</option> to select
712             the signal to send.</para>
713           </listitem>
714         </varlistentry>
715         <varlistentry>
716           <term><command>is-active <replaceable>PATTERN</replaceable>...</command></term>
717
718           <listitem>
719             <para>Check whether any of the specified units are active
720             (i.e. running). Returns an exit code
721             <constant>0</constant> if at least one is active, or
722             non-zero otherwise. Unless <option>--quiet</option> is
723             specified, this will also print the current unit state to
724             standard output.</para>
725           </listitem>
726         </varlistentry>
727         <varlistentry>
728           <term><command>is-failed <replaceable>PATTERN</replaceable>...</command></term>
729
730           <listitem>
731             <para>Check whether any of the specified units are in a
732             "failed" state. Returns an exit code
733             <constant>0</constant> if at least one has failed,
734             non-zero otherwise. Unless <option>--quiet</option> is
735             specified, this will also print the current unit state to
736             standard output.</para>
737           </listitem>
738         </varlistentry>
739         <varlistentry>
740           <term><command>status</command> <optional><replaceable>PATTERN</replaceable>...|<replaceable>PID</replaceable>...]</optional></term>
741
742           <listitem>
743             <para>Show terse runtime status information about one or
744             more units, followed by most recent log data from the
745             journal. If no units are specified, show system status. If
746             combined with <option>--all</option>, also show the status of
747             all units (subject to limitations specified with
748             <option>-t</option>). If a PID is passed, show information
749             about the unit the process belongs to.</para>
750
751             <para>This function is intended to generate human-readable
752             output. If you are looking for computer-parsable output,
753             use <command>show</command> instead. By default this
754             function only shows 10 lines of output and ellipsizes
755             lines to fit in the terminal window. This can be changes
756             with <option>--lines</option> and <option>--full</option>,
757             see above. In addition, <command>journalctl
758             --unit=<replaceable>NAME</replaceable></command> or
759             <command>journalctl
760             --user-unit=<replaceable>NAME</replaceable></command> use
761             a similar filter for messages and might be more
762             convenient.
763             </para>
764           </listitem>
765         </varlistentry>
766         <varlistentry>
767           <term><command>show</command> <optional><replaceable>PATTERN</replaceable>...|<replaceable>JOB</replaceable>...</optional></term>
768
769           <listitem>
770             <para>Show properties of one or more units, jobs, or the
771             manager itself. If no argument is specified, properties of
772             the manager will be shown. If a unit name is specified,
773             properties of the unit is shown, and if a job id is
774             specified, properties of the job is shown. By default, empty
775             properties are suppressed. Use <option>--all</option> to
776             show those too. To select specific properties to show, use
777             <option>--property=</option>. This command is intended to be
778             used whenever computer-parsable output is required. Use
779             <command>status</command> if you are looking for formatted
780             human-readable output.</para>
781           </listitem>
782         </varlistentry>
783         <varlistentry>
784           <term><command>cat <replaceable>PATTERN</replaceable>...</command></term>
785
786           <listitem>
787             <para>Show backing files of one or more units. Prints the
788             "fragment" and "drop-ins" (source files) of units. Each
789             file is preceded by a comment which includes the file
790             name.</para>
791           </listitem>
792         </varlistentry>
793         <varlistentry>
794           <term><command>set-property <replaceable>NAME</replaceable> <replaceable>ASSIGNMENT</replaceable>...</command></term>
795
796           <listitem>
797             <para>Set the specified unit properties at runtime where
798             this is supported. This allows changing configuration
799             parameter properties such as resource control settings at
800             runtime. Not all properties may be changed at runtime, but
801             many resource control settings (primarily those in
802             <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>)
803             may. The changes are applied instantly, and stored on disk
804             for future boots, unless <option>--runtime</option> is
805             passed, in which case the settings only apply until the
806             next reboot. The syntax of the property assignment follows
807             closely the syntax of assignments in unit files.</para>
808
809             <para>Example: <command>systemctl set-property foobar.service CPUShares=777</command></para>
810
811             <para>Note that this command allows changing multiple
812             properties at the same time, which is preferable over
813             setting them individually. Like unit file configuration
814             settings, assigning the empty list to list parameters will
815             reset the list.</para>
816           </listitem>
817         </varlistentry>
818
819         <varlistentry>
820           <term><command>help <replaceable>PATTERN</replaceable>...|<replaceable>PID</replaceable>...</command></term>
821
822           <listitem>
823             <para>Show manual pages for one or more units, if
824             available. If a PID is given, the manual pages for the unit
825             the process belongs to are shown.</para>
826           </listitem>
827         </varlistentry>
828
829         <varlistentry>
830           <term><command>reset-failed [<replaceable>PATTERN</replaceable>...]</command></term>
831
832           <listitem>
833             <para>Reset the <literal>failed</literal> state of the
834             specified units, or if no unit name is passed, reset the state of all
835             units. When a unit fails in some way (i.e. process exiting
836             with non-zero error code, terminating abnormally or timing
837             out), it will automatically enter the
838             <literal>failed</literal> state and its exit code and status
839             is recorded for introspection by the administrator until the
840             service is restarted or reset with this command.</para>
841           </listitem>
842         </varlistentry>
843
844         <varlistentry>
845           <term><command>list-dependencies <replaceable>NAME</replaceable></command></term>
846
847           <listitem>
848             <para>Shows required and wanted units of the specified
849             unit. If no unit is specified,
850             <filename>default.target</filename> is implied. Target units
851             are recursively expanded.  When <option>--all</option> is
852             passed, all other units are recursively expanded as
853             well.</para>
854           </listitem>
855         </varlistentry>
856       </variablelist>
857     </refsect2>
858
859     <refsect2>
860       <title>Unit File Commands</title>
861
862       <variablelist>
863         <varlistentry>
864           <term><command>list-unit-files <optional><replaceable>PATTERN...</replaceable></optional></command></term>
865
866           <listitem>
867             <para>List installed unit files. If one or more
868             <replaceable>PATTERN</replaceable>s are specified, only
869             units whose filename (just the last component of the path)
870             matches one of them are shown.</para>
871           </listitem>
872         </varlistentry>
873
874         <varlistentry>
875           <term><command>enable <replaceable>NAME</replaceable>...</command></term>
876
877           <listitem>
878             <para>Enable one or more unit files or unit file instances,
879             as specified on the command line. This will create a number
880             of symlinks as encoded in the <literal>[Install]</literal>
881             sections of the unit files. After the symlinks have been
882             created, the systemd configuration is reloaded (in a way that
883             is equivalent to <command>daemon-reload</command>) to ensure
884             the changes are taken into account immediately. Note that
885             this does <emphasis>not</emphasis> have the effect of also
886             starting any of the units being enabled. If this
887             is desired, a separate <command>start</command> command must
888             be invoked for the unit. Also note that in case of instance
889             enablement, symlinks named the same as instances are created in
890             the install location, however they all point to the same
891             template unit file.</para>
892
893             <para>This command will print the actions executed. This
894             output may be suppressed by passing <option>--quiet</option>.
895             </para>
896
897             <para>Note that this operation creates only the suggested
898             symlinks for the units. While this command is the
899             recommended way to manipulate the unit configuration
900             directory, the administrator is free to make additional
901             changes manually by placing or removing symlinks in the
902             directory. This is particularly useful to create
903             configurations that deviate from the suggested default
904             installation. In this case, the administrator must make sure
905             to invoke <command>daemon-reload</command> manually as
906             necessary to ensure the changes are taken into account.
907             </para>
908
909             <para>Enabling units should not be confused with starting
910             (activating) units, as done by the <command>start</command>
911             command. Enabling and starting units is orthogonal: units
912             may be enabled without being started and started without
913             being enabled. Enabling simply hooks the unit into various
914             suggested places (for example, so that the unit is
915             automatically started on boot or when a particular kind of
916             hardware is plugged in). Starting actually spawns the daemon
917             process (in case of service units), or binds the socket (in
918             case of socket units), and so on.</para>
919
920             <para>Depending on whether <option>--system</option>,
921             <option>--user</option>, <option>--runtime</option>,
922             or <option>--global</option> is specified, this enables the unit
923             for the system, for the calling user only, for only this boot of
924             the system, or for all future logins of all users, or only this
925             boot.  Note that in the last case, no systemd daemon
926             configuration is reloaded.</para>
927           </listitem>
928         </varlistentry>
929
930         <varlistentry>
931           <term><command>disable <replaceable>NAME</replaceable>...</command></term>
932
933           <listitem>
934             <para>Disables one or more units. This removes all symlinks
935             to the specified unit files from the unit configuration
936             directory, and hence undoes the changes made by
937             <command>enable</command>. Note however that this removes
938             all symlinks to the unit files (i.e. including manual
939             additions), not just those actually created by
940             <command>enable</command>. This call implicitly reloads the
941             systemd daemon configuration after completing the disabling
942             of the units. Note that this command does not implicitly
943             stop the units that are being disabled. If this is desired,
944             an additional <command>stop</command> command should be
945             executed afterwards.</para>
946
947             <para>This command will print the actions executed. This
948             output may be suppressed by passing <option>--quiet</option>.
949             </para>
950
951             <para>This command honors <option>--system</option>,
952             <option>--user</option>, <option>--runtime</option> and
953             <option>--global</option> in a similar way as
954             <command>enable</command>.</para>
955           </listitem>
956         </varlistentry>
957
958         <varlistentry>
959           <term><command>is-enabled <replaceable>NAME</replaceable>...</command></term>
960
961           <listitem>
962             <para>Checks whether any of the specified unit files are
963             enabled (as with <command>enable</command>). Returns an
964             exit code of 0 if at least one is enabled, non-zero
965             otherwise. Prints the current enable status (see table).
966             To suppress this output, use <option>--quiet</option>.
967             </para>
968
969             <table>
970               <title>
971                 <command>is-enabled</command> output
972               </title>
973
974               <tgroup cols='3'>
975                 <thead>
976                   <row>
977                     <entry>Printed string</entry>
978                     <entry>Meaning</entry>
979                     <entry>Return value</entry>
980                   </row>
981                 </thead>
982                 <tbody>
983                   <row>
984                     <entry><literal>enabled</literal></entry>
985                     <entry morerows='1'>Enabled through a symlink in <filename>.wants</filename> directory (permanently or just in <filename>/run</filename>)</entry>
986                     <entry morerows='1'>0</entry>
987                   </row>
988                   <row>
989                     <entry><literal>enabled-runtime</literal></entry>
990                   </row>
991                   <row>
992                     <entry><literal>linked</literal></entry>
993                     <entry morerows='1'>Made available through a symlink to the unit file (permanently or just in <filename>/run</filename>)</entry>
994                     <entry morerows='1'>1</entry>
995                   </row>
996                   <row>
997                     <entry><literal>linked-runtime</literal></entry>
998                   </row>
999                   <row>
1000                     <entry><literal>masked</literal></entry>
1001                     <entry morerows='1'>Disabled entirely (permanently or just in <filename>/run</filename>)</entry>
1002                     <entry morerows='1'>1</entry>
1003                   </row>
1004                   <row>
1005                     <entry><literal>masked-runtime</literal></entry>
1006                   </row>
1007                   <row>
1008                     <entry><literal>static</literal></entry>
1009                     <entry>Unit is not enabled, but has no provisions for enabling in [Install] section</entry>
1010                     <entry>0</entry>
1011                   </row>
1012                   <row>
1013                     <entry><literal>disabled</literal></entry>
1014                     <entry>Unit is not enabled</entry>
1015                     <entry>1</entry>
1016                   </row>
1017                 </tbody>
1018               </tgroup>
1019             </table>
1020
1021           </listitem>
1022         </varlistentry>
1023
1024         <varlistentry>
1025           <term><command>reenable <replaceable>NAME</replaceable>...</command></term>
1026
1027           <listitem>
1028             <para>Reenable one or more unit files, as specified on the
1029             command line. This is a combination of
1030             <command>disable</command> and <command>enable</command> and
1031             is useful to reset the symlinks a unit is enabled with to
1032             the defaults configured in the <literal>[Install]</literal>
1033             section of the unit file.</para>
1034           </listitem>
1035         </varlistentry>
1036
1037         <varlistentry>
1038           <term><command>preset <replaceable>NAME</replaceable>...</command></term>
1039
1040           <listitem>
1041             <para>Reset one or more unit files, as specified on the
1042             command line, to the defaults configured in the preset
1043             policy files. This has the same effect as
1044             <command>disable</command> or <command>enable</command>,
1045             depending how the unit is listed in the preset files.</para>
1046
1047             <para>Use <option>--preset-mode=</option> to control
1048             whether units shall be enabled and disabled, or only
1049             enabled, or only disabled.</para>
1050
1051             <para>For more information on the preset policy format,
1052             see
1053             <citerefentry><refentrytitle>systemd.preset</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
1054             For more information on the concept of presets, please
1055             consult the <ulink
1056             url="http://freedesktop.org/wiki/Software/systemd/Preset">Preset</ulink>
1057             document.</para>
1058           </listitem>
1059         </varlistentry>
1060
1061         <varlistentry>
1062           <term><command>preset-all</command></term>
1063
1064           <listitem>
1065             <para>Resets all installed unit files to the defaults
1066             configured in the preset policy file (see above).</para>
1067
1068             <para>Use <option>--preset-mode=</option> to control
1069             whether units shall be enabled and disabled, or only
1070             enabled, or only disabled.</para>
1071           </listitem>
1072         </varlistentry>
1073
1074         <varlistentry>
1075           <term><command>mask <replaceable>NAME</replaceable>...</command></term>
1076
1077           <listitem>
1078             <para>Mask one or more unit files, as specified on the
1079             command line. This will link these units to
1080             <filename>/dev/null</filename>, making it impossible to
1081             start them. This is a stronger version of
1082             <command>disable</command>, since it prohibits all kinds of
1083             activation of the unit, including manual activation. Use
1084             this option with care. This honors the
1085             <option>--runtime</option> option to only mask temporarily
1086             until the next reboot of the system.</para>
1087           </listitem>
1088         </varlistentry>
1089
1090         <varlistentry>
1091           <term><command>unmask <replaceable>NAME</replaceable>...</command></term>
1092
1093           <listitem>
1094             <para>Unmask one or more unit files, as specified on the
1095             command line. This will undo the effect of
1096             <command>mask</command>.</para>
1097           </listitem>
1098         </varlistentry>
1099
1100         <varlistentry>
1101           <term><command>add-wants <replaceable>TARGET</replaceable>
1102           <replaceable>NAME</replaceable>...</command></term>
1103           <term><command>add-requires <replaceable>TARGET</replaceable>
1104           <replaceable>NAME</replaceable>...</command></term>
1105
1106           <listitem>
1107             <para>Adds <literal>Wants=</literal> resp. <literal>Requires=</literal>
1108             dependency to the specified <replaceable>TARGET</replaceable> for
1109             one or more units. </para>
1110
1111             <para>This command honors <option>--system</option>,
1112             <option>--user</option>, <option>--runtime</option> and
1113             <option>--global</option> in a similar way as
1114             <command>enable</command>.</para>
1115
1116           </listitem>
1117         </varlistentry>
1118
1119         <varlistentry>
1120           <term><command>link <replaceable>FILENAME</replaceable>...</command></term>
1121
1122           <listitem>
1123             <para>Link a unit file that is not in the unit file search
1124             paths into the unit file search path. This requires an
1125             absolute path to a unit file. The effect of this can be
1126             undone with <command>disable</command>. The effect of this
1127             command is that a unit file is available for
1128             <command>start</command> and other commands although it
1129             is not installed directly in the unit search path.</para>
1130           </listitem>
1131         </varlistentry>
1132
1133         <varlistentry>
1134           <term><command>get-default</command></term>
1135
1136           <listitem>
1137             <para>Get the default target specified
1138             via <filename>default.target</filename> link.</para>
1139           </listitem>
1140         </varlistentry>
1141
1142         <varlistentry>
1143           <term><command>set-default <replaceable>NAME</replaceable></command></term>
1144
1145           <listitem>
1146             <para>Set the default target to boot into. Command links
1147             <filename>default.target</filename> to the given unit.</para>
1148           </listitem>
1149         </varlistentry>
1150       </variablelist>
1151     </refsect2>
1152
1153     <refsect2>
1154       <title>Machine Commands</title>
1155
1156       <variablelist>
1157         <varlistentry>
1158           <term><command>list-machines <optional><replaceable>PATTERN</replaceable>...</optional></command></term>
1159
1160           <listitem>
1161             <para>List the host and all running local containers with
1162             their state. If one or more
1163             <replaceable>PATTERN</replaceable>s are specified, only
1164             containers matching one of them are shown.
1165             </para>
1166           </listitem>
1167         </varlistentry>
1168       </variablelist>
1169     </refsect2>
1170
1171     <refsect2>
1172       <title>Job Commands</title>
1173
1174       <variablelist>
1175         <varlistentry>
1176           <term><command>list-jobs <optional><replaceable>PATTERN...</replaceable></optional></command></term>
1177
1178           <listitem>
1179             <para>List jobs that are in progress. If one or more
1180             <replaceable>PATTERN</replaceable>s are specified, only
1181             jobs for units matching one of them are shown.</para>
1182           </listitem>
1183         </varlistentry>
1184         <varlistentry>
1185           <term><command>cancel <replaceable>JOB</replaceable>...</command></term>
1186
1187           <listitem>
1188             <para>Cancel one or more jobs specified on the command line
1189             by their numeric job IDs. If no job ID is specified, cancel
1190             all pending jobs.</para>
1191           </listitem>
1192         </varlistentry>
1193       </variablelist>
1194     </refsect2>
1195
1196     <refsect2>
1197       <title>Snapshot Commands</title>
1198
1199       <variablelist>
1200         <varlistentry>
1201           <term><command>snapshot <optional><replaceable>NAME</replaceable></optional></command></term>
1202
1203           <listitem>
1204             <para>Create a snapshot. If a snapshot name is specified,
1205             the new snapshot will be named after it. If none is
1206             specified, an automatic snapshot name is generated. In
1207             either case, the snapshot name used is printed to standard
1208             output, unless <option>--quiet</option> is specified.
1209             </para>
1210
1211             <para>A snapshot refers to a saved state of the systemd
1212             manager. It is implemented itself as a unit that is
1213             generated dynamically with this command and has dependencies
1214             on all units active at the time. At a later time, the user
1215             may return to this state by using the
1216             <command>isolate</command> command on the snapshot unit.
1217             </para>
1218
1219             <para>Snapshots are only useful for saving and restoring
1220             which units are running or are stopped, they do not
1221             save/restore any other state. Snapshots are dynamic and lost
1222             on reboot.</para>
1223           </listitem>
1224         </varlistentry>
1225         <varlistentry>
1226           <term><command>delete <replaceable>PATTERN</replaceable>...</command></term>
1227
1228           <listitem>
1229             <para>Remove a snapshot previously created with
1230             <command>snapshot</command>.</para>
1231           </listitem>
1232         </varlistentry>
1233       </variablelist>
1234     </refsect2>
1235
1236     <refsect2>
1237       <title>Environment Commands</title>
1238
1239       <variablelist>
1240         <varlistentry>
1241           <term><command>show-environment</command></term>
1242
1243           <listitem>
1244             <para>Dump the systemd manager environment block. The
1245             environment block will be dumped in straight-forward form
1246             suitable for sourcing into a shell script. This environment
1247             block will be passed to all processes the manager
1248             spawns.</para>
1249           </listitem>
1250         </varlistentry>
1251         <varlistentry>
1252           <term><command>set-environment <replaceable>VARIABLE=VALUE</replaceable>...</command></term>
1253
1254           <listitem>
1255             <para>Set one or more systemd manager environment variables,
1256             as specified on the command line.</para>
1257           </listitem>
1258         </varlistentry>
1259         <varlistentry>
1260           <term><command>unset-environment <replaceable>VARIABLE</replaceable>...</command></term>
1261
1262           <listitem>
1263             <para>Unset one or more systemd manager environment
1264             variables. If only a variable name is specified, it will be
1265             removed regardless of its value. If a variable and a value
1266             are specified, the variable is only removed if it has the
1267             specified value.</para>
1268           </listitem>
1269         </varlistentry>
1270         <varlistentry>
1271           <term><command>import-environment <replaceable>VARIABLE</replaceable>...</command></term>
1272
1273           <listitem>
1274             <para>Import all, one or more environment variables set on
1275             the client into the systemd manager environment block. If
1276             no arguments are passed, the entire environment block is
1277             imported. Otherwise, a list of one or more environment
1278             variable names should be passed, whose client-side values
1279             are then imported into the manager's environment
1280             block.</para>
1281           </listitem>
1282         </varlistentry>
1283       </variablelist>
1284     </refsect2>
1285
1286     <refsect2>
1287       <title>Manager Lifecycle Commands</title>
1288
1289       <variablelist>
1290         <varlistentry>
1291           <term><command>daemon-reload</command></term>
1292
1293           <listitem>
1294             <para>Reload systemd manager configuration. This will reload
1295             all unit files and recreate the entire dependency
1296             tree. While the daemon is being reloaded, all sockets systemd
1297             listens on behalf of user configuration will stay
1298             accessible.</para> <para>This command should not be confused
1299             with the <command>reload</command> command.</para>
1300           </listitem>
1301         </varlistentry>
1302         <varlistentry>
1303           <term><command>daemon-reexec</command></term>
1304
1305           <listitem>
1306             <para>Reexecute the systemd manager. This will serialize the
1307             manager state, reexecute the process and deserialize the
1308             state again. This command is of little use except for
1309             debugging and package upgrades. Sometimes, it might be
1310             helpful as a heavy-weight <command>daemon-reload</command>.
1311             While the daemon is being reexecuted, all sockets systemd listening
1312             on behalf of user configuration will stay accessible.
1313             </para>
1314           </listitem>
1315         </varlistentry>
1316       </variablelist>
1317     </refsect2>
1318
1319     <refsect2>
1320       <title>System Commands</title>
1321
1322       <variablelist>
1323         <varlistentry>
1324           <term><command>is-system-running</command></term>
1325
1326           <listitem>
1327             <para>Checks whether the system is running. This returns
1328             success when the system is fully up and running, meaning
1329             not in startup, shutdown or maintenance mode. Failure is
1330             returned otherwise. In addition, the current state is
1331             printed in a short string to standard output. Use
1332             <option>--quiet</option> to suppress output of this state
1333             string.</para>
1334           </listitem>
1335         </varlistentry>
1336
1337         <varlistentry>
1338           <term><command>default</command></term>
1339
1340           <listitem>
1341             <para>Enter default mode. This is mostly equivalent to
1342             <command>isolate default.target</command>.</para>
1343           </listitem>
1344         </varlistentry>
1345
1346         <varlistentry>
1347           <term><command>rescue</command></term>
1348
1349           <listitem>
1350             <para>Enter rescue mode. This is mostly equivalent to
1351             <command>isolate rescue.target</command>, but also prints a
1352             wall message to all users.</para>
1353           </listitem>
1354         </varlistentry>
1355         <varlistentry>
1356           <term><command>emergency</command></term>
1357
1358           <listitem>
1359             <para>Enter emergency mode. This is mostly equivalent to
1360             <command>isolate emergency.target</command>, but also prints
1361             a wall message to all users.</para>
1362           </listitem>
1363         </varlistentry>
1364         <varlistentry>
1365           <term><command>halt</command></term>
1366
1367           <listitem>
1368             <para>Shut down and halt the system. This is mostly equivalent to
1369             <command>start halt.target --irreversible</command>, but also
1370             prints a wall message to all users.  If combined with
1371             <option>--force</option>, shutdown of all running services is
1372             skipped, however all processes are killed and all file
1373             systems are unmounted or mounted read-only, immediately
1374             followed by the system halt.  If <option>--force</option> is
1375             specified twice, the operation is immediately executed
1376             without terminating any processes or unmounting any file
1377             systems. This may result in data loss.</para>
1378           </listitem>
1379         </varlistentry>
1380         <varlistentry>
1381           <term><command>poweroff</command></term>
1382
1383           <listitem>
1384             <para>Shut down and power-off the system. This is mostly
1385             equivalent to <command>start poweroff.target --irreversible</command>,
1386             but also prints a wall message to all users. If combined with
1387             <option>--force</option>, shutdown of all running services is
1388             skipped, however all processes are killed and all file
1389             systems are unmounted or mounted read-only, immediately
1390             followed by the powering off. If <option>--force</option> is
1391             specified twice, the operation is immediately executed
1392             without terminating any processes or unmounting any file
1393             systems. This may result in data loss.</para>
1394           </listitem>
1395         </varlistentry>
1396         <varlistentry>
1397           <term><command>reboot <optional><replaceable>arg</replaceable></optional></command></term>
1398
1399           <listitem>
1400             <para>Shut down and reboot the system. This is mostly
1401             equivalent to <command>start reboot.target --irreversible</command>,
1402             but also prints a wall message to all users. If combined with
1403             <option>--force</option>, shutdown of all running services is
1404             skipped, however all processes are killed and all file
1405             systems are unmounted or mounted read-only, immediately
1406             followed by the reboot. If <option>--force</option> is
1407             specified twice, the operation is immediately executed
1408             without terminating any processes or unmounting any file
1409             systems. This may result in data loss.</para>
1410
1411             <para>If the optional argument
1412             <replaceable>arg</replaceable> is given, it will be passed
1413             as the optional argument to the
1414             <citerefentry><refentrytitle>reboot</refentrytitle><manvolnum>2</manvolnum></citerefentry>
1415             system call. The value is architecture and firmware
1416             specific. As an example, <literal>recovery</literal> might
1417             be used to trigger system recovery, and
1418             <literal>fota</literal> might be used to trigger a
1419             <quote>firmware over the air</quote> update.</para>
1420           </listitem>
1421         </varlistentry>
1422         <varlistentry>
1423           <term><command>kexec</command></term>
1424
1425           <listitem>
1426             <para>Shut down and reboot the system via kexec. This is
1427             mostly equivalent to <command>start kexec.target --irreversible</command>,
1428             but also prints a wall message to all users. If combined
1429             with <option>--force</option>, shutdown of all running
1430             services is skipped, however all processes are killed and
1431             all file systems are unmounted or mounted read-only,
1432             immediately followed by the reboot.</para>
1433           </listitem>
1434         </varlistentry>
1435         <varlistentry>
1436           <term><command>exit</command></term>
1437
1438           <listitem>
1439             <para>Ask the systemd manager to quit. This is only
1440             supported for user service managers (i.e. in conjunction
1441             with the <option>--user</option> option) and will fail
1442             otherwise.</para>
1443           </listitem>
1444
1445         </varlistentry>
1446         <varlistentry>
1447           <term><command>suspend</command></term>
1448
1449           <listitem>
1450             <para>Suspend the system. This will trigger activation of
1451             the special <filename>suspend.target</filename> target.
1452             </para>
1453           </listitem>
1454         </varlistentry>
1455         <varlistentry>
1456           <term><command>hibernate</command></term>
1457
1458           <listitem>
1459             <para>Hibernate the system. This will trigger activation of
1460             the special <filename>hibernate.target</filename> target.
1461             </para>
1462           </listitem>
1463         </varlistentry>
1464         <varlistentry>
1465           <term><command>hybrid-sleep</command></term>
1466
1467           <listitem>
1468             <para>Hibernate and suspend the system. This will trigger
1469             activation of the special
1470             <filename>hybrid-sleep.target</filename> target.</para>
1471           </listitem>
1472         </varlistentry>
1473         <varlistentry>
1474           <term><command>switch-root <replaceable>ROOT</replaceable> <optional><replaceable>INIT</replaceable></optional></command></term>
1475
1476           <listitem>
1477             <para>Switches to a different root directory and executes a
1478             new system manager process below it. This is intended for
1479             usage in initial RAM disks ("initrd"), and will transition
1480             from the initrd's system manager process (a.k.a "init"
1481             process) to the main system manager process. This call takes two
1482             arguments: the directory that is to become the new root directory, and
1483             the path to the new system manager binary below it to
1484             execute as PID 1. If the latter is omitted or the empty
1485             string, a systemd binary will automatically be searched for
1486             and used as init. If the system manager path is omitted or
1487             equal to the empty string, the state of the initrd's system
1488             manager process is passed to the main system manager, which
1489             allows later introspection of the state of the services
1490             involved in the initrd boot.</para>
1491           </listitem>
1492         </varlistentry>
1493       </variablelist>
1494     </refsect2>
1495
1496     <refsect2>
1497       <title>Parameter Syntax</title>
1498
1499       <para>Unit commands listed above take either a single unit name
1500       (designated as <replaceable>NAME</replaceable>), or multiple
1501       unit specifications (designated as
1502       <replaceable>PATTERN</replaceable>...). In the first case, the
1503       unit name with or without a suffix must be given. If the suffix
1504       is not specified, systemctl will append a suitable suffix,
1505       <literal>.service</literal> by default, and a type-specific
1506       suffix in case of commands which operate only on specific unit
1507       types. For example,
1508       <programlisting># systemctl start sshd</programlisting> and
1509       <programlisting># systemctl start sshd.service</programlisting>
1510       are equivalent, as are
1511       <programlisting># systemctl isolate snapshot-11</programlisting>
1512       and
1513       <programlisting># systemctl isolate snapshot-11.snapshot</programlisting>
1514       Note that (absolute) paths to device nodes are automatically
1515       converted to device unit names, and other (absolute) paths to
1516       mount unit names.
1517       <programlisting># systemctl status /dev/sda
1518 # systemctl status /home</programlisting>
1519       are equivalent to:
1520       <programlisting># systemctl status dev-sda.device
1521 # systemctl status home.mount</programlisting>
1522       In the second case, shell-style globs will be matched against
1523       currently loaded units; literal unit names, with or without
1524       a suffix, will be treated as in the first case. This means that
1525       literal unit names always refer to exactly one unit, but globs
1526       may match zero units and this is not considered an error.</para>
1527
1528       <para>Glob patterns use
1529       <citerefentry><refentrytitle>fnmatch</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
1530       so normal shell-style globbing rules are used, and
1531       <literal>*</literal>, <literal>?</literal>,
1532       <literal>[]</literal> may be used. See
1533       <citerefentry><refentrytitle>glob</refentrytitle><manvolnum>7</manvolnum></citerefentry>
1534       for more details. The patterns are matched against the names of
1535       currently loaded units, and patterns which do not match anything
1536       are silently skipped. For example:
1537       <programlisting># systemctl stop sshd@*.service</programlisting>
1538       will stop all <filename>sshd@.service</filename> instances.
1539       </para>
1540
1541       <para>For unit file commands, the specified
1542       <replaceable>NAME</replaceable> should be the full name of the
1543       unit file, or the absolute path to the unit file:
1544       <programlisting># systemctl enable foo.service</programlisting>
1545       or
1546       <programlisting># systemctl link /path/to/foo.service</programlisting>
1547       </para>
1548     </refsect2>
1549
1550   </refsect1>
1551
1552   <refsect1>
1553     <title>Exit status</title>
1554
1555     <para>On success, 0 is returned, a non-zero failure
1556     code otherwise.</para>
1557   </refsect1>
1558
1559   <xi:include href="less-variables.xml" />
1560
1561   <refsect1>
1562     <title>See Also</title>
1563     <para>
1564       <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1565       <citerefentry><refentrytitle>systemadm</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1566       <citerefentry><refentrytitle>journalctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1567       <citerefentry><refentrytitle>loginctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1568       <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1569       <citerefentry><refentrytitle>systemd.resource-management</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1570       <citerefentry><refentrytitle>systemd.special</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
1571       <citerefentry project='man-pages'><refentrytitle>wall</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1572       <citerefentry><refentrytitle>systemd.preset</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1573       <citerefentry><refentrytitle>glob</refentrytitle><manvolnum>7</manvolnum></citerefentry>
1574     </para>
1575   </refsect1>
1576
1577 </refentry>