]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd.service.xml
test: drop the use of /bin/sh in various test services
[thirdparty/systemd.git] / man / systemd.service.xml
CommitLineData
c129bd5d 1<?xml version='1.0'?> <!--*- Mode: nxml; nxml-child-indent: 2; indent-tabs-mode: nil -*-->
d1ab0ca0 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
d1ab0ca0
LP
4
5<!--
572eb058
ZJS
6 SPDX-License-Identifier: LGPL-2.1+
7
d1ab0ca0
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
d1ab0ca0
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.
d1ab0ca0 21
5430f7f2 22 You should have received a copy of the GNU Lesser General Public License
d1ab0ca0
LP
23 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24-->
25
26<refentry id="systemd.service">
798d3a52
ZJS
27 <refentryinfo>
28 <title>systemd.service</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>systemd.service</refentrytitle>
43 <manvolnum>5</manvolnum>
44 </refmeta>
45
46 <refnamediv>
47 <refname>systemd.service</refname>
48 <refpurpose>Service unit configuration</refpurpose>
49 </refnamediv>
50
51 <refsynopsisdiv>
52 <para><filename><replaceable>service</replaceable>.service</filename></para>
53 </refsynopsisdiv>
54
55 <refsect1>
56 <title>Description</title>
57
58 <para>A unit configuration file whose name ends in
ed10715a 59 <literal>.service</literal> encodes information about a process
798d3a52
ZJS
60 controlled and supervised by systemd.</para>
61
62 <para>This man page lists the configuration options specific to
63 this unit type. See
64 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
65 for the common options of all unit configuration files. The common
66 configuration items are configured in the generic
67 <literal>[Unit]</literal> and <literal>[Install]</literal>
68 sections. The service specific configuration options are
69 configured in the <literal>[Service]</literal> section.</para>
70
71 <para>Additional options are listed in
72 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
73 which define the execution environment the commands are executed
74 in, and in
75 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
76 which define the way the processes of the service are terminated,
77 and in
78 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
79 which configure resource control settings for the processes of the
80 service.</para>
81
798d3a52
ZJS
82 <para>If a service is requested under a certain name but no unit
83 configuration file is found, systemd looks for a SysV init script
84 by the same name (with the <filename>.service</filename> suffix
85 removed) and dynamically creates a service unit from that script.
86 This is useful for compatibility with SysV. Note that this
87 compatibility is quite comprehensive but not 100%. For details
88 about the incompatibilities, see the <ulink
28a0ad81 89 url="https://www.freedesktop.org/wiki/Software/systemd/Incompatibilities">Incompatibilities
c129bd5d
LP
90 with SysV</ulink> document.</para>
91 </refsect1>
92
93 <refsect1>
45f09f93
JL
94 <title>Implicit Dependencies</title>
95
96 <para>The following dependencies are implicitly added:</para>
97
98 <itemizedlist>
99 <listitem><para>Services with <varname>Type=dbus</varname> set automatically
100 acquire dependencies of type <varname>Requires=</varname> and
101 <varname>After=</varname> on
102 <filename>dbus.socket</filename>.</para></listitem>
103
104 <listitem><para>Socket activated services are automatically ordered after
105 their activating <filename>.socket</filename> units via an
106 automatic <varname>After=</varname> dependency.
107 Services also pull in all <filename>.socket</filename> units
108 listed in <varname>Sockets=</varname> via automatic
109 <varname>Wants=</varname> and <varname>After=</varname> dependencies.</para></listitem>
110 </itemizedlist>
ae0a5fb1 111
c129bd5d
LP
112 <para>Additional implicit dependencies may be added as result of
113 execution and resource control parameters as documented in
114 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
115 and
116 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
798d3a52
ZJS
117 </refsect1>
118
45f09f93
JL
119 <refsect1>
120 <title>Default Dependencies</title>
121
122 <para>The following dependencies are added unless <varname>DefaultDependencies=no</varname> is set:</para>
123
124 <itemizedlist>
125 <listitem><para>Service units will have dependencies of type <varname>Requires=</varname> and
126 <varname>After=</varname> on <filename>sysinit.target</filename>, a dependency of type <varname>After=</varname> on
127 <filename>basic.target</filename> as well as dependencies of type <varname>Conflicts=</varname> and
128 <varname>Before=</varname> on <filename>shutdown.target</filename>. These ensure that normal service units pull in
129 basic system initialization, and are terminated cleanly prior to system shutdown. Only services involved with early
130 boot or late system shutdown should disable this option.</para></listitem>
131
132 <listitem><para>Instanced service units (i.e. service units with an <literal>@</literal> in their name) are assigned by
133 default a per-template slice unit (see
134 <citerefentry><refentrytitle>systemd.slice</refentrytitle><manvolnum>5</manvolnum></citerefentry>), named after the
135 template unit, containing all instances of the specific template. This slice is normally stopped at shutdown,
136 together with all template instances. If that is not desired, set <varname>DefaultDependencies=no</varname> in the
137 template unit, and either define your own per-template slice unit file that also sets
138 <varname>DefaultDependencies=no</varname>, or set <varname>Slice=system.slice</varname> (or another suitable slice)
139 in the template unit. Also see
140 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
141 </para></listitem>
142 </itemizedlist>
143 </refsect1>
144
798d3a52
ZJS
145 <refsect1>
146 <title>Options</title>
147
148 <para>Service files must include a <literal>[Service]</literal>
149 section, which carries information about the service and the
150 process it supervises. A number of options that may be used in
151 this section are shared with other unit types. These options are
152 documented in
aa9f9e58
LW
153 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
154 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
798d3a52 155 and
aa9f9e58 156 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
798d3a52
ZJS
157 The options specific to the <literal>[Service]</literal> section
158 of service units are the following:</para>
159
160 <variablelist class='unit-directives'>
161 <varlistentry>
162 <term><varname>Type=</varname></term>
163
164 <listitem><para>Configures the process start-up type for this
165 service unit. One of
166 <option>simple</option>,
167 <option>forking</option>,
168 <option>oneshot</option>,
169 <option>dbus</option>,
170 <option>notify</option> or
171 <option>idle</option>.</para>
172
173 <para>If set to <option>simple</option> (the default if
174 neither <varname>Type=</varname> nor
175 <varname>BusName=</varname>, but <varname>ExecStart=</varname>
176 are specified), it is expected that the process configured
177 with <varname>ExecStart=</varname> is the main process of the
178 service. In this mode, if the process offers functionality to
179 other processes on the system, its communication channels
180 should be installed before the daemon is started up (e.g.
181 sockets set up by systemd, via socket activation), as systemd
182 will immediately proceed starting follow-up units.</para>
183
184 <para>If set to <option>forking</option>, it is expected that
185 the process configured with <varname>ExecStart=</varname> will
186 call <function>fork()</function> as part of its start-up. The
187 parent process is expected to exit when start-up is complete
188 and all communication channels are set up. The child continues
189 to run as the main daemon process. This is the behavior of
190 traditional UNIX daemons. If this setting is used, it is
191 recommended to also use the <varname>PIDFile=</varname>
192 option, so that systemd can identify the main process of the
193 daemon. systemd will proceed with starting follow-up units as
194 soon as the parent process exits.</para>
195
196 <para>Behavior of <option>oneshot</option> is similar to
197 <option>simple</option>; however, it is expected that the
198 process has to exit before systemd starts follow-up units.
199 <varname>RemainAfterExit=</varname> is particularly useful for
200 this type of service. This is the implied default if neither
bda99fab 201 <varname>Type=</varname> nor <varname>ExecStart=</varname> are
798d3a52
ZJS
202 specified.</para>
203
204 <para>Behavior of <option>dbus</option> is similar to
205 <option>simple</option>; however, it is expected that the
206 daemon acquires a name on the D-Bus bus, as configured by
207 <varname>BusName=</varname>. systemd will proceed with
208 starting follow-up units after the D-Bus bus name has been
209 acquired. Service units with this option configured implicitly
210 gain dependencies on the <filename>dbus.socket</filename>
211 unit. This type is the default if <varname>BusName=</varname>
212 is specified.</para>
213
214 <para>Behavior of <option>notify</option> is similar to
215 <option>simple</option>; however, it is expected that the
216 daemon sends a notification message via
217 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>
218 or an equivalent call when it has finished starting up.
219 systemd will proceed with starting follow-up units after this
220 notification message has been sent. If this option is used,
221 <varname>NotifyAccess=</varname> (see below) should be set to
222 open access to the notification socket provided by systemd. If
aa4f6cf1
LB
223 <varname>NotifyAccess=</varname> is missing or set to
224 <option>none</option>, it will be forcibly set to
225 <option>main</option>. Note that currently
798d3a52
ZJS
226 <varname>Type=</varname><option>notify</option> will not work
227 if used in combination with
228 <varname>PrivateNetwork=</varname><option>yes</option>.</para>
229
6dcda09c 230 <para>Behavior of <option>idle</option> is very similar to <option>simple</option>; however, actual execution
3f2d1365 231 of the service program is delayed until all active jobs are dispatched. This may be used to avoid interleaving
6dcda09c
LP
232 of output of shell services with the status output on the console. Note that this type is useful only to
233 improve console output, it is not useful as a general unit ordering tool, and the effect of this service type
3f2d1365 234 is subject to a 5s time-out, after which the service program is invoked anyway.</para>
798d3a52
ZJS
235 </listitem>
236 </varlistentry>
237
238 <varlistentry>
239 <term><varname>RemainAfterExit=</varname></term>
240
241 <listitem><para>Takes a boolean value that specifies whether
242 the service shall be considered active even when all its
243 processes exited. Defaults to <option>no</option>.</para>
244 </listitem>
245 </varlistentry>
246
247 <varlistentry>
248 <term><varname>GuessMainPID=</varname></term>
249
250 <listitem><para>Takes a boolean value that specifies whether
251 systemd should try to guess the main PID of a service if it
252 cannot be determined reliably. This option is ignored unless
253 <option>Type=forking</option> is set and
254 <option>PIDFile=</option> is unset because for the other types
255 or with an explicitly configured PID file, the main PID is
256 always known. The guessing algorithm might come to incorrect
257 conclusions if a daemon consists of more than one process. If
258 the main PID cannot be determined, failure detection and
259 automatic restarting of a service will not work reliably.
260 Defaults to <option>yes</option>.</para>
261 </listitem>
262 </varlistentry>
263
264 <varlistentry>
265 <term><varname>PIDFile=</varname></term>
266
db256aab
LP
267 <listitem><para>Takes an absolute path referring to the PID file of the service. Usage of this option is
268 recommended for services where <varname>Type=</varname> is set to <option>forking</option>. The service manager
269 will read the PID of the main process of the service from this file after start-up of the service. The service
270 manager will not write to the file configured here, although it will remove the file after the service has shut
271 down if it still exists. The PID file does not need to be owned by a privileged user, but if it is owned by an
272 unprivileged user additional safety restrictions are enforced: the file may not be a symlink to a file owned by
273 a different user (neither directly nor indirectly), and the PID file must refer to a process already belonging
274 to the service.</para></listitem>
798d3a52
ZJS
275 </varlistentry>
276
277 <varlistentry>
278 <term><varname>BusName=</varname></term>
279
280 <listitem><para>Takes a D-Bus bus name that this service is
281 reachable as. This option is mandatory for services where
282 <varname>Type=</varname> is set to
283 <option>dbus</option>.</para>
284 </listitem>
285 </varlistentry>
286
798d3a52
ZJS
287 <varlistentry>
288 <term><varname>ExecStart=</varname></term>
289 <listitem><para>Commands with their arguments that are
290 executed when this service is started. The value is split into
a8eaaee7 291 zero or more command lines according to the rules described
798d3a52
ZJS
292 below (see section "Command Lines" below).
293 </para>
294
29df65f9
ZJS
295 <para>Unless <varname>Type=</varname> is <option>oneshot</option>, exactly one command must be given. When
296 <varname>Type=oneshot</varname> is used, zero or more commands may be specified. Commands may be specified by
297 providing multiple command lines in the same directive, or alternatively, this directive may be specified more
298 than once with the same effect. If the empty string is assigned to this option, the list of commands to start
299 is reset, prior assignments of this option will have no effect. If no <varname>ExecStart=</varname> is
e4b45b32
LP
300 specified, then the service must have <varname>RemainAfterExit=yes</varname> and at least one
301 <varname>ExecStop=</varname> line set. (Services lacking both <varname>ExecStart=</varname> and
302 <varname>ExecStop=</varname> are not valid.)</para>
798d3a52 303
5008da1e
ZJS
304 <para>For each of the specified commands, the first argument must be either an absolute path to an executable
305 or a simple file name without any slashes. Optionally, this filename may be prefixed with a number of special
306 characters:</para>
165a31c0
LP
307
308 <table>
309 <title>Special executable prefixes</title>
310
311 <tgroup cols='2'>
312 <colspec colname='prefix'/>
313 <colspec colname='meaning'/>
314
315 <thead>
316 <row>
317 <entry>Prefix</entry>
318 <entry>Effect</entry>
319 </row>
320 </thead>
321 <tbody>
322 <row>
323 <entry><literal>@</literal></entry>
324 <entry>If the executable path is prefixed with <literal>@</literal>, the second specified token will be passed as <literal>argv[0]</literal> to the executed process (instead of the actual filename), followed by the further arguments specified.</entry>
325 </row>
326
327 <row>
328 <entry><literal>-</literal></entry>
329 <entry>If the executable path is prefixed with <literal>-</literal>, an exit code of the command normally considered a failure (i.e. non-zero exit status or abnormal exit due to signal) is ignored and considered success.</entry>
330 </row>
331
332 <row>
333 <entry><literal>+</literal></entry>
334 <entry>If the executable path is prefixed with <literal>+</literal> then the process is executed with full privileges. In this mode privilege restrictions configured with <varname>User=</varname>, <varname>Group=</varname>, <varname>CapabilityBoundingSet=</varname> or the various file system namespacing options (such as <varname>PrivateDevices=</varname>, <varname>PrivateTmp=</varname>) are not applied to the invoked command line (but still affect any other <varname>ExecStart=</varname>, <varname>ExecStop=</varname>, … lines).</entry>
335 </row>
336
337 <row>
338 <entry><literal>!</literal></entry>
339
340 <entry>Similar to the <literal>+</literal> character discussed above this permits invoking command lines with elevated privileges. However, unlike <literal>+</literal> the <literal>!</literal> character exclusively alters the effect of <varname>User=</varname>, <varname>Group=</varname> and <varname>SupplementaryGroups=</varname>, i.e. only the stanzas the affect user and group credentials. Note that this setting may be combined with <varname>DynamicUser=</varname>, in which case a dynamic user/group pair is allocated before the command is invoked, but credential changing is left to the executed process itself.</entry>
341 </row>
342
343 <row>
344 <entry><literal>!!</literal></entry>
345
132523e7 346 <entry>This prefix is very similar to <literal>!</literal>, however it only has an effect on systems lacking support for ambient process capabilities, i.e. without support for <varname>AmbientCapabilities=</varname>. It's intended to be used for unit files that take benefit of ambient capabilities to run processes with minimal privileges wherever possible while remaining compatible with systems that lack ambient capabilities support. Note that when <literal>!!</literal> is used, and a system lacking ambient capability support is detected any configured <varname>SystemCallFilter=</varname> and <varname>CapabilityBoundingSet=</varname> stanzas are implicitly modified, in order to permit spawned processes to drop credentials and capabilities themselves, even if this is configured to not be allowed. Moreover, if this prefix is used and a system lacking ambient capability support is detected <varname>AmbientCapabilities=</varname> will be skipped and not be applied. On systems supporting ambient capabilities, <literal>!!</literal> has no effect and is redundant.</entry>
165a31c0
LP
347 </row>
348 </tbody>
349 </tgroup>
350 </table>
351
352 <para><literal>@</literal>, <literal>-</literal>, and one of
353 <literal>+</literal>/<literal>!</literal>/<literal>!!</literal> may be used together and they can appear in any
ee905de0 354 order. However, only one of <literal>+</literal>, <literal>!</literal>, <literal>!!</literal> may be used at a
165a31c0 355 time. Note that these prefixes are also supported for the other command line settings,
78a263f4 356 i.e. <varname>ExecStartPre=</varname>, <varname>ExecStartPost=</varname>, <varname>ExecReload=</varname>,
165a31c0 357 <varname>ExecStop=</varname> and <varname>ExecStopPost=</varname>.</para>
798d3a52
ZJS
358
359 <para>If more than one command is specified, the commands are
360 invoked sequentially in the order they appear in the unit
361 file. If one of the commands fails (and is not prefixed with
362 <literal>-</literal>), other lines are not executed, and the
363 unit is considered failed.</para>
364
365 <para>Unless <varname>Type=forking</varname> is set, the
366 process started via this command line will be considered the
367 main process of the daemon.</para>
368 </listitem>
369 </varlistentry>
370
371 <varlistentry>
372 <term><varname>ExecStartPre=</varname></term>
373 <term><varname>ExecStartPost=</varname></term>
374 <listitem><para>Additional commands that are executed before
375 or after the command in <varname>ExecStart=</varname>,
376 respectively. Syntax is the same as for
377 <varname>ExecStart=</varname>, except that multiple command
378 lines are allowed and the commands are executed one after the
379 other, serially.</para>
380
381 <para>If any of those commands (not prefixed with
382 <literal>-</literal>) fail, the rest are not executed and the
383 unit is considered failed.</para>
b481de3b 384
12e2683d
RM
385 <para><varname>ExecStart=</varname> commands are only run after
386 all <varname>ExecStartPre=</varname> commands that were not prefixed
387 with a <literal>-</literal> exit successfully.</para>
388
80af263b
LP
389 <para><varname>ExecStartPost=</varname> commands are only run after the commands specified in
390 <varname>ExecStart=</varname> have been invoked successfully, as determined by <varname>Type=</varname>
391 (i.e. the process has been started for <varname>Type=simple</varname> or <varname>Type=idle</varname>, the last
392 <varname>ExecStart=</varname> process exited successfully for <varname>Type=oneshot</varname>, the initial
393 process exited successfully for <varname>Type=forking</varname>, <literal>READY=1</literal> is sent for
394 <varname>Type=notify</varname>, or the <varname>BusName=</varname> has been taken for
395 <varname>Type=dbus</varname>).</para>
12e2683d 396
b481de3b
LP
397 <para>Note that <varname>ExecStartPre=</varname> may not be
398 used to start long-running processes. All processes forked
399 off by processes invoked via <varname>ExecStartPre=</varname> will
400 be killed before the next service process is run.</para>
ce359e98
LP
401
402 <para>Note that if any of the commands specified in <varname>ExecStartPre=</varname>,
403 <varname>ExecStart=</varname>, or <varname>ExecStartPost=</varname> fail (and are not prefixed with
404 <literal>-</literal>, see above) or time out before the service is fully up, execution continues with commands
405 specified in <varname>ExecStopPost=</varname>, the commands in <varname>ExecStop=</varname> are skipped.</para>
798d3a52
ZJS
406 </listitem>
407 </varlistentry>
408
409 <varlistentry>
410 <term><varname>ExecReload=</varname></term>
411 <listitem><para>Commands to execute to trigger a configuration
412 reload in the service. This argument takes multiple command
413 lines, following the same scheme as described for
414 <varname>ExecStart=</varname> above. Use of this setting is
415 optional. Specifier and environment variable substitution is
416 supported here following the same scheme as for
417 <varname>ExecStart=</varname>.</para>
418
419 <para>One additional, special environment variable is set: if
420 known, <varname>$MAINPID</varname> is set to the main process
421 of the daemon, and may be used for command lines like the
422 following:</para>
423
424 <programlisting>/bin/kill -HUP $MAINPID</programlisting>
425
426 <para>Note however that reloading a daemon by sending a signal
427 (as with the example line above) is usually not a good choice,
428 because this is an asynchronous operation and hence not
429 suitable to order reloads of multiple services against each
430 other. It is strongly recommended to set
431 <varname>ExecReload=</varname> to a command that not only
432 triggers a configuration reload of the daemon, but also
433 synchronously waits for it to complete.</para>
434 </listitem>
435 </varlistentry>
436
437 <varlistentry>
438 <term><varname>ExecStop=</varname></term>
439 <listitem><para>Commands to execute to stop the service
440 started via <varname>ExecStart=</varname>. This argument takes
441 multiple command lines, following the same scheme as described
442 for <varname>ExecStart=</varname> above. Use of this setting
443 is optional. After the commands configured in this option are
23656d2b
AY
444 run, it is implied that the service is stopped, and any processes
445 remaining for it are terminated
798d3a52
ZJS
446 according to the <varname>KillMode=</varname> setting (see
447 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
cceb20c7
LP
448 If this option is not specified, the process is terminated by
449 sending the signal specified in <varname>KillSignal=</varname>
450 when service stop is requested. Specifier and environment
451 variable substitution is supported (including
452 <varname>$MAINPID</varname>, see above).</para>
453
99479986
FS
454 <para>Note that it is usually not sufficient to specify a command for this setting that only asks the service
455 to terminate (for example, by queuing some form of termination signal for it), but does not wait for it to do
456 so. Since the remaining processes of the services are killed according to <varname>KillMode=</varname> and
457 <varname>KillSignal=</varname> as described above immediately after the command exited, this may not result in
458 a clean stop. The specified command should hence be a synchronous operation, not an asynchronous one.</para>
ce359e98
LP
459
460 <para>Note that the commands specified in <varname>ExecStop=</varname> are only executed when the service
07ff561c 461 started successfully first. They are not invoked if the service was never started at all, or in case its
ce359e98
LP
462 start-up failed, for example because any of the commands specified in <varname>ExecStart=</varname>,
463 <varname>ExecStartPre=</varname> or <varname>ExecStartPost=</varname> failed (and weren't prefixed with
464 <literal>-</literal>, see above) or timed out. Use <varname>ExecStopPost=</varname> to invoke commands when a
8adf5358
LP
465 service failed to start up correctly and is shut down again. Also note that, service restart requests are
466 implemented as stop operations followed by start operations. This means that <varname>ExecStop=</varname> and
467 <varname>ExecStopPost=</varname> are executed during a service restart operation.</para>
ce359e98
LP
468
469 <para>It is recommended to use this setting for commands that communicate with the service requesting clean
470 termination. When the commands specified with this option are executed it should be assumed that the service is
471 still fully up and is able to react correctly to all commands. For post-mortem clean-up steps use
472 <varname>ExecStopPost=</varname> instead.</para></listitem>
798d3a52
ZJS
473 </varlistentry>
474
475 <varlistentry>
476 <term><varname>ExecStopPost=</varname></term>
ce359e98
LP
477 <listitem><para>Additional commands that are executed after the service is stopped. This includes cases where
478 the commands configured in <varname>ExecStop=</varname> were used, where the service does not have any
479 <varname>ExecStop=</varname> defined, or where the service exited unexpectedly. This argument takes multiple
480 command lines, following the same scheme as described for <varname>ExecStart=</varname>. Use of these settings
481 is optional. Specifier and environment variable substitution is supported. Note that – unlike
482 <varname>ExecStop=</varname> – commands specified with this setting are invoked when a service failed to start
483 up correctly and is shut down again.</para>
484
485 <para>It is recommended to use this setting for clean-up operations that shall be executed even when the
486 service failed to start up correctly. Commands configured with this setting need to be able to operate even if
487 the service failed starting up half-way and left incompletely initialized data around. As the service's
488 processes have been terminated already when the commands specified with this setting are executed they should
136dc4c4
LP
489 not attempt to communicate with them.</para>
490
491 <para>Note that all commands that are configured with this setting are invoked with the result code of the
492 service, as well as the main process' exit code and status, set in the <varname>$SERVICE_RESULT</varname>,
493 <varname>$EXIT_CODE</varname> and <varname>$EXIT_STATUS</varname> environment variables, see
494 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry> for
495 details.</para></listitem>
798d3a52
ZJS
496 </varlistentry>
497
498 <varlistentry>
499 <term><varname>RestartSec=</varname></term>
500 <listitem><para>Configures the time to sleep before restarting
501 a service (as configured with <varname>Restart=</varname>).
502 Takes a unit-less value in seconds, or a time span value such
503 as "5min 20s". Defaults to 100ms.</para></listitem>
504 </varlistentry>
505
506 <varlistentry>
507 <term><varname>TimeoutStartSec=</varname></term>
508 <listitem><para>Configures the time to wait for start-up. If a
509 daemon service does not signal start-up completion within the
510 configured time, the service will be considered failed and
511 will be shut down again. Takes a unit-less value in seconds,
512 or a time span value such as "5min 20s". Pass
2c29d332 513 <literal>infinity</literal> to disable the timeout logic. Defaults to
798d3a52
ZJS
514 <varname>DefaultTimeoutStartSec=</varname> from the manager
515 configuration file, except when
516 <varname>Type=oneshot</varname> is used, in which case the
517 timeout is disabled by default (see
518 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
a327431b
DB
519 </para>
520
521 <para>If a service of <varname>Type=notify</varname> sends <literal>EXTEND_TIMEOUT_USEC=…</literal>, this may cause
522 the start time to be extended beyond <varname>TimeoutStartSec=</varname>. The first receipt of this message
523 must occur before <varname>TimeoutStartSec=</varname> is exceeded, and once the start time has exended beyond
524 <varname>TimeoutStartSec=</varname>, the service manager will allow the service to continue to start, provided
525 the service repeats <literal>EXTEND_TIMEOUT_USEC=…</literal> within the interval specified until the service
526 startup status is finished by <literal>READY=1</literal>. (see
527 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>).
798d3a52
ZJS
528 </para></listitem>
529 </varlistentry>
530
531 <varlistentry>
532 <term><varname>TimeoutStopSec=</varname></term>
533 <listitem><para>Configures the time to wait for stop. If a
534 service is asked to stop, but does not terminate in the
535 specified time, it will be terminated forcibly via
536 <constant>SIGTERM</constant>, and after another timeout of
537 equal duration with <constant>SIGKILL</constant> (see
538 <varname>KillMode=</varname> in
539 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
540 Takes a unit-less value in seconds, or a time span value such
2c29d332 541 as "5min 20s". Pass <literal>infinity</literal> to disable the
798d3a52
ZJS
542 timeout logic. Defaults to
543 <varname>DefaultTimeoutStopSec=</varname> from the manager
544 configuration file (see
545 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
a327431b
DB
546 </para>
547
548 <para>If a service of <varname>Type=notify</varname> sends <literal>EXTEND_TIMEOUT_USEC=…</literal>, this may cause
549 the stop time to be extended beyond <varname>TimeoutStopSec=</varname>. The first receipt of this message
550 must occur before <varname>TimeoutStopSec=</varname> is exceeded, and once the stop time has exended beyond
551 <varname>TimeoutStopSec=</varname>, the service manager will allow the service to continue to stop, provided
552 the service repeats <literal>EXTEND_TIMEOUT_USEC=…</literal> within the interval specified, or terminates itself
553 (see <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>).
798d3a52
ZJS
554 </para></listitem>
555 </varlistentry>
556
557 <varlistentry>
558 <term><varname>TimeoutSec=</varname></term>
559 <listitem><para>A shorthand for configuring both
560 <varname>TimeoutStartSec=</varname> and
561 <varname>TimeoutStopSec=</varname> to the specified value.
562 </para></listitem>
563 </varlistentry>
564
2c29d332
LP
565 <varlistentry>
566 <term><varname>RuntimeMaxSec=</varname></term>
567
568 <listitem><para>Configures a maximum time for the service to run. If this is used and the service has been
569 active for longer than the specified time it is terminated and put into a failure state. Note that this setting
570 does not have any effect on <varname>Type=oneshot</varname> services, as they terminate immediately after
571 activation completed. Pass <literal>infinity</literal> (the default) to configure no runtime
a327431b
DB
572 limit.</para>
573
574 <para>If a service of <varname>Type=notify</varname> sends <literal>EXTEND_TIMEOUT_USEC=…</literal>, this may cause
575 the runtime to be extended beyond <varname>RuntimeMaxSec=</varname>. The first receipt of this message
576 must occur before <varname>RuntimeMaxSec=</varname> is exceeded, and once the runtime has exended beyond
577 <varname>RuntimeMaxSec=</varname>, the service manager will allow the service to continue to run, provided
578 the service repeats <literal>EXTEND_TIMEOUT_USEC=…</literal> within the interval specified until the service
579 shutdown is acheived by <literal>STOPPING=1</literal> (or termination). (see
580 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>).
581 </para></listitem>
2c29d332
LP
582 </varlistentry>
583
798d3a52
ZJS
584 <varlistentry>
585 <term><varname>WatchdogSec=</varname></term>
586 <listitem><para>Configures the watchdog timeout for a service.
587 The watchdog is activated when the start-up is completed. The
588 service must call
589 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>
590 regularly with <literal>WATCHDOG=1</literal> (i.e. the
591 "keep-alive ping"). If the time between two such calls is
592 larger than the configured time, then the service is placed in
593 a failed state and it will be terminated with
22065311 594 <constant>SIGABRT</constant>. By setting
a0533c6d
EV
595 <varname>Restart=</varname> to <option>on-failure</option>,
596 <option>on-watchdog</option>, <option>on-abnormal</option> or
798d3a52
ZJS
597 <option>always</option>, the service will be automatically
598 restarted. The time configured here will be passed to the
599 executed service process in the
600 <varname>WATCHDOG_USEC=</varname> environment variable. This
601 allows daemons to automatically enable the keep-alive pinging
602 logic if watchdog support is enabled for the service. If this
603 option is used, <varname>NotifyAccess=</varname> (see below)
604 should be set to open access to the notification socket
605 provided by systemd. If <varname>NotifyAccess=</varname> is
606 not set, it will be implicitly set to <option>main</option>.
582f2fcb
EV
607 Defaults to 0, which disables this feature. The service can
608 check whether the service manager expects watchdog keep-alive
609 notifications. See
610 <citerefentry><refentrytitle>sd_watchdog_enabled</refentrytitle><manvolnum>3</manvolnum></citerefentry>
a0533c6d
EV
611 for details.
612 <citerefentry><refentrytitle>sd_event_set_watchdog</refentrytitle><manvolnum>3</manvolnum></citerefentry>
613 may be used to enable automatic watchdog notification support.
582f2fcb 614 </para></listitem>
798d3a52
ZJS
615 </varlistentry>
616
617 <varlistentry>
618 <term><varname>Restart=</varname></term>
619 <listitem><para>Configures whether the service shall be
620 restarted when the service process exits, is killed, or a
621 timeout is reached. The service process may be the main
622 service process, but it may also be one of the processes
623 specified with <varname>ExecStartPre=</varname>,
624 <varname>ExecStartPost=</varname>,
625 <varname>ExecStop=</varname>,
626 <varname>ExecStopPost=</varname>, or
627 <varname>ExecReload=</varname>. When the death of the process
628 is a result of systemd operation (e.g. service stop or
629 restart), the service will not be restarted. Timeouts include
630 missing the watchdog "keep-alive ping" deadline and a service
631 start, reload, and stop operation timeouts.</para>
632
633 <para>Takes one of
634 <option>no</option>,
635 <option>on-success</option>,
636 <option>on-failure</option>,
637 <option>on-abnormal</option>,
638 <option>on-watchdog</option>,
639 <option>on-abort</option>, or
640 <option>always</option>.
641 If set to <option>no</option> (the default), the service will
642 not be restarted. If set to <option>on-success</option>, it
643 will be restarted only when the service process exits cleanly.
644 In this context, a clean exit means an exit code of 0, or one
645 of the signals
646 <constant>SIGHUP</constant>,
647 <constant>SIGINT</constant>,
648 <constant>SIGTERM</constant> or
649 <constant>SIGPIPE</constant>, and
650 additionally, exit statuses and signals specified in
651 <varname>SuccessExitStatus=</varname>. If set to
652 <option>on-failure</option>, the service will be restarted
653 when the process exits with a non-zero exit code, is
654 terminated by a signal (including on core dump, but excluding
ff9b60f3 655 the aforementioned four signals), when an operation (such as
798d3a52
ZJS
656 service reload) times out, and when the configured watchdog
657 timeout is triggered. If set to <option>on-abnormal</option>,
658 the service will be restarted when the process is terminated
659 by a signal (including on core dump, excluding the
660 aforementioned four signals), when an operation times out, or
661 when the watchdog timeout is triggered. If set to
662 <option>on-abort</option>, the service will be restarted only
663 if the service process exits due to an uncaught signal not
664 specified as a clean exit status. If set to
665 <option>on-watchdog</option>, the service will be restarted
666 only if the watchdog timeout for the service expires. If set
667 to <option>always</option>, the service will be restarted
668 regardless of whether it exited cleanly or not, got terminated
669 abnormally by a signal, or hit a timeout.</para>
670
671 <table>
672 <title>Exit causes and the effect of the <varname>Restart=</varname> settings on them</title>
673
674 <tgroup cols='2'>
675 <colspec colname='path' />
676 <colspec colname='expl' />
677 <thead>
678 <row>
679 <entry>Restart settings/Exit causes</entry>
680 <entry><option>no</option></entry>
681 <entry><option>always</option></entry>
682 <entry><option>on-success</option></entry>
683 <entry><option>on-failure</option></entry>
684 <entry><option>on-abnormal</option></entry>
685 <entry><option>on-abort</option></entry>
686 <entry><option>on-watchdog</option></entry>
687 </row>
688 </thead>
689 <tbody>
690 <row>
691 <entry>Clean exit code or signal</entry>
692 <entry/>
693 <entry>X</entry>
694 <entry>X</entry>
695 <entry/>
696 <entry/>
697 <entry/>
698 <entry/>
699 </row>
700 <row>
701 <entry>Unclean exit code</entry>
702 <entry/>
703 <entry>X</entry>
704 <entry/>
705 <entry>X</entry>
706 <entry/>
707 <entry/>
708 <entry/>
709 </row>
710 <row>
711 <entry>Unclean signal</entry>
712 <entry/>
713 <entry>X</entry>
714 <entry/>
715 <entry>X</entry>
716 <entry>X</entry>
717 <entry>X</entry>
718 <entry/>
719 </row>
720 <row>
721 <entry>Timeout</entry>
722 <entry/>
723 <entry>X</entry>
724 <entry/>
725 <entry>X</entry>
726 <entry>X</entry>
727 <entry/>
728 <entry/>
729 </row>
730 <row>
731 <entry>Watchdog</entry>
732 <entry/>
733 <entry>X</entry>
734 <entry/>
735 <entry>X</entry>
736 <entry>X</entry>
737 <entry/>
738 <entry>X</entry>
739 </row>
740 </tbody>
741 </tgroup>
742 </table>
743
b938cb90 744 <para>As exceptions to the setting above, the service will not
798d3a52 745 be restarted if the exit code or signal is specified in
09b69d68
TW
746 <varname>RestartPreventExitStatus=</varname> (see below) or
747 the service is stopped with <command>systemctl stop</command>
748 or an equivalent operation. Also, the services will always be
749 restarted if the exit code or signal is specified in
798d3a52
ZJS
750 <varname>RestartForceExitStatus=</varname> (see below).</para>
751
6d249476
LW
752 <para>Note that service restart is subject to unit start rate
753 limiting configured with <varname>StartLimitIntervalSec=</varname>
754 and <varname>StartLimitBurst=</varname>, see
755 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
bd2538b5
KBM
756 for details. A restarted service enters the failed state only
757 after the start limits are reached.</para>
6d249476 758
798d3a52
ZJS
759 <para>Setting this to <option>on-failure</option> is the
760 recommended choice for long-running services, in order to
761 increase reliability by attempting automatic recovery from
762 errors. For services that shall be able to terminate on their
763 own choice (and avoid immediate restarting),
764 <option>on-abnormal</option> is an alternative choice.</para>
765 </listitem>
766 </varlistentry>
767
768 <varlistentry>
769 <term><varname>SuccessExitStatus=</varname></term>
b938cb90
JE
770 <listitem><para>Takes a list of exit status definitions that,
771 when returned by the main service process, will be considered
798d3a52
ZJS
772 successful termination, in addition to the normal successful
773 exit code 0 and the signals <constant>SIGHUP</constant>,
774 <constant>SIGINT</constant>, <constant>SIGTERM</constant>, and
775 <constant>SIGPIPE</constant>. Exit status definitions can
776 either be numeric exit codes or termination signal names,
777 separated by spaces. For example:
dc83f27a
LP
778
779 <programlisting>SuccessExitStatus=1 2 8 SIGKILL</programlisting>
780
781 ensures that exit codes 1, 2, 8 and
798d3a52
ZJS
782 the termination signal <constant>SIGKILL</constant> are
783 considered clean service terminations.
784 </para>
785
798d3a52
ZJS
786 <para>This option may appear more than once, in which case the
787 list of successful exit statuses is merged. If the empty
788 string is assigned to this option, the list is reset, all
789 prior assignments of this option will have no
790 effect.</para></listitem>
791 </varlistentry>
792
793 <varlistentry>
794 <term><varname>RestartPreventExitStatus=</varname></term>
b938cb90
JE
795 <listitem><para>Takes a list of exit status definitions that,
796 when returned by the main service process, will prevent
798d3a52
ZJS
797 automatic service restarts, regardless of the restart setting
798 configured with <varname>Restart=</varname>. Exit status
799 definitions can either be numeric exit codes or termination
800 signal names, and are separated by spaces. Defaults to the
801 empty list, so that, by default, no exit status is excluded
802 from the configured restart logic. For example:
dc83f27a
LP
803
804 <programlisting>RestartPreventExitStatus=1 6 SIGABRT</programlisting>
805
806 ensures that exit codes 1 and 6 and the termination signal
807 <constant>SIGABRT</constant> will not result in automatic
808 service restarting. This option may appear more than once, in
809 which case the list of restart-preventing statuses is
810 merged. If the empty string is assigned to this option, the
811 list is reset and all prior assignments of this option will
812 have no effect.</para></listitem>
798d3a52
ZJS
813 </varlistentry>
814
815 <varlistentry>
816 <term><varname>RestartForceExitStatus=</varname></term>
b938cb90
JE
817 <listitem><para>Takes a list of exit status definitions that,
818 when returned by the main service process, will force automatic
798d3a52
ZJS
819 service restarts, regardless of the restart setting configured
820 with <varname>Restart=</varname>. The argument format is
821 similar to
822 <varname>RestartPreventExitStatus=</varname>.</para></listitem>
823 </varlistentry>
824
825 <varlistentry>
826 <term><varname>PermissionsStartOnly=</varname></term>
827 <listitem><para>Takes a boolean argument. If true, the
828 permission-related execution options, as configured with
829 <varname>User=</varname> and similar options (see
830 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
831 for more information), are only applied to the process started
832 with
833 <varname>ExecStart=</varname>, and not to the various other
834 <varname>ExecStartPre=</varname>,
835 <varname>ExecStartPost=</varname>,
836 <varname>ExecReload=</varname>,
837 <varname>ExecStop=</varname>, and
838 <varname>ExecStopPost=</varname>
839 commands. If false, the setting is applied to all configured
840 commands the same way. Defaults to false.</para></listitem>
841 </varlistentry>
842
843 <varlistentry>
844 <term><varname>RootDirectoryStartOnly=</varname></term>
845 <listitem><para>Takes a boolean argument. If true, the root
846 directory, as configured with the
847 <varname>RootDirectory=</varname> option (see
848 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
849 for more information), is only applied to the process started
850 with <varname>ExecStart=</varname>, and not to the various
851 other <varname>ExecStartPre=</varname>,
852 <varname>ExecStartPost=</varname>,
853 <varname>ExecReload=</varname>, <varname>ExecStop=</varname>,
854 and <varname>ExecStopPost=</varname> commands. If false, the
855 setting is applied to all configured commands the same way.
856 Defaults to false.</para></listitem>
857 </varlistentry>
858
859 <varlistentry>
860 <term><varname>NonBlocking=</varname></term>
9b141911
FB
861 <listitem><para>Set the <constant>O_NONBLOCK</constant> flag for all file descriptors passed via socket-based
862 activation. If true, all file descriptors >= 3 (i.e. all except stdin, stdout, stderr), excluding those passed
863 in via the file descriptor storage logic (see <varname>FileDescriptorStoreMax=</varname> for details), will
864 have the <constant>O_NONBLOCK</constant> flag set and hence are in non-blocking mode. This option is only
865 useful in conjunction with a socket unit, as described in
866 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry> and has no
867 effect on file descriptors which were previously saved in the file-descriptor store for example. Defaults to
868 false.</para></listitem>
798d3a52
ZJS
869 </varlistentry>
870
871 <varlistentry>
872 <term><varname>NotifyAccess=</varname></term>
b3bb6476
LP
873 <listitem><para>Controls access to the service status notification socket, as accessible via the
874 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry> call. Takes one
875 of <option>none</option> (the default), <option>main</option>, <option>exec</option> or
876 <option>all</option>. If <option>none</option>, no daemon status updates are accepted from the service
877 processes, all status update messages are ignored. If <option>main</option>, only service updates sent from the
878 main process of the service are accepted. If <option>exec</option>, only service updates sent from any of the
879 main or control processes originating from one of the <varname>Exec*=</varname> commands are accepted. If
880 <option>all</option>, all services updates from all members of the service's control group are accepted. This
881 option should be set to open access to the notification socket when using <varname>Type=notify</varname> or
882 <varname>WatchdogSec=</varname> (see above). If those options are used but <varname>NotifyAccess=</varname> is
883 not configured, it will be implicitly set to <option>main</option>.</para>
884
885 <para>Note that <function>sd_notify()</function> notifications may be attributed to units correctly only if
886 either the sending process is still around at the time PID 1 processes the message, or if the sending process
887 is explicitly runtime-tracked by the service manager. The latter is the case if the service manager originally
888 forked off the process, i.e. on all processes that match <option>main</option> or
889 <option>exec</option>. Conversely, if an auxiliary process of the unit sends an
890 <function>sd_notify()</function> message and immediately exits, the service manager might not be able to
891 properly attribute the message to the unit, and thus will ignore it, even if
892 <varname>NotifyAccess=</varname><option>all</option> is set for it.</para></listitem>
798d3a52
ZJS
893 </varlistentry>
894
895 <varlistentry>
896 <term><varname>Sockets=</varname></term>
897 <listitem><para>Specifies the name of the socket units this
898 service shall inherit socket file descriptors from when the
b938cb90
JE
899 service is started. Normally, it should not be necessary to use
900 this setting, as all socket file descriptors whose unit shares
798d3a52
ZJS
901 the same name as the service (subject to the different unit
902 name suffix of course) are passed to the spawned
903 process.</para>
904
905 <para>Note that the same socket file descriptors may be passed
906 to multiple processes simultaneously. Also note that a
907 different service may be activated on incoming socket traffic
908 than the one which is ultimately configured to inherit the
b938cb90 909 socket file descriptors. Or, in other words: the
798d3a52
ZJS
910 <varname>Service=</varname> setting of
911 <filename>.socket</filename> units does not have to match the
912 inverse of the <varname>Sockets=</varname> setting of the
913 <filename>.service</filename> it refers to.</para>
914
915 <para>This option may appear more than once, in which case the
916 list of socket units is merged. If the empty string is
917 assigned to this option, the list of sockets is reset, and all
918 prior uses of this setting will have no
919 effect.</para></listitem>
920 </varlistentry>
921
798d3a52
ZJS
922 <varlistentry>
923 <term><varname>FileDescriptorStoreMax=</varname></term>
3ceb72e5 924 <listitem><para>Configure how many file descriptors may be stored in the service manager for the service using
798d3a52 925 <citerefentry><refentrytitle>sd_pid_notify_with_fds</refentrytitle><manvolnum>3</manvolnum></citerefentry>'s
3ceb72e5
LP
926 <literal>FDSTORE=1</literal> messages. This is useful for implementing services that can restart after an
927 explicit request or a crash without losing state. Any open sockets and other file descriptors which should not
928 be closed during the restart may be stored this way. Application state can either be serialized to a file in
929 <filename>/run</filename>, or better, stored in a
930 <citerefentry><refentrytitle>memfd_create</refentrytitle><manvolnum>2</manvolnum></citerefentry> memory file
931 descriptor. Defaults to 0, i.e. no file descriptors may be stored in the service manager. All file descriptors
932 passed to the service manager from a specific service are passed back to the service's main process on the next
933 service restart. Any file descriptors passed to the service manager are automatically closed when
934 <constant>POLLHUP</constant> or <constant>POLLERR</constant> is seen on them, or when the service is fully
935 stopped and no job is queued or being executed for it.</para></listitem>
798d3a52
ZJS
936 </varlistentry>
937
8c7c9839
PS
938 <varlistentry>
939 <term><varname>USBFunctionDescriptors=</varname></term>
3d314510
LP
940 <listitem><para>Configure the location of a file containing
941 <ulink
942 url="https://www.kernel.org/doc/Documentation/usb/functionfs.txt">USB
943 FunctionFS</ulink> descriptors, for implementation of USB
a8eaaee7 944 gadget functions. This is used only in conjunction with a
3d314510 945 socket unit with <varname>ListenUSBFunction=</varname>
a8eaaee7 946 configured. The contents of this file are written to the
3d314510
LP
947 <filename>ep0</filename> file after it is
948 opened.</para></listitem>
8c7c9839
PS
949 </varlistentry>
950
951 <varlistentry>
952 <term><varname>USBFunctionStrings=</varname></term>
3d314510
LP
953 <listitem><para>Configure the location of a file containing
954 USB FunctionFS strings. Behavior is similar to
955 <varname>USBFunctionDescriptors=</varname>
956 above.</para></listitem>
8c7c9839
PS
957 </varlistentry>
958
798d3a52
ZJS
959 </variablelist>
960
961 <para>Check
962 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
963 and
964 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
965 for more settings.</para>
966
967 </refsect1>
968
969 <refsect1>
970 <title>Command lines</title>
971
972 <para>This section describes command line parsing and
ff9b60f3 973 variable and specifier substitutions for
798d3a52
ZJS
974 <varname>ExecStart=</varname>,
975 <varname>ExecStartPre=</varname>,
976 <varname>ExecStartPost=</varname>,
977 <varname>ExecReload=</varname>,
978 <varname>ExecStop=</varname>, and
979 <varname>ExecStopPost=</varname> options.</para>
980
981 <para>Multiple command lines may be concatenated in a single
982 directive by separating them with semicolons (these semicolons
983 must be passed as separate words). Lone semicolons may be escaped
984 as <literal>\;</literal>.</para>
985
330785f5 986 <para>Each command line is split on whitespace, with the first item being the command to
1eecafb8 987 execute, and the subsequent items being the arguments. Double quotes ("…") and single quotes
fa0c9e63
ZJS
988 ('…') may be used to wrap a whole item (the opening quote may appear only at the beginning or
989 after whitespace that is not quoted, and the closing quote must be followed by whitespace or the
990 end of line), in which case everything until the next matching quote becomes part of the same
991 argument. Quotes themselves are removed. C-style escapes are also supported. The table below
992 contains the list of known escape patterns. Only escape patterns which match the syntax in the
993 table are allowed; other patterns may be added in the future and unknown patterns will result in
994 a warning. In particular, any backslashes should be doubled. Finally, a trailing backslash
995 (<literal>\</literal>) may be used to merge lines.</para>
798d3a52 996
0e3f51cf
ZJS
997 <para>This syntax is inspired by shell syntax, but only the meta-characters and expansions
998 described in the following paragraphs are understood, and the expansion of variables is
999 different. Specifically, redirection using
798d3a52
ZJS
1000 <literal>&lt;</literal>,
1001 <literal>&lt;&lt;</literal>,
1002 <literal>&gt;</literal>, and
1003 <literal>&gt;&gt;</literal>, pipes using
1004 <literal>|</literal>, running programs in the background using
1005 <literal>&amp;</literal>, and <emphasis>other elements of shell
1006 syntax are not supported</emphasis>.</para>
1007
5008da1e 1008 <para>The command to execute may contain spaces, but control characters are not allowed.</para>
798d3a52 1009
5008da1e 1010 <para>The command line accepts <literal>%</literal> specifiers as described in
2d06ddb7 1011 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
798d3a52
ZJS
1012
1013 <para>Basic environment variable substitution is supported. Use
1014 <literal>${FOO}</literal> as part of a word, or as a word of its
1015 own, on the command line, in which case it will be replaced by the
1016 value of the environment variable including all whitespace it
1017 contains, resulting in a single argument. Use
1018 <literal>$FOO</literal> as a separate word on the command line, in
1019 which case it will be replaced by the value of the environment
b938cb90 1020 variable split at whitespace, resulting in zero or more arguments.
3faf145d 1021 For this type of expansion, quotes are respected when splitting
798d3a52
ZJS
1022 into words, and afterwards removed.</para>
1023
5008da1e
ZJS
1024 <para>If the command is not a full (absolute) path, it will be resolved to a full path using a
1025 fixed search path determinted at compilation time. Searched directories include
1026 <filename>/usr/local/bin/</filename>, <filename>/usr/bin/</filename>, <filename>/bin/</filename>
1027 on systems using split <filename>/usr/bin/</filename> and <filename>/bin/</filename>
1028 directories, and their <filename>sbin/</filename> counterparts on systems using split
1029 <filename>bin/</filename> and <filename>sbin/</filename>. It is thus safe to use just the
1030 executable name in case of executables located in any of the "standard" directories, and an
1031 absolute path must be used in other cases. Using an absolute path is recommended to avoid
1032 ambiguity.</para>
1033
798d3a52
ZJS
1034 <para>Example:</para>
1035
1036 <programlisting>Environment="ONE=one" 'TWO=two two'
5008da1e 1037ExecStart=echo $ONE $TWO ${TWO}</programlisting>
5d9a2698 1038
798d3a52
ZJS
1039 <para>This will execute <command>/bin/echo</command> with four
1040 arguments: <literal>one</literal>, <literal>two</literal>,
1041 <literal>two</literal>, and <literal>two two</literal>.</para>
5d9a2698 1042
798d3a52
ZJS
1043 <para>Example:</para>
1044 <programlisting>Environment=ONE='one' "TWO='two two' too" THREE=
5d9a2698
ZJS
1045ExecStart=/bin/echo ${ONE} ${TWO} ${THREE}
1046ExecStart=/bin/echo $ONE $TWO $THREE</programlisting>
5008da1e 1047 <para>This results in <filename>/bin/echo</filename> being
798d3a52
ZJS
1048 called twice, the first time with arguments
1049 <literal>'one'</literal>,
1050 <literal>'two two' too</literal>, <literal></literal>,
1051 and the second time with arguments
1052 <literal>one</literal>, <literal>two two</literal>,
1053 <literal>too</literal>.
1054 </para>
1055
1056 <para>To pass a literal dollar sign, use <literal>$$</literal>.
1057 Variables whose value is not known at expansion time are treated
1058 as empty strings. Note that the first argument (i.e. the program
1059 to execute) may not be a variable.</para>
1060
1061 <para>Variables to be used in this fashion may be defined through
1062 <varname>Environment=</varname> and
1063 <varname>EnvironmentFile=</varname>. In addition, variables listed
1064 in the section "Environment variables in spawned processes" in
1065 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1066 which are considered "static configuration", may be used (this
1067 includes e.g. <varname>$USER</varname>, but not
1068 <varname>$TERM</varname>).</para>
1069
1070 <para>Note that shell command lines are not directly supported. If
1071 shell command lines are to be used, they need to be passed
1072 explicitly to a shell implementation of some kind. Example:</para>
5008da1e 1073 <programlisting>ExecStart=sh -c 'dmesg | tac'</programlisting>
798d3a52
ZJS
1074
1075 <para>Example:</para>
1076
5008da1e 1077 <programlisting>ExecStart=echo one ; echo "two two"</programlisting>
798d3a52 1078
5008da1e 1079 <para>This will execute <command>echo</command> two times,
798d3a52
ZJS
1080 each time with one argument: <literal>one</literal> and
1081 <literal>two two</literal>, respectively. Because two commands are
1082 specified, <varname>Type=oneshot</varname> must be used.</para>
1083
1084 <para>Example:</para>
1085
5008da1e
ZJS
1086 <programlisting>ExecStart=echo / &gt;/dev/null &amp; \; \
1087ls</programlisting>
30d88d54 1088
5008da1e 1089 <para>This will execute <command>echo</command>
798d3a52
ZJS
1090 with five arguments: <literal>/</literal>,
1091 <literal>&gt;/dev/null</literal>,
1092 <literal>&amp;</literal>, <literal>;</literal>, and
5008da1e 1093 <literal>ls</literal>.</para>
798d3a52
ZJS
1094
1095 <table>
1096 <title>C escapes supported in command lines and environment variables</title>
1097 <tgroup cols='2'>
1098 <colspec colname='escape' />
1099 <colspec colname='meaning' />
1100 <thead>
1101 <row>
1102 <entry>Literal</entry>
1103 <entry>Actual value</entry>
1104 </row>
1105 </thead>
1106 <tbody>
1107 <row>
1108 <entry><literal>\a</literal></entry>
1109 <entry>bell</entry>
1110 </row>
1111 <row>
1112 <entry><literal>\b</literal></entry>
1113 <entry>backspace</entry>
1114 </row>
1115 <row>
1116 <entry><literal>\f</literal></entry>
1117 <entry>form feed</entry>
1118 </row>
1119 <row>
1120 <entry><literal>\n</literal></entry>
1121 <entry>newline</entry>
1122 </row>
1123 <row>
1124 <entry><literal>\r</literal></entry>
1125 <entry>carriage return</entry>
1126 </row>
1127 <row>
1128 <entry><literal>\t</literal></entry>
1129 <entry>tab</entry>
1130 </row>
1131 <row>
1132 <entry><literal>\v</literal></entry>
1133 <entry>vertical tab</entry>
1134 </row>
1135 <row>
1136 <entry><literal>\\</literal></entry>
1137 <entry>backslash</entry>
1138 </row>
1139 <row>
1140 <entry><literal>\"</literal></entry>
1141 <entry>double quotation mark</entry>
1142 </row>
1143 <row>
1144 <entry><literal>\'</literal></entry>
1145 <entry>single quotation mark</entry>
1146 </row>
1147 <row>
1148 <entry><literal>\s</literal></entry>
1149 <entry>space</entry>
1150 </row>
1151 <row>
1152 <entry><literal>\x<replaceable>xx</replaceable></literal></entry>
1153 <entry>character number <replaceable>xx</replaceable> in hexadecimal encoding</entry>
1154 </row>
1155 <row>
1156 <entry><literal>\<replaceable>nnn</replaceable></literal></entry>
1157 <entry>character number <replaceable>nnn</replaceable> in octal encoding</entry>
1158 </row>
1159 </tbody>
1160 </tgroup>
1161 </table>
1162 </refsect1>
1163
1164 <refsect1>
1165 <title>Examples</title>
1166
1167 <example>
1168 <title>Simple service</title>
1169
1170 <para>The following unit file creates a service that will
1171 execute <filename>/usr/sbin/foo-daemon</filename>. Since no
1172 <varname>Type=</varname> is specified, the default
1173 <varname>Type=</varname><option>simple</option> will be assumed.
1174 systemd will assume the unit to be started immediately after the
1175 program has begun executing.</para>
1176
1177 <programlisting>[Unit]
d44efb62
CS
1178Description=Foo
1179
1180[Service]
1181ExecStart=/usr/sbin/foo-daemon
1182
1183[Install]
1184WantedBy=multi-user.target</programlisting>
1185
798d3a52
ZJS
1186 <para>Note that systemd assumes here that the process started by
1187 systemd will continue running until the service terminates. If
1188 the program daemonizes itself (i.e. forks), please use
1189 <varname>Type=</varname><option>forking</option> instead.</para>
1190
1191 <para>Since no <varname>ExecStop=</varname> was specified,
1192 systemd will send SIGTERM to all processes started from this
1193 service, and after a timeout also SIGKILL. This behavior can be
1194 modified, see
1195 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1196 for details.</para>
1197
1198 <para>Note that this unit type does not include any type of
1199 notification when a service has completed initialization. For
1200 this, you should use other unit types, such as
1201 <varname>Type=</varname><option>notify</option> if the service
1202 understands systemd's notification protocol,
1203 <varname>Type=</varname><option>forking</option> if the service
1204 can background itself or
1205 <varname>Type=</varname><option>dbus</option> if the unit
1206 acquires a DBus name once initialization is complete. See
1207 below.</para>
1208 </example>
1209
1210 <example>
1211 <title>Oneshot service</title>
1212
b938cb90 1213 <para>Sometimes, units should just execute an action without
798d3a52
ZJS
1214 keeping active processes, such as a filesystem check or a
1215 cleanup action on boot. For this,
1216 <varname>Type=</varname><option>oneshot</option> exists. Units
1217 of this type will wait until the process specified terminates
1218 and then fall back to being inactive. The following unit will
ff9b60f3 1219 perform a cleanup action:</para>
798d3a52
ZJS
1220
1221 <programlisting>[Unit]
d44efb62
CS
1222Description=Cleanup old Foo data
1223
1224[Service]
1225Type=oneshot
1226ExecStart=/usr/sbin/foo-cleanup
1227
1228[Install]
1229WantedBy=multi-user.target</programlisting>
1230
798d3a52 1231 <para>Note that systemd will consider the unit to be in the
b938cb90 1232 state "starting" until the program has terminated, so ordered
798d3a52 1233 dependencies will wait for the program to finish before starting
b938cb90
JE
1234 themselves. The unit will revert to the "inactive" state after
1235 the execution is done, never reaching the "active" state. That
798d3a52
ZJS
1236 means another request to start the unit will perform the action
1237 again.</para>
1238
1239 <para><varname>Type=</varname><option>oneshot</option> are the
1240 only service units that may have more than one
1241 <varname>ExecStart=</varname> specified. They will be executed
1242 in order until either they are all successful or one of them
1243 fails.</para>
1244 </example>
1245
1246 <example>
1247 <title>Stoppable oneshot service</title>
1248
1249 <para>Similarly to the oneshot services, there are sometimes
1250 units that need to execute a program to set up something and
1251 then execute another to shut it down, but no process remains
b938cb90 1252 active while they are considered "started". Network
798d3a52 1253 configuration can sometimes fall into this category. Another use
a8eaaee7 1254 case is if a oneshot service shall not be executed each time
798d3a52
ZJS
1255 when they are pulled in as a dependency, but only the first
1256 time.</para>
1257
1258 <para>For this, systemd knows the setting
1259 <varname>RemainAfterExit=</varname><option>yes</option>, which
1260 causes systemd to consider the unit to be active if the start
1261 action exited successfully. This directive can be used with all
1262 types, but is most useful with
1263 <varname>Type=</varname><option>oneshot</option> and
1264 <varname>Type=</varname><option>simple</option>. With
b938cb90 1265 <varname>Type=</varname><option>oneshot</option>, systemd waits
798d3a52
ZJS
1266 until the start action has completed before it considers the
1267 unit to be active, so dependencies start only after the start
1268 action has succeeded. With
b938cb90 1269 <varname>Type=</varname><option>simple</option>, dependencies
798d3a52
ZJS
1270 will start immediately after the start action has been
1271 dispatched. The following unit provides an example for a simple
1272 static firewall.</para>
1273
1274 <programlisting>[Unit]
d44efb62
CS
1275Description=Simple firewall
1276
1277[Service]
1278Type=oneshot
1279RemainAfterExit=yes
1280ExecStart=/usr/local/sbin/simple-firewall-start
1281ExecStop=/usr/local/sbin/simple-firewall-stop
1282
1283[Install]
1284WantedBy=multi-user.target</programlisting>
1285
798d3a52
ZJS
1286 <para>Since the unit is considered to be running after the start
1287 action has exited, invoking <command>systemctl start</command>
1288 on that unit again will cause no action to be taken.</para>
1289 </example>
1290
1291 <example>
1292 <title>Traditional forking services</title>
1293
1294 <para>Many traditional daemons/services background (i.e. fork,
1295 daemonize) themselves when starting. Set
1296 <varname>Type=</varname><option>forking</option> in the
1297 service's unit file to support this mode of operation. systemd
1298 will consider the service to be in the process of initialization
1299 while the original program is still running. Once it exits
1300 successfully and at least a process remains (and
1301 <varname>RemainAfterExit=</varname><option>no</option>), the
1302 service is considered started.</para>
1303
b938cb90 1304 <para>Often, a traditional daemon only consists of one process.
798d3a52
ZJS
1305 Therefore, if only one process is left after the original
1306 process terminates, systemd will consider that process the main
1307 process of the service. In that case, the
1308 <varname>$MAINPID</varname> variable will be available in
1309 <varname>ExecReload=</varname>, <varname>ExecStop=</varname>,
1310 etc.</para>
1311
1312 <para>In case more than one process remains, systemd will be
1313 unable to determine the main process, so it will not assume
1314 there is one. In that case, <varname>$MAINPID</varname> will not
1315 expand to anything. However, if the process decides to write a
1316 traditional PID file, systemd will be able to read the main PID
1317 from there. Please set <varname>PIDFile=</varname> accordingly.
1318 Note that the daemon should write that file before finishing
b938cb90 1319 with its initialization. Otherwise, systemd might try to read the
798d3a52
ZJS
1320 file before it exists.</para>
1321
1322 <para>The following example shows a simple daemon that forks and
1323 just starts one process in the background:</para>
1324
1325 <programlisting>[Unit]
d44efb62
CS
1326Description=Some simple daemon
1327
1328[Service]
1329Type=forking
1330ExecStart=/usr/sbin/my-simple-daemon -d
1331
1332[Install]
1333WantedBy=multi-user.target</programlisting>
1334
798d3a52
ZJS
1335 <para>Please see
1336 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1337 for details on how you can influence the way systemd terminates
1338 the service.</para>
1339 </example>
1340
1341 <example>
1342 <title>DBus services</title>
1343
1344 <para>For services that acquire a name on the DBus system bus,
1345 use <varname>Type=</varname><option>dbus</option> and set
1346 <varname>BusName=</varname> accordingly. The service should not
1347 fork (daemonize). systemd will consider the service to be
1348 initialized once the name has been acquired on the system bus.
1349 The following example shows a typical DBus service:</para>
1350
1351 <programlisting>[Unit]
d44efb62
CS
1352Description=Simple DBus service
1353
1354[Service]
1355Type=dbus
1356BusName=org.example.simple-dbus-service
1357ExecStart=/usr/sbin/simple-dbus-service
1358
1359[Install]
1360WantedBy=multi-user.target</programlisting>
1361
7ca41557 1362 <para>For <emphasis>bus-activatable</emphasis> services, do not
798d3a52
ZJS
1363 include a <literal>[Install]</literal> section in the systemd
1364 service file, but use the <varname>SystemdService=</varname>
1365 option in the corresponding DBus service file, for example
1366 (<filename>/usr/share/dbus-1/system-services/org.example.simple-dbus-service.service</filename>):</para>
d44efb62 1367
798d3a52 1368 <programlisting>[D-BUS Service]
d44efb62
CS
1369Name=org.example.simple-dbus-service
1370Exec=/usr/sbin/simple-dbus-service
1371User=root
1372SystemdService=simple-dbus-service.service</programlisting>
1373
798d3a52
ZJS
1374 <para>Please see
1375 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1376 for details on how you can influence the way systemd terminates
1377 the service.</para>
1378 </example>
1379
1380 <example>
1381 <title>Services that notify systemd about their initialization</title>
1382
1383 <para><varname>Type=</varname><option>simple</option> services
1384 are really easy to write, but have the major disadvantage of
1385 systemd not being able to tell when initialization of the given
1386 service is complete. For this reason, systemd supports a simple
1387 notification protocol that allows daemons to make systemd aware
1388 that they are done initializing. Use
1389 <varname>Type=</varname><option>notify</option> for this. A
1390 typical service file for such a daemon would look like
1391 this:</para>
1392
1393 <programlisting>[Unit]
d44efb62
CS
1394Description=Simple notifying service
1395
1396[Service]
1397Type=notify
1398ExecStart=/usr/sbin/simple-notifying-service
1399
1400[Install]
1401WantedBy=multi-user.target</programlisting>
1402
798d3a52 1403 <para>Note that the daemon has to support systemd's notification
7ca41557 1404 protocol, else systemd will think the service has not started yet
798d3a52
ZJS
1405 and kill it after a timeout. For an example of how to update
1406 daemons to support this protocol transparently, take a look at
1407 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
1408 systemd will consider the unit to be in the 'starting' state
1409 until a readiness notification has arrived.</para>
1410
1411 <para>Please see
1412 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1413 for details on how you can influence the way systemd terminates
1414 the service.</para>
1415 </example>
1416 </refsect1>
1417
1418 <refsect1>
1419 <title>See Also</title>
1420 <para>
1421 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1422 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1423 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1424 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1425 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1426 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1427 <citerefentry><refentrytitle>systemd.directives</refentrytitle><manvolnum>7</manvolnum></citerefentry>
1428 </para>
1429 </refsect1>
d1ab0ca0
LP
1430
1431</refentry>