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