]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd.service.xml
tree-wide: add DEBUG_LOGGING macro that checks whether debug logging is on (#7645)
[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
59 <filename>.service</filename> encodes information about a process
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
LP
230 <para>Behavior of <option>idle</option> is very similar to <option>simple</option>; however, actual execution
231 of the service binary is delayed until all active jobs are dispatched. This may be used to avoid interleaving
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
234 is subject to a 5s time-out, after which the service binary 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
1245e413 267 <listitem><para>Takes an absolute filename pointing to the
798d3a52
ZJS
268 PID file of this daemon. Use of this option is recommended for
269 services where <varname>Type=</varname> is set to
270 <option>forking</option>. systemd will read the PID of the
271 main process of the daemon after start-up of the service.
341db20b
FS
272 systemd will not write to the file configured here, although
273 it will remove the file after the service has shut down if it
274 still exists.
275 </para>
798d3a52
ZJS
276 </listitem>
277 </varlistentry>
278
279 <varlistentry>
280 <term><varname>BusName=</varname></term>
281
282 <listitem><para>Takes a D-Bus bus name that this service is
283 reachable as. This option is mandatory for services where
284 <varname>Type=</varname> is set to
285 <option>dbus</option>.</para>
286 </listitem>
287 </varlistentry>
288
798d3a52
ZJS
289 <varlistentry>
290 <term><varname>ExecStart=</varname></term>
291 <listitem><para>Commands with their arguments that are
292 executed when this service is started. The value is split into
a8eaaee7 293 zero or more command lines according to the rules described
798d3a52
ZJS
294 below (see section "Command Lines" below).
295 </para>
296
29df65f9
ZJS
297 <para>Unless <varname>Type=</varname> is <option>oneshot</option>, exactly one command must be given. When
298 <varname>Type=oneshot</varname> is used, zero or more commands may be specified. Commands may be specified by
299 providing multiple command lines in the same directive, or alternatively, this directive may be specified more
300 than once with the same effect. If the empty string is assigned to this option, the list of commands to start
301 is reset, prior assignments of this option will have no effect. If no <varname>ExecStart=</varname> is
e4b45b32
LP
302 specified, then the service must have <varname>RemainAfterExit=yes</varname> and at least one
303 <varname>ExecStop=</varname> line set. (Services lacking both <varname>ExecStart=</varname> and
304 <varname>ExecStop=</varname> are not valid.)</para>
798d3a52 305
43eb109a 306 <para>For each of the specified commands, the first argument must be an absolute path to an
1245e413 307 executable. Optionally, this filename may be prefixed with a number of special characters:</para>
165a31c0
LP
308
309 <table>
310 <title>Special executable prefixes</title>
311
312 <tgroup cols='2'>
313 <colspec colname='prefix'/>
314 <colspec colname='meaning'/>
315
316 <thead>
317 <row>
318 <entry>Prefix</entry>
319 <entry>Effect</entry>
320 </row>
321 </thead>
322 <tbody>
323 <row>
324 <entry><literal>@</literal></entry>
325 <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>
326 </row>
327
328 <row>
329 <entry><literal>-</literal></entry>
330 <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>
331 </row>
332
333 <row>
334 <entry><literal>+</literal></entry>
335 <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>
336 </row>
337
338 <row>
339 <entry><literal>!</literal></entry>
340
341 <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>
342 </row>
343
344 <row>
345 <entry><literal>!!</literal></entry>
346
132523e7 347 <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
348 </row>
349 </tbody>
350 </tgroup>
351 </table>
352
353 <para><literal>@</literal>, <literal>-</literal>, and one of
354 <literal>+</literal>/<literal>!</literal>/<literal>!!</literal> may be used together and they can appear in any
ee905de0 355 order. However, only one of <literal>+</literal>, <literal>!</literal>, <literal>!!</literal> may be used at a
165a31c0 356 time. Note that these prefixes are also supported for the other command line settings,
78a263f4 357 i.e. <varname>ExecStartPre=</varname>, <varname>ExecStartPost=</varname>, <varname>ExecReload=</varname>,
165a31c0 358 <varname>ExecStop=</varname> and <varname>ExecStopPost=</varname>.</para>
798d3a52
ZJS
359
360 <para>If more than one command is specified, the commands are
361 invoked sequentially in the order they appear in the unit
362 file. If one of the commands fails (and is not prefixed with
363 <literal>-</literal>), other lines are not executed, and the
364 unit is considered failed.</para>
365
366 <para>Unless <varname>Type=forking</varname> is set, the
367 process started via this command line will be considered the
368 main process of the daemon.</para>
369 </listitem>
370 </varlistentry>
371
372 <varlistentry>
373 <term><varname>ExecStartPre=</varname></term>
374 <term><varname>ExecStartPost=</varname></term>
375 <listitem><para>Additional commands that are executed before
376 or after the command in <varname>ExecStart=</varname>,
377 respectively. Syntax is the same as for
378 <varname>ExecStart=</varname>, except that multiple command
379 lines are allowed and the commands are executed one after the
380 other, serially.</para>
381
382 <para>If any of those commands (not prefixed with
383 <literal>-</literal>) fail, the rest are not executed and the
384 unit is considered failed.</para>
b481de3b 385
12e2683d
RM
386 <para><varname>ExecStart=</varname> commands are only run after
387 all <varname>ExecStartPre=</varname> commands that were not prefixed
388 with a <literal>-</literal> exit successfully.</para>
389
80af263b
LP
390 <para><varname>ExecStartPost=</varname> commands are only run after the commands specified in
391 <varname>ExecStart=</varname> have been invoked successfully, as determined by <varname>Type=</varname>
392 (i.e. the process has been started for <varname>Type=simple</varname> or <varname>Type=idle</varname>, the last
393 <varname>ExecStart=</varname> process exited successfully for <varname>Type=oneshot</varname>, the initial
394 process exited successfully for <varname>Type=forking</varname>, <literal>READY=1</literal> is sent for
395 <varname>Type=notify</varname>, or the <varname>BusName=</varname> has been taken for
396 <varname>Type=dbus</varname>).</para>
12e2683d 397
b481de3b
LP
398 <para>Note that <varname>ExecStartPre=</varname> may not be
399 used to start long-running processes. All processes forked
400 off by processes invoked via <varname>ExecStartPre=</varname> will
401 be killed before the next service process is run.</para>
ce359e98
LP
402
403 <para>Note that if any of the commands specified in <varname>ExecStartPre=</varname>,
404 <varname>ExecStart=</varname>, or <varname>ExecStartPost=</varname> fail (and are not prefixed with
405 <literal>-</literal>, see above) or time out before the service is fully up, execution continues with commands
406 specified in <varname>ExecStopPost=</varname>, the commands in <varname>ExecStop=</varname> are skipped.</para>
798d3a52
ZJS
407 </listitem>
408 </varlistentry>
409
410 <varlistentry>
411 <term><varname>ExecReload=</varname></term>
412 <listitem><para>Commands to execute to trigger a configuration
413 reload in the service. This argument takes multiple command
414 lines, following the same scheme as described for
415 <varname>ExecStart=</varname> above. Use of this setting is
416 optional. Specifier and environment variable substitution is
417 supported here following the same scheme as for
418 <varname>ExecStart=</varname>.</para>
419
420 <para>One additional, special environment variable is set: if
421 known, <varname>$MAINPID</varname> is set to the main process
422 of the daemon, and may be used for command lines like the
423 following:</para>
424
425 <programlisting>/bin/kill -HUP $MAINPID</programlisting>
426
427 <para>Note however that reloading a daemon by sending a signal
428 (as with the example line above) is usually not a good choice,
429 because this is an asynchronous operation and hence not
430 suitable to order reloads of multiple services against each
431 other. It is strongly recommended to set
432 <varname>ExecReload=</varname> to a command that not only
433 triggers a configuration reload of the daemon, but also
434 synchronously waits for it to complete.</para>
435 </listitem>
436 </varlistentry>
437
438 <varlistentry>
439 <term><varname>ExecStop=</varname></term>
440 <listitem><para>Commands to execute to stop the service
441 started via <varname>ExecStart=</varname>. This argument takes
442 multiple command lines, following the same scheme as described
443 for <varname>ExecStart=</varname> above. Use of this setting
444 is optional. After the commands configured in this option are
23656d2b
AY
445 run, it is implied that the service is stopped, and any processes
446 remaining for it are terminated
798d3a52
ZJS
447 according to the <varname>KillMode=</varname> setting (see
448 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
cceb20c7
LP
449 If this option is not specified, the process is terminated by
450 sending the signal specified in <varname>KillSignal=</varname>
451 when service stop is requested. Specifier and environment
452 variable substitution is supported (including
453 <varname>$MAINPID</varname>, see above).</para>
454
99479986
FS
455 <para>Note that it is usually not sufficient to specify a command for this setting that only asks the service
456 to terminate (for example, by queuing some form of termination signal for it), but does not wait for it to do
457 so. Since the remaining processes of the services are killed according to <varname>KillMode=</varname> and
458 <varname>KillSignal=</varname> as described above immediately after the command exited, this may not result in
459 a clean stop. The specified command should hence be a synchronous operation, not an asynchronous one.</para>
ce359e98
LP
460
461 <para>Note that the commands specified in <varname>ExecStop=</varname> are only executed when the service
07ff561c 462 started successfully first. They are not invoked if the service was never started at all, or in case its
ce359e98
LP
463 start-up failed, for example because any of the commands specified in <varname>ExecStart=</varname>,
464 <varname>ExecStartPre=</varname> or <varname>ExecStartPost=</varname> failed (and weren't prefixed with
465 <literal>-</literal>, see above) or timed out. Use <varname>ExecStopPost=</varname> to invoke commands when a
8adf5358
LP
466 service failed to start up correctly and is shut down again. Also note that, service restart requests are
467 implemented as stop operations followed by start operations. This means that <varname>ExecStop=</varname> and
468 <varname>ExecStopPost=</varname> are executed during a service restart operation.</para>
ce359e98
LP
469
470 <para>It is recommended to use this setting for commands that communicate with the service requesting clean
471 termination. When the commands specified with this option are executed it should be assumed that the service is
472 still fully up and is able to react correctly to all commands. For post-mortem clean-up steps use
473 <varname>ExecStopPost=</varname> instead.</para></listitem>
798d3a52
ZJS
474 </varlistentry>
475
476 <varlistentry>
477 <term><varname>ExecStopPost=</varname></term>
ce359e98
LP
478 <listitem><para>Additional commands that are executed after the service is stopped. This includes cases where
479 the commands configured in <varname>ExecStop=</varname> were used, where the service does not have any
480 <varname>ExecStop=</varname> defined, or where the service exited unexpectedly. This argument takes multiple
481 command lines, following the same scheme as described for <varname>ExecStart=</varname>. Use of these settings
482 is optional. Specifier and environment variable substitution is supported. Note that – unlike
483 <varname>ExecStop=</varname> – commands specified with this setting are invoked when a service failed to start
484 up correctly and is shut down again.</para>
485
486 <para>It is recommended to use this setting for clean-up operations that shall be executed even when the
487 service failed to start up correctly. Commands configured with this setting need to be able to operate even if
488 the service failed starting up half-way and left incompletely initialized data around. As the service's
489 processes have been terminated already when the commands specified with this setting are executed they should
136dc4c4
LP
490 not attempt to communicate with them.</para>
491
492 <para>Note that all commands that are configured with this setting are invoked with the result code of the
493 service, as well as the main process' exit code and status, set in the <varname>$SERVICE_RESULT</varname>,
494 <varname>$EXIT_CODE</varname> and <varname>$EXIT_STATUS</varname> environment variables, see
495 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry> for
496 details.</para></listitem>
798d3a52
ZJS
497 </varlistentry>
498
499 <varlistentry>
500 <term><varname>RestartSec=</varname></term>
501 <listitem><para>Configures the time to sleep before restarting
502 a service (as configured with <varname>Restart=</varname>).
503 Takes a unit-less value in seconds, or a time span value such
504 as "5min 20s". Defaults to 100ms.</para></listitem>
505 </varlistentry>
506
507 <varlistentry>
508 <term><varname>TimeoutStartSec=</varname></term>
509 <listitem><para>Configures the time to wait for start-up. If a
510 daemon service does not signal start-up completion within the
511 configured time, the service will be considered failed and
512 will be shut down again. Takes a unit-less value in seconds,
513 or a time span value such as "5min 20s". Pass
2c29d332 514 <literal>infinity</literal> to disable the timeout logic. Defaults to
798d3a52
ZJS
515 <varname>DefaultTimeoutStartSec=</varname> from the manager
516 configuration file, except when
517 <varname>Type=oneshot</varname> is used, in which case the
518 timeout is disabled by default (see
519 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
a327431b
DB
520 </para>
521
522 <para>If a service of <varname>Type=notify</varname> sends <literal>EXTEND_TIMEOUT_USEC=…</literal>, this may cause
523 the start time to be extended beyond <varname>TimeoutStartSec=</varname>. The first receipt of this message
524 must occur before <varname>TimeoutStartSec=</varname> is exceeded, and once the start time has exended beyond
525 <varname>TimeoutStartSec=</varname>, the service manager will allow the service to continue to start, provided
526 the service repeats <literal>EXTEND_TIMEOUT_USEC=…</literal> within the interval specified until the service
527 startup status is finished by <literal>READY=1</literal>. (see
528 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>).
798d3a52
ZJS
529 </para></listitem>
530 </varlistentry>
531
532 <varlistentry>
533 <term><varname>TimeoutStopSec=</varname></term>
534 <listitem><para>Configures the time to wait for stop. If a
535 service is asked to stop, but does not terminate in the
536 specified time, it will be terminated forcibly via
537 <constant>SIGTERM</constant>, and after another timeout of
538 equal duration with <constant>SIGKILL</constant> (see
539 <varname>KillMode=</varname> in
540 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
541 Takes a unit-less value in seconds, or a time span value such
2c29d332 542 as "5min 20s". Pass <literal>infinity</literal> to disable the
798d3a52
ZJS
543 timeout logic. Defaults to
544 <varname>DefaultTimeoutStopSec=</varname> from the manager
545 configuration file (see
546 <citerefentry><refentrytitle>systemd-system.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
a327431b
DB
547 </para>
548
549 <para>If a service of <varname>Type=notify</varname> sends <literal>EXTEND_TIMEOUT_USEC=…</literal>, this may cause
550 the stop time to be extended beyond <varname>TimeoutStopSec=</varname>. The first receipt of this message
551 must occur before <varname>TimeoutStopSec=</varname> is exceeded, and once the stop time has exended beyond
552 <varname>TimeoutStopSec=</varname>, the service manager will allow the service to continue to stop, provided
553 the service repeats <literal>EXTEND_TIMEOUT_USEC=…</literal> within the interval specified, or terminates itself
554 (see <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>).
798d3a52
ZJS
555 </para></listitem>
556 </varlistentry>
557
558 <varlistentry>
559 <term><varname>TimeoutSec=</varname></term>
560 <listitem><para>A shorthand for configuring both
561 <varname>TimeoutStartSec=</varname> and
562 <varname>TimeoutStopSec=</varname> to the specified value.
563 </para></listitem>
564 </varlistentry>
565
2c29d332
LP
566 <varlistentry>
567 <term><varname>RuntimeMaxSec=</varname></term>
568
569 <listitem><para>Configures a maximum time for the service to run. If this is used and the service has been
570 active for longer than the specified time it is terminated and put into a failure state. Note that this setting
571 does not have any effect on <varname>Type=oneshot</varname> services, as they terminate immediately after
572 activation completed. Pass <literal>infinity</literal> (the default) to configure no runtime
a327431b
DB
573 limit.</para>
574
575 <para>If a service of <varname>Type=notify</varname> sends <literal>EXTEND_TIMEOUT_USEC=…</literal>, this may cause
576 the runtime to be extended beyond <varname>RuntimeMaxSec=</varname>. The first receipt of this message
577 must occur before <varname>RuntimeMaxSec=</varname> is exceeded, and once the runtime has exended beyond
578 <varname>RuntimeMaxSec=</varname>, the service manager will allow the service to continue to run, provided
579 the service repeats <literal>EXTEND_TIMEOUT_USEC=…</literal> within the interval specified until the service
580 shutdown is acheived by <literal>STOPPING=1</literal> (or termination). (see
581 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>).
582 </para></listitem>
2c29d332
LP
583 </varlistentry>
584
798d3a52
ZJS
585 <varlistentry>
586 <term><varname>WatchdogSec=</varname></term>
587 <listitem><para>Configures the watchdog timeout for a service.
588 The watchdog is activated when the start-up is completed. The
589 service must call
590 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>
591 regularly with <literal>WATCHDOG=1</literal> (i.e. the
592 "keep-alive ping"). If the time between two such calls is
593 larger than the configured time, then the service is placed in
594 a failed state and it will be terminated with
22065311 595 <constant>SIGABRT</constant>. By setting
a0533c6d
EV
596 <varname>Restart=</varname> to <option>on-failure</option>,
597 <option>on-watchdog</option>, <option>on-abnormal</option> or
798d3a52
ZJS
598 <option>always</option>, the service will be automatically
599 restarted. The time configured here will be passed to the
600 executed service process in the
601 <varname>WATCHDOG_USEC=</varname> environment variable. This
602 allows daemons to automatically enable the keep-alive pinging
603 logic if watchdog support is enabled for the service. If this
604 option is used, <varname>NotifyAccess=</varname> (see below)
605 should be set to open access to the notification socket
606 provided by systemd. If <varname>NotifyAccess=</varname> is
607 not set, it will be implicitly set to <option>main</option>.
582f2fcb
EV
608 Defaults to 0, which disables this feature. The service can
609 check whether the service manager expects watchdog keep-alive
610 notifications. See
611 <citerefentry><refentrytitle>sd_watchdog_enabled</refentrytitle><manvolnum>3</manvolnum></citerefentry>
a0533c6d
EV
612 for details.
613 <citerefentry><refentrytitle>sd_event_set_watchdog</refentrytitle><manvolnum>3</manvolnum></citerefentry>
614 may be used to enable automatic watchdog notification support.
582f2fcb 615 </para></listitem>
798d3a52
ZJS
616 </varlistentry>
617
618 <varlistentry>
619 <term><varname>Restart=</varname></term>
620 <listitem><para>Configures whether the service shall be
621 restarted when the service process exits, is killed, or a
622 timeout is reached. The service process may be the main
623 service process, but it may also be one of the processes
624 specified with <varname>ExecStartPre=</varname>,
625 <varname>ExecStartPost=</varname>,
626 <varname>ExecStop=</varname>,
627 <varname>ExecStopPost=</varname>, or
628 <varname>ExecReload=</varname>. When the death of the process
629 is a result of systemd operation (e.g. service stop or
630 restart), the service will not be restarted. Timeouts include
631 missing the watchdog "keep-alive ping" deadline and a service
632 start, reload, and stop operation timeouts.</para>
633
634 <para>Takes one of
635 <option>no</option>,
636 <option>on-success</option>,
637 <option>on-failure</option>,
638 <option>on-abnormal</option>,
639 <option>on-watchdog</option>,
640 <option>on-abort</option>, or
641 <option>always</option>.
642 If set to <option>no</option> (the default), the service will
643 not be restarted. If set to <option>on-success</option>, it
644 will be restarted only when the service process exits cleanly.
645 In this context, a clean exit means an exit code of 0, or one
646 of the signals
647 <constant>SIGHUP</constant>,
648 <constant>SIGINT</constant>,
649 <constant>SIGTERM</constant> or
650 <constant>SIGPIPE</constant>, and
651 additionally, exit statuses and signals specified in
652 <varname>SuccessExitStatus=</varname>. If set to
653 <option>on-failure</option>, the service will be restarted
654 when the process exits with a non-zero exit code, is
655 terminated by a signal (including on core dump, but excluding
ff9b60f3 656 the aforementioned four signals), when an operation (such as
798d3a52
ZJS
657 service reload) times out, and when the configured watchdog
658 timeout is triggered. If set to <option>on-abnormal</option>,
659 the service will be restarted when the process is terminated
660 by a signal (including on core dump, excluding the
661 aforementioned four signals), when an operation times out, or
662 when the watchdog timeout is triggered. If set to
663 <option>on-abort</option>, the service will be restarted only
664 if the service process exits due to an uncaught signal not
665 specified as a clean exit status. If set to
666 <option>on-watchdog</option>, the service will be restarted
667 only if the watchdog timeout for the service expires. If set
668 to <option>always</option>, the service will be restarted
669 regardless of whether it exited cleanly or not, got terminated
670 abnormally by a signal, or hit a timeout.</para>
671
672 <table>
673 <title>Exit causes and the effect of the <varname>Restart=</varname> settings on them</title>
674
675 <tgroup cols='2'>
676 <colspec colname='path' />
677 <colspec colname='expl' />
678 <thead>
679 <row>
680 <entry>Restart settings/Exit causes</entry>
681 <entry><option>no</option></entry>
682 <entry><option>always</option></entry>
683 <entry><option>on-success</option></entry>
684 <entry><option>on-failure</option></entry>
685 <entry><option>on-abnormal</option></entry>
686 <entry><option>on-abort</option></entry>
687 <entry><option>on-watchdog</option></entry>
688 </row>
689 </thead>
690 <tbody>
691 <row>
692 <entry>Clean exit code or signal</entry>
693 <entry/>
694 <entry>X</entry>
695 <entry>X</entry>
696 <entry/>
697 <entry/>
698 <entry/>
699 <entry/>
700 </row>
701 <row>
702 <entry>Unclean exit code</entry>
703 <entry/>
704 <entry>X</entry>
705 <entry/>
706 <entry>X</entry>
707 <entry/>
708 <entry/>
709 <entry/>
710 </row>
711 <row>
712 <entry>Unclean signal</entry>
713 <entry/>
714 <entry>X</entry>
715 <entry/>
716 <entry>X</entry>
717 <entry>X</entry>
718 <entry>X</entry>
719 <entry/>
720 </row>
721 <row>
722 <entry>Timeout</entry>
723 <entry/>
724 <entry>X</entry>
725 <entry/>
726 <entry>X</entry>
727 <entry>X</entry>
728 <entry/>
729 <entry/>
730 </row>
731 <row>
732 <entry>Watchdog</entry>
733 <entry/>
734 <entry>X</entry>
735 <entry/>
736 <entry>X</entry>
737 <entry>X</entry>
738 <entry/>
739 <entry>X</entry>
740 </row>
741 </tbody>
742 </tgroup>
743 </table>
744
b938cb90 745 <para>As exceptions to the setting above, the service will not
798d3a52 746 be restarted if the exit code or signal is specified in
09b69d68
TW
747 <varname>RestartPreventExitStatus=</varname> (see below) or
748 the service is stopped with <command>systemctl stop</command>
749 or an equivalent operation. Also, the services will always be
750 restarted if the exit code or signal is specified in
798d3a52
ZJS
751 <varname>RestartForceExitStatus=</varname> (see below).</para>
752
6d249476
LW
753 <para>Note that service restart is subject to unit start rate
754 limiting configured with <varname>StartLimitIntervalSec=</varname>
755 and <varname>StartLimitBurst=</varname>, see
756 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>
757 for details.</para>
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
388a91b0 1008 <para>The command to execute must be an absolute path name. It may
798d3a52
ZJS
1009 contain spaces, but control characters are not allowed.</para>
1010
1011 <para>The command line accepts <literal>%</literal> specifiers as
1012 described in
1013 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
1014 Note that the first argument of the command line (i.e. the program
1015 to execute) may not include specifiers.</para>
1016
1017 <para>Basic environment variable substitution is supported. Use
1018 <literal>${FOO}</literal> as part of a word, or as a word of its
1019 own, on the command line, in which case it will be replaced by the
1020 value of the environment variable including all whitespace it
1021 contains, resulting in a single argument. Use
1022 <literal>$FOO</literal> as a separate word on the command line, in
1023 which case it will be replaced by the value of the environment
b938cb90 1024 variable split at whitespace, resulting in zero or more arguments.
3faf145d 1025 For this type of expansion, quotes are respected when splitting
798d3a52
ZJS
1026 into words, and afterwards removed.</para>
1027
1028 <para>Example:</para>
1029
1030 <programlisting>Environment="ONE=one" 'TWO=two two'
5d9a2698
ZJS
1031ExecStart=/bin/echo $ONE $TWO ${TWO}</programlisting>
1032
798d3a52
ZJS
1033 <para>This will execute <command>/bin/echo</command> with four
1034 arguments: <literal>one</literal>, <literal>two</literal>,
1035 <literal>two</literal>, and <literal>two two</literal>.</para>
5d9a2698 1036
798d3a52
ZJS
1037 <para>Example:</para>
1038 <programlisting>Environment=ONE='one' "TWO='two two' too" THREE=
5d9a2698
ZJS
1039ExecStart=/bin/echo ${ONE} ${TWO} ${THREE}
1040ExecStart=/bin/echo $ONE $TWO $THREE</programlisting>
798d3a52
ZJS
1041 <para>This results in <filename>echo</filename> being
1042 called twice, the first time with arguments
1043 <literal>'one'</literal>,
1044 <literal>'two two' too</literal>, <literal></literal>,
1045 and the second time with arguments
1046 <literal>one</literal>, <literal>two two</literal>,
1047 <literal>too</literal>.
1048 </para>
1049
1050 <para>To pass a literal dollar sign, use <literal>$$</literal>.
1051 Variables whose value is not known at expansion time are treated
1052 as empty strings. Note that the first argument (i.e. the program
1053 to execute) may not be a variable.</para>
1054
1055 <para>Variables to be used in this fashion may be defined through
1056 <varname>Environment=</varname> and
1057 <varname>EnvironmentFile=</varname>. In addition, variables listed
1058 in the section "Environment variables in spawned processes" in
1059 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1060 which are considered "static configuration", may be used (this
1061 includes e.g. <varname>$USER</varname>, but not
1062 <varname>$TERM</varname>).</para>
1063
1064 <para>Note that shell command lines are not directly supported. If
1065 shell command lines are to be used, they need to be passed
1066 explicitly to a shell implementation of some kind. Example:</para>
1067 <programlisting>ExecStart=/bin/sh -c 'dmesg | tac'</programlisting>
1068
1069 <para>Example:</para>
1070
1071 <programlisting>ExecStart=/bin/echo one ; /bin/echo "two two"</programlisting>
1072
1073 <para>This will execute <command>/bin/echo</command> two times,
1074 each time with one argument: <literal>one</literal> and
1075 <literal>two two</literal>, respectively. Because two commands are
1076 specified, <varname>Type=oneshot</varname> must be used.</para>
1077
1078 <para>Example:</para>
1079
1080 <programlisting>ExecStart=/bin/echo / &gt;/dev/null &amp; \; \
30d88d54
ZJS
1081/bin/ls</programlisting>
1082
798d3a52
ZJS
1083 <para>This will execute <command>/bin/echo</command>
1084 with five arguments: <literal>/</literal>,
1085 <literal>&gt;/dev/null</literal>,
1086 <literal>&amp;</literal>, <literal>;</literal>, and
1087 <literal>/bin/ls</literal>.</para>
1088
1089 <table>
1090 <title>C escapes supported in command lines and environment variables</title>
1091 <tgroup cols='2'>
1092 <colspec colname='escape' />
1093 <colspec colname='meaning' />
1094 <thead>
1095 <row>
1096 <entry>Literal</entry>
1097 <entry>Actual value</entry>
1098 </row>
1099 </thead>
1100 <tbody>
1101 <row>
1102 <entry><literal>\a</literal></entry>
1103 <entry>bell</entry>
1104 </row>
1105 <row>
1106 <entry><literal>\b</literal></entry>
1107 <entry>backspace</entry>
1108 </row>
1109 <row>
1110 <entry><literal>\f</literal></entry>
1111 <entry>form feed</entry>
1112 </row>
1113 <row>
1114 <entry><literal>\n</literal></entry>
1115 <entry>newline</entry>
1116 </row>
1117 <row>
1118 <entry><literal>\r</literal></entry>
1119 <entry>carriage return</entry>
1120 </row>
1121 <row>
1122 <entry><literal>\t</literal></entry>
1123 <entry>tab</entry>
1124 </row>
1125 <row>
1126 <entry><literal>\v</literal></entry>
1127 <entry>vertical tab</entry>
1128 </row>
1129 <row>
1130 <entry><literal>\\</literal></entry>
1131 <entry>backslash</entry>
1132 </row>
1133 <row>
1134 <entry><literal>\"</literal></entry>
1135 <entry>double quotation mark</entry>
1136 </row>
1137 <row>
1138 <entry><literal>\'</literal></entry>
1139 <entry>single quotation mark</entry>
1140 </row>
1141 <row>
1142 <entry><literal>\s</literal></entry>
1143 <entry>space</entry>
1144 </row>
1145 <row>
1146 <entry><literal>\x<replaceable>xx</replaceable></literal></entry>
1147 <entry>character number <replaceable>xx</replaceable> in hexadecimal encoding</entry>
1148 </row>
1149 <row>
1150 <entry><literal>\<replaceable>nnn</replaceable></literal></entry>
1151 <entry>character number <replaceable>nnn</replaceable> in octal encoding</entry>
1152 </row>
1153 </tbody>
1154 </tgroup>
1155 </table>
1156 </refsect1>
1157
1158 <refsect1>
1159 <title>Examples</title>
1160
1161 <example>
1162 <title>Simple service</title>
1163
1164 <para>The following unit file creates a service that will
1165 execute <filename>/usr/sbin/foo-daemon</filename>. Since no
1166 <varname>Type=</varname> is specified, the default
1167 <varname>Type=</varname><option>simple</option> will be assumed.
1168 systemd will assume the unit to be started immediately after the
1169 program has begun executing.</para>
1170
1171 <programlisting>[Unit]
d44efb62
CS
1172Description=Foo
1173
1174[Service]
1175ExecStart=/usr/sbin/foo-daemon
1176
1177[Install]
1178WantedBy=multi-user.target</programlisting>
1179
798d3a52
ZJS
1180 <para>Note that systemd assumes here that the process started by
1181 systemd will continue running until the service terminates. If
1182 the program daemonizes itself (i.e. forks), please use
1183 <varname>Type=</varname><option>forking</option> instead.</para>
1184
1185 <para>Since no <varname>ExecStop=</varname> was specified,
1186 systemd will send SIGTERM to all processes started from this
1187 service, and after a timeout also SIGKILL. This behavior can be
1188 modified, see
1189 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1190 for details.</para>
1191
1192 <para>Note that this unit type does not include any type of
1193 notification when a service has completed initialization. For
1194 this, you should use other unit types, such as
1195 <varname>Type=</varname><option>notify</option> if the service
1196 understands systemd's notification protocol,
1197 <varname>Type=</varname><option>forking</option> if the service
1198 can background itself or
1199 <varname>Type=</varname><option>dbus</option> if the unit
1200 acquires a DBus name once initialization is complete. See
1201 below.</para>
1202 </example>
1203
1204 <example>
1205 <title>Oneshot service</title>
1206
b938cb90 1207 <para>Sometimes, units should just execute an action without
798d3a52
ZJS
1208 keeping active processes, such as a filesystem check or a
1209 cleanup action on boot. For this,
1210 <varname>Type=</varname><option>oneshot</option> exists. Units
1211 of this type will wait until the process specified terminates
1212 and then fall back to being inactive. The following unit will
ff9b60f3 1213 perform a cleanup action:</para>
798d3a52
ZJS
1214
1215 <programlisting>[Unit]
d44efb62
CS
1216Description=Cleanup old Foo data
1217
1218[Service]
1219Type=oneshot
1220ExecStart=/usr/sbin/foo-cleanup
1221
1222[Install]
1223WantedBy=multi-user.target</programlisting>
1224
798d3a52 1225 <para>Note that systemd will consider the unit to be in the
b938cb90 1226 state "starting" until the program has terminated, so ordered
798d3a52 1227 dependencies will wait for the program to finish before starting
b938cb90
JE
1228 themselves. The unit will revert to the "inactive" state after
1229 the execution is done, never reaching the "active" state. That
798d3a52
ZJS
1230 means another request to start the unit will perform the action
1231 again.</para>
1232
1233 <para><varname>Type=</varname><option>oneshot</option> are the
1234 only service units that may have more than one
1235 <varname>ExecStart=</varname> specified. They will be executed
1236 in order until either they are all successful or one of them
1237 fails.</para>
1238 </example>
1239
1240 <example>
1241 <title>Stoppable oneshot service</title>
1242
1243 <para>Similarly to the oneshot services, there are sometimes
1244 units that need to execute a program to set up something and
1245 then execute another to shut it down, but no process remains
b938cb90 1246 active while they are considered "started". Network
798d3a52 1247 configuration can sometimes fall into this category. Another use
a8eaaee7 1248 case is if a oneshot service shall not be executed each time
798d3a52
ZJS
1249 when they are pulled in as a dependency, but only the first
1250 time.</para>
1251
1252 <para>For this, systemd knows the setting
1253 <varname>RemainAfterExit=</varname><option>yes</option>, which
1254 causes systemd to consider the unit to be active if the start
1255 action exited successfully. This directive can be used with all
1256 types, but is most useful with
1257 <varname>Type=</varname><option>oneshot</option> and
1258 <varname>Type=</varname><option>simple</option>. With
b938cb90 1259 <varname>Type=</varname><option>oneshot</option>, systemd waits
798d3a52
ZJS
1260 until the start action has completed before it considers the
1261 unit to be active, so dependencies start only after the start
1262 action has succeeded. With
b938cb90 1263 <varname>Type=</varname><option>simple</option>, dependencies
798d3a52
ZJS
1264 will start immediately after the start action has been
1265 dispatched. The following unit provides an example for a simple
1266 static firewall.</para>
1267
1268 <programlisting>[Unit]
d44efb62
CS
1269Description=Simple firewall
1270
1271[Service]
1272Type=oneshot
1273RemainAfterExit=yes
1274ExecStart=/usr/local/sbin/simple-firewall-start
1275ExecStop=/usr/local/sbin/simple-firewall-stop
1276
1277[Install]
1278WantedBy=multi-user.target</programlisting>
1279
798d3a52
ZJS
1280 <para>Since the unit is considered to be running after the start
1281 action has exited, invoking <command>systemctl start</command>
1282 on that unit again will cause no action to be taken.</para>
1283 </example>
1284
1285 <example>
1286 <title>Traditional forking services</title>
1287
1288 <para>Many traditional daemons/services background (i.e. fork,
1289 daemonize) themselves when starting. Set
1290 <varname>Type=</varname><option>forking</option> in the
1291 service's unit file to support this mode of operation. systemd
1292 will consider the service to be in the process of initialization
1293 while the original program is still running. Once it exits
1294 successfully and at least a process remains (and
1295 <varname>RemainAfterExit=</varname><option>no</option>), the
1296 service is considered started.</para>
1297
b938cb90 1298 <para>Often, a traditional daemon only consists of one process.
798d3a52
ZJS
1299 Therefore, if only one process is left after the original
1300 process terminates, systemd will consider that process the main
1301 process of the service. In that case, the
1302 <varname>$MAINPID</varname> variable will be available in
1303 <varname>ExecReload=</varname>, <varname>ExecStop=</varname>,
1304 etc.</para>
1305
1306 <para>In case more than one process remains, systemd will be
1307 unable to determine the main process, so it will not assume
1308 there is one. In that case, <varname>$MAINPID</varname> will not
1309 expand to anything. However, if the process decides to write a
1310 traditional PID file, systemd will be able to read the main PID
1311 from there. Please set <varname>PIDFile=</varname> accordingly.
1312 Note that the daemon should write that file before finishing
b938cb90 1313 with its initialization. Otherwise, systemd might try to read the
798d3a52
ZJS
1314 file before it exists.</para>
1315
1316 <para>The following example shows a simple daemon that forks and
1317 just starts one process in the background:</para>
1318
1319 <programlisting>[Unit]
d44efb62
CS
1320Description=Some simple daemon
1321
1322[Service]
1323Type=forking
1324ExecStart=/usr/sbin/my-simple-daemon -d
1325
1326[Install]
1327WantedBy=multi-user.target</programlisting>
1328
798d3a52
ZJS
1329 <para>Please see
1330 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1331 for details on how you can influence the way systemd terminates
1332 the service.</para>
1333 </example>
1334
1335 <example>
1336 <title>DBus services</title>
1337
1338 <para>For services that acquire a name on the DBus system bus,
1339 use <varname>Type=</varname><option>dbus</option> and set
1340 <varname>BusName=</varname> accordingly. The service should not
1341 fork (daemonize). systemd will consider the service to be
1342 initialized once the name has been acquired on the system bus.
1343 The following example shows a typical DBus service:</para>
1344
1345 <programlisting>[Unit]
d44efb62
CS
1346Description=Simple DBus service
1347
1348[Service]
1349Type=dbus
1350BusName=org.example.simple-dbus-service
1351ExecStart=/usr/sbin/simple-dbus-service
1352
1353[Install]
1354WantedBy=multi-user.target</programlisting>
1355
7ca41557 1356 <para>For <emphasis>bus-activatable</emphasis> services, do not
798d3a52
ZJS
1357 include a <literal>[Install]</literal> section in the systemd
1358 service file, but use the <varname>SystemdService=</varname>
1359 option in the corresponding DBus service file, for example
1360 (<filename>/usr/share/dbus-1/system-services/org.example.simple-dbus-service.service</filename>):</para>
d44efb62 1361
798d3a52 1362 <programlisting>[D-BUS Service]
d44efb62
CS
1363Name=org.example.simple-dbus-service
1364Exec=/usr/sbin/simple-dbus-service
1365User=root
1366SystemdService=simple-dbus-service.service</programlisting>
1367
798d3a52
ZJS
1368 <para>Please see
1369 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1370 for details on how you can influence the way systemd terminates
1371 the service.</para>
1372 </example>
1373
1374 <example>
1375 <title>Services that notify systemd about their initialization</title>
1376
1377 <para><varname>Type=</varname><option>simple</option> services
1378 are really easy to write, but have the major disadvantage of
1379 systemd not being able to tell when initialization of the given
1380 service is complete. For this reason, systemd supports a simple
1381 notification protocol that allows daemons to make systemd aware
1382 that they are done initializing. Use
1383 <varname>Type=</varname><option>notify</option> for this. A
1384 typical service file for such a daemon would look like
1385 this:</para>
1386
1387 <programlisting>[Unit]
d44efb62
CS
1388Description=Simple notifying service
1389
1390[Service]
1391Type=notify
1392ExecStart=/usr/sbin/simple-notifying-service
1393
1394[Install]
1395WantedBy=multi-user.target</programlisting>
1396
798d3a52 1397 <para>Note that the daemon has to support systemd's notification
7ca41557 1398 protocol, else systemd will think the service has not started yet
798d3a52
ZJS
1399 and kill it after a timeout. For an example of how to update
1400 daemons to support this protocol transparently, take a look at
1401 <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
1402 systemd will consider the unit to be in the 'starting' state
1403 until a readiness notification has arrived.</para>
1404
1405 <para>Please see
1406 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1407 for details on how you can influence the way systemd terminates
1408 the service.</para>
1409 </example>
1410 </refsect1>
1411
1412 <refsect1>
1413 <title>See Also</title>
1414 <para>
1415 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1416 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1417 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1418 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1419 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1420 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1421 <citerefentry><refentrytitle>systemd.directives</refentrytitle><manvolnum>7</manvolnum></citerefentry>
1422 </para>
1423 </refsect1>
d1ab0ca0
LP
1424
1425</refentry>