]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/halt.xml
verify: use manager_load_startable_unit_or_warn() to load units for verification
[thirdparty/systemd.git] / man / halt.xml
CommitLineData
160cd5c9
LP
1<?xml version='1.0'?> <!--*-nxml-*-->
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
160cd5c9
LP
4
5<!--
572eb058
ZJS
6 SPDX-License-Identifier: LGPL-2.1+
7
160cd5c9
LP
8 This file is part of systemd.
9
10 Copyright 2010 Lennart Poettering
11
12 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
13 under the terms of the GNU Lesser General Public License as published by
14 the Free Software Foundation; either version 2.1 of the License, or
160cd5c9
LP
15 (at your option) any later version.
16
17 systemd is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 20 Lesser General Public License for more details.
160cd5c9 21
5430f7f2 22 You should have received a copy of the GNU Lesser General Public License
160cd5c9
LP
23 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24-->
25
dfdebb1b 26<refentry id="halt"
798d3a52
ZJS
27 xmlns:xi="http://www.w3.org/2001/XInclude">
28
29 <refentryinfo>
30 <title>halt</title>
31 <productname>systemd</productname>
32
33 <authorgroup>
34 <author>
35 <contrib>Developer</contrib>
36 <firstname>Lennart</firstname>
37 <surname>Poettering</surname>
38 <email>lennart@poettering.net</email>
39 </author>
40 </authorgroup>
41 </refentryinfo>
42
43 <refmeta>
44 <refentrytitle>halt</refentrytitle>
45 <manvolnum>8</manvolnum>
46 </refmeta>
47
48 <refnamediv>
49 <refname>halt</refname>
50 <refname>poweroff</refname>
51 <refname>reboot</refname>
52 <refpurpose>Halt, power-off or reboot the machine</refpurpose>
53 </refnamediv>
54
55 <refsynopsisdiv>
56 <cmdsynopsis>
57 <command>halt</command>
58 <arg choice="opt" rep="repeat">OPTIONS</arg>
59 </cmdsynopsis>
60 <cmdsynopsis>
61 <command>poweroff</command>
62 <arg choice="opt" rep="repeat">OPTIONS</arg>
63 </cmdsynopsis>
64 <cmdsynopsis>
65 <command>reboot</command>
66 <arg choice="opt" rep="repeat">OPTIONS</arg>
67 </cmdsynopsis>
68 </refsynopsisdiv>
69
70 <refsect1>
71 <title>Description</title>
72
73 <para><command>halt</command>, <command>poweroff</command>,
74 <command>reboot</command> may be used to halt, power-off or reboot
75 the machine.</para>
76
77 </refsect1>
78
79 <refsect1>
80 <title>Options</title>
81
82 <para>The following options are understood:</para>
83
84 <variablelist>
85 <varlistentry>
86 <term><option>--help</option></term>
87
88 <xi:include href="standard-options.xml" xpointer="help-text" />
89 </varlistentry>
90
91 <varlistentry>
92 <term><option>--halt</option></term>
93
94 <listitem><para>Halt the machine, regardless of which one of
95 the three commands is invoked.</para></listitem>
96 </varlistentry>
97
98 <varlistentry>
99 <term><option>-p</option></term>
100 <term><option>--poweroff</option></term>
101
102 <listitem><para>Power-off the machine, regardless of which one
103 of the three commands is invoked.</para></listitem>
104 </varlistentry>
105
106 <varlistentry>
107 <term><option>--reboot</option></term>
108
109 <listitem><para>Reboot the machine, regardless of which one of
110 the three commands is invoked.</para></listitem>
111 </varlistentry>
112
113 <varlistentry>
114 <term><option>-f</option></term>
115 <term><option>--force</option></term>
116
5d9adb5b
ZJS
117 <listitem><para>Force immediate halt, power-off, or reboot. When
118 specified once, this results in an immediate but clean shutdown
119 by the system manager. When specified twice, this results in an
120 immediate shutdown without contacting the system manager. See the
121 description of <option>--force</option> in
122 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
123 for more details.</para></listitem>
798d3a52
ZJS
124 </varlistentry>
125
126 <varlistentry>
127 <term><option>-w</option></term>
128 <term><option>--wtmp-only</option></term>
129
130 <listitem><para>Only write wtmp shutdown entry, do not
131 actually halt, power-off, reboot.</para></listitem>
132 </varlistentry>
133
134 <varlistentry>
135 <term><option>-d</option></term>
136 <term><option>--no-wtmp</option></term>
137
138 <listitem><para>Do not write wtmp shutdown
139 entry.</para></listitem>
140 </varlistentry>
f3f054f0
TB
141
142 <varlistentry>
143 <term><option>-n</option></term>
144 <term><option>--no-sync</option></term>
145
146 <listitem><para>Don't sync hard disks/storage media before
147 halt, power-off, reboot.</para></listitem>
148 </varlistentry>
798d3a52
ZJS
149
150 <varlistentry>
151 <term><option>--no-wall</option></term>
152
153 <listitem><para>Do not send wall message before halt,
154 power-off, reboot.</para></listitem>
155 </varlistentry>
156 </variablelist>
157 </refsect1>
158
159 <refsect1>
160 <title>Exit status</title>
161
162 <para>On success, 0 is returned, a non-zero failure code
163 otherwise.</para>
164 </refsect1>
165
166 <refsect1>
167 <title>Notes</title>
168
2e772f30
ZJS
169 <para>These commands are implemented in a way that preserves compatiblity with
170 the original SysV commands.
171 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
172 verbs <command>halt</command>, <command>poweroff</command>,
173 <command>reboot</command> provide the same functionality with some additional
174 features.</para>
798d3a52
ZJS
175 </refsect1>
176
177 <refsect1>
178 <title>See Also</title>
179 <para>
180 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
181 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
182 <citerefentry><refentrytitle>shutdown</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
183 <citerefentry project='man-pages'><refentrytitle>wall</refentrytitle><manvolnum>1</manvolnum></citerefentry>
184 </para>
185 </refsect1>
160cd5c9
LP
186
187</refentry>