]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd.unit.xml
device: rework device_is_bound_by_mounts() a bit
[thirdparty/systemd.git] / man / systemd.unit.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"
798d3a52 3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
1a13e31d
ZJS
4<!ENTITY % entities SYSTEM "custom-entities.ent" >
5%entities;
6]>
d1ab0ca0
LP
7
8<!--
9 This file is part of systemd.
10
11 Copyright 2010 Lennart Poettering
12
13 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
14 under the terms of the GNU Lesser General Public License as published by
15 the Free Software Foundation; either version 2.1 of the License, or
d1ab0ca0
LP
16 (at your option) any later version.
17
18 systemd is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 21 Lesser General Public License for more details.
d1ab0ca0 22
5430f7f2 23 You should have received a copy of the GNU Lesser General Public License
d1ab0ca0
LP
24 along with systemd; If not, see <http://www.gnu.org/licenses/>.
25-->
26
27<refentry id="systemd.unit">
28
798d3a52
ZJS
29 <refentryinfo>
30 <title>systemd.unit</title>
31 <productname>systemd</productname>
32
33 <authorgroup>
34 <author>
35 <contrib>Developer</contrib>
36 <firstname>Lennart</firstname>
37 <surname>Poettering</surname>
38 <email>lennart@poettering.net</email>
39 </author>
40 </authorgroup>
41 </refentryinfo>
42
43 <refmeta>
44 <refentrytitle>systemd.unit</refentrytitle>
45 <manvolnum>5</manvolnum>
46 </refmeta>
47
48 <refnamediv>
49 <refname>systemd.unit</refname>
50 <refpurpose>Unit configuration</refpurpose>
51 </refnamediv>
52
53 <refsynopsisdiv>
54 <para><filename><replaceable>service</replaceable>.service</filename>,
55 <filename><replaceable>socket</replaceable>.socket</filename>,
56 <filename><replaceable>device</replaceable>.device</filename>,
57 <filename><replaceable>mount</replaceable>.mount</filename>,
58 <filename><replaceable>automount</replaceable>.automount</filename>,
59 <filename><replaceable>swap</replaceable>.swap</filename>,
60 <filename><replaceable>target</replaceable>.target</filename>,
61 <filename><replaceable>path</replaceable>.path</filename>,
62 <filename><replaceable>timer</replaceable>.timer</filename>,
798d3a52
ZJS
63 <filename><replaceable>slice</replaceable>.slice</filename>,
64 <filename><replaceable>scope</replaceable>.scope</filename></para>
65
12b42c76 66 <para><literallayout><filename>/etc/systemd/system/*</filename>
13219b7f 67<filename>/run/systemd/system/*</filename>
12b42c76 68<filename>/usr/lib/systemd/system/*</filename>
f6e1bd2c 69<filename>…</filename>
798d3a52 70 </literallayout></para>
13219b7f 71
f6e1bd2c 72 <para><literallayout><filename>~/.config/systemd/user/*</filename>
12b42c76 73<filename>/etc/systemd/user/*</filename>
aa08982d 74<filename>$XDG_RUNTIME_DIR/systemd/user/*</filename>
13219b7f 75<filename>/run/systemd/user/*</filename>
f6e1bd2c 76<filename>~/.local/share/systemd/user/*</filename>
12b42c76 77<filename>/usr/lib/systemd/user/*</filename>
f6e1bd2c 78<filename>…</filename>
798d3a52
ZJS
79 </literallayout></para>
80 </refsynopsisdiv>
81
82 <refsect1>
83 <title>Description</title>
84
85 <para>A unit configuration file encodes information about a
86 service, a socket, a device, a mount point, an automount point, a
87 swap file or partition, a start-up target, a watched file system
88 path, a timer controlled and supervised by
89 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
36b4a7ba 90 a resource management slice or
798d3a52
ZJS
91 a group of externally created processes. The syntax is inspired by
92 <ulink
93 url="http://standards.freedesktop.org/desktop-entry-spec/latest/">XDG
94 Desktop Entry Specification</ulink> <filename>.desktop</filename>
95 files, which are in turn inspired by Microsoft Windows
96 <filename>.ini</filename> files.</para>
97
98 <para>This man page lists the common configuration options of all
99 the unit types. These options need to be configured in the [Unit]
100 or [Install] sections of the unit files.</para>
101
102 <para>In addition to the generic [Unit] and [Install] sections
103 described here, each unit may have a type-specific section, e.g.
104 [Service] for a service unit. See the respective man pages for
105 more information:
106 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
107 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
108 <citerefentry><refentrytitle>systemd.device</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
109 <citerefentry><refentrytitle>systemd.mount</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
110 <citerefentry><refentrytitle>systemd.automount</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
111 <citerefentry><refentrytitle>systemd.swap</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
112 <citerefentry><refentrytitle>systemd.target</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
113 <citerefentry><refentrytitle>systemd.path</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
114 <citerefentry><refentrytitle>systemd.timer</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
36b4a7ba 115 <citerefentry><refentrytitle>systemd.slice</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
798d3a52
ZJS
116 <citerefentry><refentrytitle>systemd.scope</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
117 </para>
118
119 <para>Various settings are allowed to be specified more than once,
120 in which case the interpretation depends on the setting. Often,
121 multiple settings form a list, and setting to an empty value
122 "resets", which means that previous assignments are ignored. When
123 this is allowed, it is mentioned in the description of the
124 setting. Note that using multiple assignments to the same value
125 makes the unit file incompatible with parsers for the XDG
126 <filename>.desktop</filename> file format.</para>
127
128 <para>Unit files are loaded from a set of paths determined during
129 compilation, described in the next section.</para>
130
131 <para>Unit files may contain additional options on top of those
132 listed here. If systemd encounters an unknown option, it will
133 write a warning log message but continue loading the unit. If an
134 option or section name is prefixed with <option>X-</option>, it is
135 ignored completely by systemd. Options within an ignored section
136 do not need the prefix. Applications may use this to include
137 additional information in the unit files.</para>
138
139 <para>Boolean arguments used in unit files can be written in
140 various formats. For positive settings the strings
141 <option>1</option>, <option>yes</option>, <option>true</option>
142 and <option>on</option> are equivalent. For negative settings, the
143 strings <option>0</option>, <option>no</option>,
144 <option>false</option> and <option>off</option> are
145 equivalent.</para>
146
bac150e9
ZJS
147 <para>Time span values encoded in unit files can be written in various formats. A stand-alone
148 number specifies a time in seconds. If suffixed with a time unit, the unit is honored. A
149 concatenation of multiple values with units is supported, in which case the values are added
150 up. Example: <literal>50</literal> refers to 50 seconds; <literal>2min 200ms</literal> refers to
151 2 minutes and 200 milliseconds, i.e. 120200 ms. The following time units are understood:
152 <literal>s</literal>, <literal>min</literal>, <literal>h</literal>, <literal>d</literal>,
d923e42e 153 <literal>w</literal>, <literal>ms</literal>, <literal>us</literal>. For details see
798d3a52
ZJS
154 <citerefentry><refentrytitle>systemd.time</refentrytitle><manvolnum>7</manvolnum></citerefentry>.</para>
155
bac150e9
ZJS
156 <para>Empty lines and lines starting with <literal>#</literal> or <literal>;</literal> are
157 ignored. This may be used for commenting. Lines ending in a backslash are concatenated with the
158 following line while reading and the backslash is replaced by a space character. This may be
159 used to wrap long lines.</para>
160
161 <para>Units can be aliased (have an alternative name), by creating a symlink from the new name
162 to the existing name in one of the unit search paths. For example,
163 <filename>systemd-networkd.service</filename> has the alias
164 <filename>dbus-org.freedesktop.network1.service</filename>, created during installation as the
165 symlink <filename>/usr/lib/systemd/system/dbus-org.freedesktop.network1.service</filename>. In
166 addition, unit files may specify aliases through the <varname>Alias=</varname> directive in the
167 [Install] section; those aliases are only effective when the unit is enabled. When the unit is
168 enabled, symlinks will be created for those names, and removed when the unit is disabled. For
169 example, <filename>reboot.target</filename> specifies
170 <varname>Alias=ctrl-alt-del.target</varname>, so when enabled it will be invoked whenever
171 CTRL+ALT+DEL is pressed. Alias names may be used in commands like <command>enable</command>,
172 <command>disable</command>, <command>start</command>, <command>stop</command>,
173 <command>status</command>, …, and in unit dependency directives <varname>Wants=</varname>,
174 <varname>Requires=</varname>, <varname>Before=</varname>, <varname>After=</varname>, …, with the
175 limitation that aliases specified through <varname>Alias=</varname> are only effective when the
176 unit is enabled. Aliases cannot be used with the <command>preset</command> command.</para>
177
178 <para>Along with a unit file <filename>foo.service</filename>, the directory
179 <filename>foo.service.wants/</filename> may exist. All unit files symlinked from such a
180 directory are implicitly added as dependencies of type <varname>Wants=</varname> to the unit.
181 This is useful to hook units into the start-up of other units, without having to modify their
182 unit files. For details about the semantics of <varname>Wants=</varname>, see below. The
183 preferred way to create symlinks in the <filename>.wants/</filename> directory of a unit file is
184 with the <command>enable</command> command of the
798d3a52 185 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
bac150e9
ZJS
186 tool which reads information from the [Install] section of unit files (see below). A similar
187 functionality exists for <varname>Requires=</varname> type dependencies as well, the directory
188 suffix is <filename>.requires/</filename> in this case.</para>
798d3a52 189
be73bb48 190 <para>Along with a unit file <filename>foo.service</filename>, a "drop-in" directory
bac150e9
ZJS
191 <filename>foo.service.d/</filename> may exist. All files with the suffix
192 <literal>.conf</literal> from this directory will be parsed after the file itself is
193 parsed. This is useful to alter or add configuration settings for a unit, without having to
194 modify unit files. Each drop-in file must have appropriate section headers. Note that for
195 instantiated units, this logic will first look for the instance <literal>.d/</literal>
196 subdirectory and read its <literal>.conf</literal> files, followed by the template
caa45f5b 197 <literal>.d/</literal> subdirectory and the <literal>.conf</literal> files there.</para>
bac150e9
ZJS
198
199 <para>In addition to <filename>/etc/systemd/system</filename>, the drop-in <literal>.d</literal>
200 directories for system services can be placed in <filename>/usr/lib/systemd/system</filename> or
201 <filename>/run/systemd/system</filename> directories. Drop-in files in <filename>/etc</filename>
202 take precedence over those in <filename>/run</filename> which in turn take precedence over those
203 in <filename>/usr/lib</filename>. Drop-in files under any of these directories take precedence
8331eaab
LW
204 over unit files wherever located. Multiple drop-in files with different names are applied in
205 lexicographic order, regardless of which of the directories they reside in.</para>
bac150e9
ZJS
206
207 <!-- Note that we do not document .include here, as we consider it mostly obsolete, and want
208 people to use .d/ drop-ins instead. -->
798d3a52 209
bbe0b4a8
JL
210 <para>Note that while systemd offers a flexible dependency system
211 between units it is recommended to use this functionality only
212 sparingly and instead rely on techniques such as bus-based or
213 socket-based activation which make dependencies implicit,
214 resulting in a both simpler and more flexible system.</para>
215
798d3a52
ZJS
216 <para>Some unit names reflect paths existing in the file system
217 namespace. Example: a device unit
218 <filename>dev-sda.device</filename> refers to a device with the
219 device node <filename noindex='true'>/dev/sda</filename> in the
220 file system namespace. If this applies, a special way to escape
221 the path name is used, so that the result is usable as part of a
b938cb90 222 filename. Basically, given a path, "/" is replaced by "-", and all
798d3a52
ZJS
223 other characters which are not ASCII alphanumerics are replaced by
224 C-style "\x2d" escapes (except that "_" is never replaced and "."
225 is only replaced when it would be the first character in the
226 escaped path). The root directory "/" is encoded as single dash,
227 while otherwise the initial and ending "/" are removed from all
228 paths during transformation. This escaping is reversible. Properly
229 escaped paths can be generated using the
230 <citerefentry><refentrytitle>systemd-escape</refentrytitle><manvolnum>1</manvolnum></citerefentry>
231 command.</para>
232
233 <para>Optionally, units may be instantiated from a
234 template file at runtime. This allows creation of
235 multiple units from a single configuration file. If
236 systemd looks for a unit configuration file, it will
237 first search for the literal unit name in the
238 file system. If that yields no success and the unit
239 name contains an <literal>@</literal> character, systemd will look for a
240 unit template that shares the same name but with the
241 instance string (i.e. the part between the <literal>@</literal> character
242 and the suffix) removed. Example: if a service
243 <filename>getty@tty3.service</filename> is requested
244 and no file by that name is found, systemd will look
245 for <filename>getty@.service</filename> and
246 instantiate a service from that configuration file if
247 it is found.</para>
248
249 <para>To refer to the instance string from within the
250 configuration file you may use the special <literal>%i</literal>
251 specifier in many of the configuration options. See below for
252 details.</para>
253
254 <para>If a unit file is empty (i.e. has the file size 0) or is
255 symlinked to <filename>/dev/null</filename>, its configuration
256 will not be loaded and it appears with a load state of
257 <literal>masked</literal>, and cannot be activated. Use this as an
258 effective way to fully disable a unit, making it impossible to
259 start it even manually.</para>
260
261 <para>The unit file format is covered by the
262 <ulink
28a0ad81 263 url="https://www.freedesktop.org/wiki/Software/systemd/InterfaceStabilityPromise">Interface
798d3a52
ZJS
264 Stability Promise</ulink>.</para>
265
266 </refsect1>
267
c129bd5d 268 <refsect1>
45f09f93
JL
269 <title>Implicit Dependencies</title>
270
271 <para>A number of unit dependencies are implicitly established,
272 depending on unit type and unit configuration. These implicit
273 dependencies can make unit configuration file cleaner. For the
274 implicit dependencies in each unit type, please refer to
275 section "Implicit Dependencies" in respective man pages.</para>
276
277 <para>For example, service units with <varname>Type=dbus</varname>
278 automatically acquire dependencies of type <varname>Requires=</varname>
279 and <varname>After=</varname> on <filename>dbus.socket</filename>. See
280 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>
c129bd5d
LP
281 for details.</para>
282 </refsect1>
283
45f09f93
JL
284 <refsect1>
285 <title>Default Dependencies</title>
286
287 <para>Default dependencies are similar to implicit dependencies,
288 but can be turned on and off by setting
289 <varname>DefaultDependencies=</varname> to <varname>yes</varname>
290 (the default) and <varname>no</varname>, while implicit dependencies
291 are always in effect. See section "Default Dependencies" in respective
292 man pages for the effect of enabling
293 <varname>DefaultDependencies=</varname> in each unit types.</para>
294
295 <para>For example, target units will complement all configured
dcfaecc7 296 dependencies of type <varname>Wants=</varname> or
45f09f93 297 <varname>Requires=</varname> with dependencies of type
c85f1346
YW
298 <varname>After=</varname> unless <varname>DefaultDependencies=no</varname>
299 is set in the specified units. See
45f09f93
JL
300 <citerefentry><refentrytitle>systemd.target</refentrytitle><manvolnum>5</manvolnum></citerefentry>
301 for details. Note that this behavior can be turned off by setting
302 <varname>DefaultDependencies=no</varname>.</para>
303 </refsect1>
304
798d3a52 305 <refsect1>
f757855e 306 <title>Unit File Load Path</title>
798d3a52
ZJS
307
308 <para>Unit files are loaded from a set of paths determined during
309 compilation, described in the two tables below. Unit files found
310 in directories listed earlier override files with the same name in
311 directories lower in the list.</para>
312
aa3e4400
EV
313 <para>When the variable <varname>$SYSTEMD_UNIT_PATH</varname> is set,
314 the contents of this variable overrides the unit load path. If
798d3a52
ZJS
315 <varname>$SYSTEMD_UNIT_PATH</varname> ends with an empty component
316 (<literal>:</literal>), the usual unit load path will be appended
317 to the contents of the variable.</para>
318
319 <table>
320 <title>
321 Load path when running in system mode (<option>--system</option>).
322 </title>
323
324 <tgroup cols='2'>
325 <colspec colname='path' />
326 <colspec colname='expl' />
327 <thead>
328 <row>
329 <entry>Path</entry>
330 <entry>Description</entry>
331 </row>
332 </thead>
333 <tbody>
334 <row>
12b42c76 335 <entry><filename>/etc/systemd/system</filename></entry>
798d3a52
ZJS
336 <entry>Local configuration</entry>
337 </row>
338 <row>
339 <entry><filename>/run/systemd/system</filename></entry>
340 <entry>Runtime units</entry>
341 </row>
342 <row>
12b42c76 343 <entry><filename>/usr/lib/systemd/system</filename></entry>
798d3a52
ZJS
344 <entry>Units of installed packages</entry>
345 </row>
346 </tbody>
347 </tgroup>
348 </table>
349
350 <table>
351 <title>
352 Load path when running in user mode (<option>--user</option>).
353 </title>
354
355 <tgroup cols='2'>
356 <colspec colname='path' />
357 <colspec colname='expl' />
358 <thead>
359 <row>
360 <entry>Path</entry>
361 <entry>Description</entry>
362 </row>
363 </thead>
364 <tbody>
365 <row>
366 <entry><filename>$XDG_CONFIG_HOME/systemd/user</filename></entry>
367 <entry>User configuration (only used when $XDG_CONFIG_HOME is set)</entry>
368 </row>
369 <row>
370 <entry><filename>$HOME/.config/systemd/user</filename></entry>
371 <entry>User configuration (only used when $XDG_CONFIG_HOME is not set)</entry>
372 </row>
373 <row>
12b42c76 374 <entry><filename>/etc/systemd/user</filename></entry>
798d3a52
ZJS
375 <entry>Local configuration</entry>
376 </row>
377 <row>
378 <entry><filename>$XDG_RUNTIME_DIR/systemd/user</filename></entry>
379 <entry>Runtime units (only used when $XDG_RUNTIME_DIR is set)</entry>
380 </row>
381 <row>
382 <entry><filename>/run/systemd/user</filename></entry>
383 <entry>Runtime units</entry>
384 </row>
385 <row>
386 <entry><filename>$XDG_DATA_HOME/systemd/user</filename></entry>
387 <entry>Units of packages that have been installed in the home directory (only used when $XDG_DATA_HOME is set)</entry>
388 </row>
389 <row>
390 <entry><filename>$HOME/.local/share/systemd/user</filename></entry>
391 <entry>Units of packages that have been installed in the home directory (only used when $XDG_DATA_HOME is not set)</entry>
392 </row>
393 <row>
12b42c76 394 <entry><filename>/usr/lib/systemd/user</filename></entry>
798d3a52
ZJS
395 <entry>Units of packages that have been installed system-wide</entry>
396 </row>
397 </tbody>
398 </tgroup>
399 </table>
400
401 <para>Additional units might be loaded into systemd ("linked")
402 from directories not on the unit load path. See the
403 <command>link</command> command for
404 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
b1c1a519
ZC
405 Also, some units are dynamically created via a
406 <citerefentry><refentrytitle>systemd.generator</refentrytitle><manvolnum>7</manvolnum></citerefentry>.
798d3a52
ZJS
407 </para>
408 </refsect1>
409
410 <refsect1>
411 <title>[Unit] Section Options</title>
412
a8eaaee7 413 <para>The unit file may include a [Unit] section, which carries
798d3a52
ZJS
414 generic information about the unit that is not dependent on the
415 type of unit:</para>
416
417 <variablelist class='unit-directives'>
418
419 <varlistentry>
420 <term><varname>Description=</varname></term>
421 <listitem><para>A free-form string describing the unit. This
422 is intended for use in UIs to show descriptive information
423 along with the unit name. The description should contain a
424 name that means something to the end user. <literal>Apache2
425 Web Server</literal> is a good example. Bad examples are
426 <literal>high-performance light-weight HTTP server</literal>
427 (too generic) or <literal>Apache2</literal> (too specific and
428 meaningless for people who do not know
429 Apache).</para></listitem>
430 </varlistentry>
431
432 <varlistentry>
433 <term><varname>Documentation=</varname></term>
434 <listitem><para>A space-separated list of URIs referencing
435 documentation for this unit or its configuration. Accepted are
436 only URIs of the types <literal>http://</literal>,
437 <literal>https://</literal>, <literal>file:</literal>,
438 <literal>info:</literal>, <literal>man:</literal>. For more
439 information about the syntax of these URIs, see <citerefentry
440 project='man-pages'><refentrytitle>uri</refentrytitle><manvolnum>7</manvolnum></citerefentry>.
441 The URIs should be listed in order of relevance, starting with
442 the most relevant. It is a good idea to first reference
443 documentation that explains what the unit's purpose is,
444 followed by how it is configured, followed by any other
445 related documentation. This option may be specified more than
446 once, in which case the specified list of URIs is merged. If
447 the empty string is assigned to this option, the list is reset
448 and all prior assignments will have no
449 effect.</para></listitem>
450 </varlistentry>
451
452 <varlistentry>
453 <term><varname>Requires=</varname></term>
454
62d3ca24 455 <listitem><para>Configures requirement dependencies on other units. If this unit gets activated, the units
a195dd8e
JL
456 listed here will be activated as well. If one of the other units fails to activate, and an ordering dependency
457 <varname>After=</varname> on the failing unit is set, this
458 unit will not be started. This option may be specified more than once or multiple space-separated units may be
62d3ca24
LP
459 specified in one option in which case requirement dependencies for all listed names will be created. Note that
460 requirement dependencies do not influence the order in which services are started or stopped. This has to be
461 configured independently with the <varname>After=</varname> or <varname>Before=</varname> options. If a unit
462 <filename>foo.service</filename> requires a unit <filename>bar.service</filename> as configured with
463 <varname>Requires=</varname> and no ordering is configured with <varname>After=</varname> or
464 <varname>Before=</varname>, then both units will be started simultaneously and without any delay between them
465 if <filename>foo.service</filename> is activated. Often, it is a better choice to use <varname>Wants=</varname>
466 instead of <varname>Requires=</varname> in order to achieve a system that is more robust when dealing with
467 failing services.</para>
468
469 <para>Note that this dependency type does not imply that the other unit always has to be in active state when
470 this unit is running. Specifically: failing condition checks (such as <varname>ConditionPathExists=</varname>,
6b5bb2f9 471 <varname>ConditionPathIsSymbolicLink=</varname>, … — see below) do not cause the start job of a unit with a
62d3ca24
LP
472 <varname>Requires=</varname> dependency on it to fail. Also, some unit types may deactivate on their own (for
473 example, a service process may decide to exit cleanly, or a device may be unplugged by the user), which is not
474 propagated to units having a <varname>Requires=</varname> dependency. Use the <varname>BindsTo=</varname>
475 dependency type together with <varname>After=</varname> to ensure that a unit may never be in active state
476 without a specific other unit also in active state (see below).</para>
477
478 <para>Note that dependencies of this type may also be configured outside of the unit configuration file by
479 adding a symlink to a <filename>.requires/</filename> directory accompanying the unit file. For details, see
798d3a52
ZJS
480 above.</para></listitem>
481 </varlistentry>
482
798d3a52
ZJS
483 <varlistentry>
484 <term><varname>Requisite=</varname></term>
798d3a52 485
f32b43bd 486 <listitem><para>Similar to <varname>Requires=</varname>.
798d3a52
ZJS
487 However, if the units listed here are not started already,
488 they will not be started and the transaction will fail
489 immediately. </para></listitem>
490 </varlistentry>
491
492 <varlistentry>
493 <term><varname>Wants=</varname></term>
494
495 <listitem><para>A weaker version of
496 <varname>Requires=</varname>. Units listed in this option will
497 be started if the configuring unit is. However, if the listed
498 units fail to start or cannot be added to the transaction,
499 this has no impact on the validity of the transaction as a
500 whole. This is the recommended way to hook start-up of one
501 unit to the start-up of another unit.</para>
502
503 <para>Note that dependencies of this type may also be
504 configured outside of the unit configuration file by adding
505 symlinks to a <filename>.wants/</filename> directory
506 accompanying the unit file. For details, see
507 above.</para></listitem>
508 </varlistentry>
509
510 <varlistentry>
511 <term><varname>BindsTo=</varname></term>
512
62d3ca24
LP
513 <listitem><para>Configures requirement dependencies, very similar in style to
514 <varname>Requires=</varname>. However, this dependency type is stronger: in addition to the effect of
515 <varname>Requires=</varname> it declares that if the unit bound to is stopped, this unit will be stopped
516 too. This means a unit bound to another unit that suddenly enters inactive state will be stopped too.
517 Units can suddenly, unexpectedly enter inactive state for different reasons: the main process of a service unit
518 might terminate on its own choice, the backing device of a device unit might be unplugged or the mount point of
519 a mount unit might be unmounted without involvement of the system and service manager.</para>
520
521 <para>When used in conjunction with <varname>After=</varname> on the same unit the behaviour of
522 <varname>BindsTo=</varname> is even stronger. In this case, the unit bound to strictly has to be in active
523 state for this unit to also be in active state. This not only means a unit bound to another unit that suddenly
524 enters inactive state, but also one that is bound to another unit that gets skipped due to a failed condition
525 check (such as <varname>ConditionPathExists=</varname>, <varname>ConditionPathIsSymbolicLink=</varname>, … —
526 see below) will be stopped, should it be running. Hence, in many cases it is best to combine
527 <varname>BindsTo=</varname> with <varname>After=</varname>.</para></listitem>
798d3a52
ZJS
528 </varlistentry>
529
530 <varlistentry>
531 <term><varname>PartOf=</varname></term>
532
533 <listitem><para>Configures dependencies similar to
534 <varname>Requires=</varname>, but limited to stopping and
535 restarting of units. When systemd stops or restarts the units
536 listed here, the action is propagated to this unit. Note that
537 this is a one-way dependency — changes to this unit do not
538 affect the listed units. </para></listitem>
539 </varlistentry>
540
541 <varlistentry>
542 <term><varname>Conflicts=</varname></term>
543
544 <listitem><para>A space-separated list of unit names.
545 Configures negative requirement dependencies. If a unit has a
546 <varname>Conflicts=</varname> setting on another unit,
547 starting the former will stop the latter and vice versa. Note
548 that this setting is independent of and orthogonal to the
549 <varname>After=</varname> and <varname>Before=</varname>
550 ordering dependencies.</para>
551
552 <para>If a unit A that conflicts with a unit B is scheduled to
553 be started at the same time as B, the transaction will either
554 fail (in case both are required part of the transaction) or be
555 modified to be fixed (in case one or both jobs are not a
556 required part of the transaction). In the latter case, the job
557 that is not the required will be removed, or in case both are
558 not required, the unit that conflicts will be started and the
559 unit that is conflicted is stopped.</para></listitem>
560 </varlistentry>
561
562 <varlistentry>
563 <term><varname>Before=</varname></term>
564 <term><varname>After=</varname></term>
565
2eb6ff5e
LP
566 <listitem><para>These two settings expect a space-separated list of unit names. They configure ordering
567 dependencies between units. If a unit <filename>foo.service</filename> contains a setting
568 <option>Before=bar.service</option> and both units are being started, <filename>bar.service</filename>'s
569 start-up is delayed until <filename>foo.service</filename> has finished starting up. Note that this setting is
570 independent of and orthogonal to the requirement dependencies as configured by <varname>Requires=</varname>,
571 <varname>Wants=</varname> or <varname>BindsTo=</varname>. It is a common pattern to include a unit name in both
572 the <varname>After=</varname> and <varname>Requires=</varname> options, in which case the unit listed will be
573 started before the unit that is configured with these options. This option may be specified more than once, in
574 which case ordering dependencies for all listed names are created. <varname>After=</varname> is the inverse of
575 <varname>Before=</varname>, i.e. while <varname>After=</varname> ensures that the configured unit is started
576 after the listed unit finished starting up, <varname>Before=</varname> ensures the opposite, that the
577 configured unit is fully started up before the listed unit is started. Note that when two units with an
578 ordering dependency between them are shut down, the inverse of the start-up order is applied. i.e. if a unit is
579 configured with <varname>After=</varname> on another unit, the former is stopped before the latter if both are
580 shut down. Given two units with any ordering dependency between them, if one unit is shut down and the other is
581 started up, the shutdown is ordered before the start-up. It doesn't matter if the ordering dependency is
582 <varname>After=</varname> or <varname>Before=</varname>, in this case. It also doesn't matter which of the two
583 is shut down, as long as one is shut down and the other is started up. The shutdown is ordered before the
584 start-up in all cases. If two units have no ordering dependencies between them, they are shut down or started
585 up simultaneously, and no ordering takes place. It depends on the unit type when precisely a unit has finished
586 starting up. Most importantly, for service units start-up is considered completed for the purpose of
587 <varname>Before=</varname>/<varname>After=</varname> when all its configured start-up commands have been
588 invoked and they either failed or reported start-up success.</para></listitem>
798d3a52
ZJS
589 </varlistentry>
590
591 <varlistentry>
592 <term><varname>OnFailure=</varname></term>
593
594 <listitem><para>A space-separated list of one or more units
595 that are activated when this unit enters the
596 <literal>failed</literal> state.</para></listitem>
597 </varlistentry>
598
599 <varlistentry>
600 <term><varname>PropagatesReloadTo=</varname></term>
601 <term><varname>ReloadPropagatedFrom=</varname></term>
602
603 <listitem><para>A space-separated list of one or more units
604 where reload requests on this unit will be propagated to, or
605 reload requests on the other unit will be propagated to this
606 unit, respectively. Issuing a reload request on a unit will
607 automatically also enqueue a reload request on all units that
608 the reload request shall be propagated to via these two
609 settings.</para></listitem>
610 </varlistentry>
611
612 <varlistentry>
613 <term><varname>JoinsNamespaceOf=</varname></term>
614
615 <listitem><para>For units that start processes (such as
616 service units), lists one or more other units whose network
617 and/or temporary file namespace to join. This only applies to
618 unit types which support the
619 <varname>PrivateNetwork=</varname> and
620 <varname>PrivateTmp=</varname> directives (see
621 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
622 for details). If a unit that has this setting set is started,
623 its processes will see the same <filename>/tmp</filename>,
80f524a4 624 <filename>/var/tmp</filename> and network namespace as one
798d3a52
ZJS
625 listed unit that is started. If multiple listed units are
626 already started, it is not defined which namespace is joined.
627 Note that this setting only has an effect if
628 <varname>PrivateNetwork=</varname> and/or
629 <varname>PrivateTmp=</varname> is enabled for both the unit
630 that joins the namespace and the unit whose namespace is
631 joined.</para></listitem>
632 </varlistentry>
633
634 <varlistentry>
635 <term><varname>RequiresMountsFor=</varname></term>
636
637 <listitem><para>Takes a space-separated list of absolute
638 paths. Automatically adds dependencies of type
639 <varname>Requires=</varname> and <varname>After=</varname> for
640 all mount units required to access the specified path.</para>
641
642 <para>Mount points marked with <option>noauto</option> are not
88e328fd
ZJS
643 mounted automatically through <filename>local-fs.target</filename>,
644 but are still honored for the purposes of this option, i.e. they
645 will be pulled in by this unit.</para></listitem>
798d3a52
ZJS
646 </varlistentry>
647
648 <varlistentry>
649 <term><varname>OnFailureJobMode=</varname></term>
650
651 <listitem><para>Takes a value of
652 <literal>fail</literal>,
653 <literal>replace</literal>,
654 <literal>replace-irreversibly</literal>,
655 <literal>isolate</literal>,
656 <literal>flush</literal>,
657 <literal>ignore-dependencies</literal> or
658 <literal>ignore-requirements</literal>. Defaults to
659 <literal>replace</literal>. Specifies how the units listed in
660 <varname>OnFailure=</varname> will be enqueued. See
661 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>'s
662 <option>--job-mode=</option> option for details on the
663 possible values. If this is set to <literal>isolate</literal>,
664 only a single unit may be listed in
665 <varname>OnFailure=</varname>..</para></listitem>
666 </varlistentry>
667
668 <varlistentry>
669 <term><varname>IgnoreOnIsolate=</varname></term>
670
26adf774
ZJS
671 <listitem><para>Takes a boolean argument. If <option>true</option>, this unit
672 will not be stopped when isolating another unit. Defaults to
673 <option>false</option> for service, target, socket, busname, timer, and path
674 units, and <option>true</option> for slice, scope, device, swap, mount, and
675 automount units.</para></listitem>
798d3a52
ZJS
676 </varlistentry>
677
798d3a52
ZJS
678 <varlistentry>
679 <term><varname>StopWhenUnneeded=</varname></term>
680
681 <listitem><para>Takes a boolean argument. If
682 <option>true</option>, this unit will be stopped when it is no
b938cb90 683 longer used. Note that, in order to minimize the work to be
798d3a52
ZJS
684 executed, systemd will not stop units by default unless they
685 are conflicting with other units, or the user explicitly
686 requested their shut down. If this option is set, a unit will
687 be automatically cleaned up if no other active unit requires
688 it. Defaults to <option>false</option>.</para></listitem>
689 </varlistentry>
690
691 <varlistentry>
692 <term><varname>RefuseManualStart=</varname></term>
693 <term><varname>RefuseManualStop=</varname></term>
694
695 <listitem><para>Takes a boolean argument. If
696 <option>true</option>, this unit can only be activated or
697 deactivated indirectly. In this case, explicit start-up or
698 termination requested by the user is denied, however if it is
699 started or stopped as a dependency of another unit, start-up
700 or termination will succeed. This is mostly a safety feature
701 to ensure that the user does not accidentally activate units
702 that are not intended to be activated explicitly, and not
703 accidentally deactivate units that are not intended to be
704 deactivated. These options default to
705 <option>false</option>.</para></listitem>
706 </varlistentry>
707
708 <varlistentry>
709 <term><varname>AllowIsolate=</varname></term>
710
711 <listitem><para>Takes a boolean argument. If
712 <option>true</option>, this unit may be used with the
713 <command>systemctl isolate</command> command. Otherwise, this
714 will be refused. It probably is a good idea to leave this
715 disabled except for target units that shall be used similar to
716 runlevels in SysV init systems, just as a precaution to avoid
717 unusable system states. This option defaults to
718 <option>false</option>.</para></listitem>
719 </varlistentry>
720
721 <varlistentry>
722 <term><varname>DefaultDependencies=</varname></term>
723
724 <listitem><para>Takes a boolean argument. If
725 <option>true</option>, (the default), a few default
726 dependencies will implicitly be created for the unit. The
727 actual dependencies created depend on the unit type. For
728 example, for service units, these dependencies ensure that the
729 service is started only after basic system initialization is
730 completed and is properly terminated on system shutdown. See
731 the respective man pages for details. Generally, only services
732 involved with early boot or late shutdown should set this
733 option to <option>false</option>. It is highly recommended to
734 leave this option enabled for the majority of common units. If
735 set to <option>false</option>, this option does not disable
736 all implicit dependencies, just non-essential
737 ones.</para></listitem>
738 </varlistentry>
739
740 <varlistentry>
741 <term><varname>JobTimeoutSec=</varname></term>
a2df3ea4 742 <term><varname>JobRunningTimeoutSec=</varname></term>
798d3a52
ZJS
743 <term><varname>JobTimeoutAction=</varname></term>
744 <term><varname>JobTimeoutRebootArgument=</varname></term>
745
a2df3ea4
MK
746 <listitem><para>When a job for this unit is queued, a time-out <varname>JobTimeoutSec=</varname> may be
747 configured. Similarly, <varname>JobRunningTimeoutSec=</varname> starts counting when the queued job is actually
748 started. If either time limit is reached, the job will be cancelled, the unit however will not change state or
749 even enter the <literal>failed</literal> mode. This value defaults to <literal>infinity</literal> (job timeouts
750 disabled), except for device units (<varname>JobRunningTimeoutSec=</varname> defaults to
751 <varname>DefaultTimeoutStartSec=</varname>). NB: this timeout is independent from any unit-specific timeout
752 (for example, the timeout set with <varname>TimeoutStartSec=</varname> in service units) as the job timeout has
753 no effect on the unit itself, only on the job that might be pending for it. Or in other words: unit-specific
754 timeouts are useful to abort unit state changes, and revert them. The job timeout set with this option however
755 is useful to abort only the job waiting for the unit state to change.</para>
798d3a52 756
0aabe747
AJ
757 <para><varname>JobTimeoutAction=</varname> optionally configures an additional action to take when the time-out
758 is hit. It takes the same values as <varname>StartLimitAction=</varname>. Defaults to <option>none</option>.
759 <varname>JobTimeoutRebootArgument=</varname> configures an optional reboot string to pass to the
798d3a52
ZJS
760 <citerefentry><refentrytitle>reboot</refentrytitle><manvolnum>2</manvolnum></citerefentry>
761 system call.</para></listitem>
762 </varlistentry>
763
6bf0f408 764 <varlistentry>
fc5ffacd
ZJS
765 <term><varname>StartLimitIntervalSec=<replaceable>interval</replaceable></varname></term>
766 <term><varname>StartLimitBurst=<replaceable>burst</replaceable></varname></term>
6bf0f408 767
fc5ffacd
ZJS
768 <listitem><para>Configure unit start rate limiting. Units which are started more than
769 <replaceable>burst</replaceable> times within an <replaceable>interval</replaceable> time interval
770 are not permitted to start any more. Use <varname>StartLimitIntervalSec=</varname> to configure the
f0367da7 771 checking interval (defaults to <varname>DefaultStartLimitIntervalSec=</varname> in manager configuration file,
fc5ffacd 772 set it to 0 to disable any kind of rate limiting). Use <varname>StartLimitBurst=</varname> to configure how many
6bf0f408
LP
773 starts per interval are allowed (defaults to <varname>DefaultStartLimitBurst=</varname> in manager
774 configuration file). These configuration options are particularly useful in conjunction with the service
775 setting <varname>Restart=</varname> (see
776 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>); however,
777 they apply to all kinds of starts (including manual), not just those triggered by the
778 <varname>Restart=</varname> logic. Note that units which are configured for <varname>Restart=</varname> and
779 which reach the start limit are not attempted to be restarted anymore; however, they may still be restarted
fc5ffacd
ZJS
780 manually at a later point, after the <replaceable>interval</replaceable> has passed.
781 From this point on, the restart logic is activated again. Note that
6bf0f408
LP
782 <command>systemctl reset-failed</command> will cause the restart rate counter for a service to be flushed,
783 which is useful if the administrator wants to manually start a unit and the start limit interferes with
7629ec46 784 that. Note that this rate-limiting is enforced after any unit condition checks are executed, and hence unit
fc5ffacd
ZJS
785 activations with failing conditions do not count towards this rate limit. This setting does not apply to
786 slice, target, device, and scope units, since they are unit types whose activation may either never fail, or
787 may succeed only a single time.</para></listitem>
6bf0f408
LP
788 </varlistentry>
789
790 <varlistentry>
791 <term><varname>StartLimitAction=</varname></term>
792
793 <listitem><para>Configure the action to take if the rate limit configured with
f0367da7 794 <varname>StartLimitIntervalSec=</varname> and <varname>StartLimitBurst=</varname> is hit. Takes one of
6bf0f408
LP
795 <option>none</option>, <option>reboot</option>, <option>reboot-force</option>,
796 <option>reboot-immediate</option>, <option>poweroff</option>, <option>poweroff-force</option> or
797 <option>poweroff-immediate</option>. If <option>none</option> is set, hitting the rate limit will trigger no
798 action besides that the start will not be permitted. <option>reboot</option> causes a reboot following the
799 normal shutdown procedure (i.e. equivalent to <command>systemctl reboot</command>).
800 <option>reboot-force</option> causes a forced reboot which will terminate all processes forcibly but should
801 cause no dirty file systems on reboot (i.e. equivalent to <command>systemctl reboot -f</command>) and
802 <option>reboot-immediate</option> causes immediate execution of the
803 <citerefentry><refentrytitle>reboot</refentrytitle><manvolnum>2</manvolnum></citerefentry> system call, which
804 might result in data loss. Similarly, <option>poweroff</option>, <option>poweroff-force</option>,
805 <option>poweroff-immediate</option> have the effect of powering down the system with similar
806 semantics. Defaults to <option>none</option>.</para></listitem>
807 </varlistentry>
808
809 <varlistentry>
810 <term><varname>RebootArgument=</varname></term>
811 <listitem><para>Configure the optional argument for the
812 <citerefentry><refentrytitle>reboot</refentrytitle><manvolnum>2</manvolnum></citerefentry> system call if
813 <varname>StartLimitAction=</varname> or a service's <varname>FailureAction=</varname> is a reboot action. This
814 works just like the optional argument to <command>systemctl reboot</command> command.</para></listitem>
815 </varlistentry>
816
798d3a52
ZJS
817 <varlistentry>
818 <term><varname>ConditionArchitecture=</varname></term>
819 <term><varname>ConditionVirtualization=</varname></term>
820 <term><varname>ConditionHost=</varname></term>
821 <term><varname>ConditionKernelCommandLine=</varname></term>
822 <term><varname>ConditionSecurity=</varname></term>
823 <term><varname>ConditionCapability=</varname></term>
824 <term><varname>ConditionACPower=</varname></term>
825 <term><varname>ConditionNeedsUpdate=</varname></term>
826 <term><varname>ConditionFirstBoot=</varname></term>
827 <term><varname>ConditionPathExists=</varname></term>
828 <term><varname>ConditionPathExistsGlob=</varname></term>
829 <term><varname>ConditionPathIsDirectory=</varname></term>
830 <term><varname>ConditionPathIsSymbolicLink=</varname></term>
831 <term><varname>ConditionPathIsMountPoint=</varname></term>
832 <term><varname>ConditionPathIsReadWrite=</varname></term>
833 <term><varname>ConditionDirectoryNotEmpty=</varname></term>
834 <term><varname>ConditionFileNotEmpty=</varname></term>
835 <term><varname>ConditionFileIsExecutable=</varname></term>
c465a29f
FS
836 <term><varname>ConditionUser=</varname></term>
837 <term><varname>ConditionGroup=</varname></term>
798d3a52 838
7ca41557 839 <!-- We do not document ConditionNull=
b938cb90 840 here, as it is not particularly
798d3a52
ZJS
841 useful and probably just
842 confusing. -->
843
41448597
LP
844 <listitem><para>Before starting a unit, verify that the specified condition is true. If it is not true, the
845 starting of the unit will be (mostly silently) skipped, however all ordering dependencies of it are still
846 respected. A failing condition will not result in the unit being moved into a failure state. The condition is
847 checked at the time the queued start job is to be executed. Use condition expressions in order to silently skip
848 units that do not apply to the local running system, for example because the kernel or runtime environment
849 doesn't require its functionality. Use the various <varname>AssertArchitecture=</varname>,
850 <varname>AssertVirtualization=</varname>, … options for a similar mechanism that puts the unit in a failure
851 state and logs about the failed check (see below).</para>
798d3a52
ZJS
852
853 <para><varname>ConditionArchitecture=</varname> may be used to
854 check whether the system is running on a specific
855 architecture. Takes one of
856 <varname>x86</varname>,
857 <varname>x86-64</varname>,
858 <varname>ppc</varname>,
859 <varname>ppc-le</varname>,
860 <varname>ppc64</varname>,
861 <varname>ppc64-le</varname>,
862 <varname>ia64</varname>,
863 <varname>parisc</varname>,
864 <varname>parisc64</varname>,
865 <varname>s390</varname>,
866 <varname>s390x</varname>,
867 <varname>sparc</varname>,
868 <varname>sparc64</varname>,
869 <varname>mips</varname>,
870 <varname>mips-le</varname>,
871 <varname>mips64</varname>,
872 <varname>mips64-le</varname>,
873 <varname>alpha</varname>,
874 <varname>arm</varname>,
875 <varname>arm-be</varname>,
876 <varname>arm64</varname>,
877 <varname>arm64-be</varname>,
878 <varname>sh</varname>,
879 <varname>sh64</varname>,
215a2db4 880 <varname>m68k</varname>,
798d3a52 881 <varname>tilegx</varname>,
27b09f1f
AB
882 <varname>cris</varname>,
883 <varname>arc</varname>,
884 <varname>arc-be</varname> to test
798d3a52
ZJS
885 against a specific architecture. The architecture is
886 determined from the information returned by
3ba3a79d 887 <citerefentry project='man-pages'><refentrytitle>uname</refentrytitle><manvolnum>2</manvolnum></citerefentry>
798d3a52
ZJS
888 and is thus subject to
889 <citerefentry><refentrytitle>personality</refentrytitle><manvolnum>2</manvolnum></citerefentry>.
890 Note that a <varname>Personality=</varname> setting in the
891 same unit file has no effect on this condition. A special
892 architecture name <varname>native</varname> is mapped to the
893 architecture the system manager itself is compiled for. The
894 test may be negated by prepending an exclamation mark.</para>
895
896 <para><varname>ConditionVirtualization=</varname> may be used
897 to check whether the system is executed in a virtualized
898 environment and optionally test whether it is a specific
899 implementation. Takes either boolean value to check if being
900 executed in any virtualized environment, or one of
901 <varname>vm</varname> and
902 <varname>container</varname> to test against a generic type of
903 virtualization solution, or one of
904 <varname>qemu</varname>,
905 <varname>kvm</varname>,
906 <varname>zvm</varname>,
907 <varname>vmware</varname>,
908 <varname>microsoft</varname>,
909 <varname>oracle</varname>,
910 <varname>xen</varname>,
911 <varname>bochs</varname>,
912 <varname>uml</varname>,
913 <varname>openvz</varname>,
914 <varname>lxc</varname>,
915 <varname>lxc-libvirt</varname>,
916 <varname>systemd-nspawn</varname>,
9fb16425
ILG
917 <varname>docker</varname>,
918 <varname>rkt</varname> to test
299a34c1
ZJS
919 against a specific implementation, or
920 <varname>private-users</varname> to check whether we are running in a user namespace. See
798d3a52
ZJS
921 <citerefentry><refentrytitle>systemd-detect-virt</refentrytitle><manvolnum>1</manvolnum></citerefentry>
922 for a full list of known virtualization technologies and their
923 identifiers. If multiple virtualization technologies are
924 nested, only the innermost is considered. The test may be
925 negated by prepending an exclamation mark.</para>
926
927 <para><varname>ConditionHost=</varname> may be used to match
928 against the hostname or machine ID of the host. This either
929 takes a hostname string (optionally with shell style globs)
930 which is tested against the locally set hostname as returned
931 by
932 <citerefentry><refentrytitle>gethostname</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
933 or a machine ID formatted as string (see
934 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
935 The test may be negated by prepending an exclamation
936 mark.</para>
937
938 <para><varname>ConditionKernelCommandLine=</varname> may be
939 used to check whether a specific kernel command line option is
940 set (or if prefixed with the exclamation mark unset). The
941 argument must either be a single word, or an assignment (i.e.
942 two words, separated <literal>=</literal>). In the former case
943 the kernel command line is searched for the word appearing as
944 is, or as left hand side of an assignment. In the latter case,
945 the exact assignment is looked for with right and left hand
946 side matching.</para>
947
948 <para><varname>ConditionSecurity=</varname> may be used to
949 check whether the given security module is enabled on the
b8e1d4d1 950 system. Currently, the recognized values are
798d3a52
ZJS
951 <varname>selinux</varname>,
952 <varname>apparmor</varname>,
ed440f6b 953 <varname>tomoyo</varname>,
798d3a52
ZJS
954 <varname>ima</varname>,
955 <varname>smack</varname> and
956 <varname>audit</varname>. The test may be negated by
957 prepending an exclamation mark.</para>
958
959 <para><varname>ConditionCapability=</varname> may be used to
960 check whether the given capability exists in the capability
961 bounding set of the service manager (i.e. this does not check
962 whether capability is actually available in the permitted or
963 effective sets, see
964 <citerefentry project='man-pages'><refentrytitle>capabilities</refentrytitle><manvolnum>7</manvolnum></citerefentry>
965 for details). Pass a capability name such as
966 <literal>CAP_MKNOD</literal>, possibly prefixed with an
967 exclamation mark to negate the check.</para>
968
969 <para><varname>ConditionACPower=</varname> may be used to
970 check whether the system has AC power, or is exclusively
971 battery powered at the time of activation of the unit. This
972 takes a boolean argument. If set to <varname>true</varname>,
973 the condition will hold only if at least one AC connector of
974 the system is connected to a power source, or if no AC
975 connectors are known. Conversely, if set to
976 <varname>false</varname>, the condition will hold only if
977 there is at least one AC connector known and all AC connectors
978 are disconnected from a power source.</para>
979
980 <para><varname>ConditionNeedsUpdate=</varname> takes one of
981 <filename>/var</filename> or <filename>/etc</filename> as
982 argument, possibly prefixed with a <literal>!</literal> (for
983 inverting the condition). This condition may be used to
984 conditionalize units on whether the specified directory
985 requires an update because <filename>/usr</filename>'s
986 modification time is newer than the stamp file
987 <filename>.updated</filename> in the specified directory. This
988 is useful to implement offline updates of the vendor operating
989 system resources in <filename>/usr</filename> that require
990 updating of <filename>/etc</filename> or
991 <filename>/var</filename> on the next following boot. Units
992 making use of this condition should order themselves before
993 <citerefentry><refentrytitle>systemd-update-done.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
7f3fdb7f 994 to make sure they run before the stamp file's modification
798d3a52
ZJS
995 time gets reset indicating a completed update.</para>
996
23254af1
LP
997 <para><varname>ConditionFirstBoot=</varname> takes a boolean argument. This condition may be used to
998 conditionalize units on whether the system is booting up with an unpopulated <filename>/etc</filename>
999 directory (specifically: an <filename>/etc</filename> with no <filename>/etc/machine-id</filename>). This may
1000 be used to populate <filename>/etc</filename> on the first boot after factory reset, or when a new system
1001 instance boots up for the first time.</para>
798d3a52
ZJS
1002
1003 <para>With <varname>ConditionPathExists=</varname> a file
1004 existence condition is checked before a unit is started. If
1005 the specified absolute path name does not exist, the condition
1006 will fail. If the absolute path name passed to
1007 <varname>ConditionPathExists=</varname> is prefixed with an
1008 exclamation mark (<literal>!</literal>), the test is negated,
1009 and the unit is only started if the path does not
1010 exist.</para>
1011
1012 <para><varname>ConditionPathExistsGlob=</varname> is similar
1013 to <varname>ConditionPathExists=</varname>, but checks for the
1014 existence of at least one file or directory matching the
1015 specified globbing pattern.</para>
1016
1017 <para><varname>ConditionPathIsDirectory=</varname> is similar
1018 to <varname>ConditionPathExists=</varname> but verifies
1019 whether a certain path exists and is a directory.</para>
1020
1021 <para><varname>ConditionPathIsSymbolicLink=</varname> is
1022 similar to <varname>ConditionPathExists=</varname> but
1023 verifies whether a certain path exists and is a symbolic
1024 link.</para>
1025
1026 <para><varname>ConditionPathIsMountPoint=</varname> is similar
1027 to <varname>ConditionPathExists=</varname> but verifies
1028 whether a certain path exists and is a mount point.</para>
1029
1030 <para><varname>ConditionPathIsReadWrite=</varname> is similar
1031 to <varname>ConditionPathExists=</varname> but verifies
1032 whether the underlying file system is readable and writable
1033 (i.e. not mounted read-only).</para>
1034
1035 <para><varname>ConditionDirectoryNotEmpty=</varname> is
1036 similar to <varname>ConditionPathExists=</varname> but
1037 verifies whether a certain path exists and is a non-empty
1038 directory.</para>
1039
1040 <para><varname>ConditionFileNotEmpty=</varname> is similar to
1041 <varname>ConditionPathExists=</varname> but verifies whether a
1042 certain path exists and refers to a regular file with a
1043 non-zero size.</para>
1044
1045 <para><varname>ConditionFileIsExecutable=</varname> is similar
1046 to <varname>ConditionPathExists=</varname> but verifies
1047 whether a certain path exists, is a regular file and marked
1048 executable.</para>
1049
c465a29f 1050 <para><varname>ConditionUser=</varname> takes a numeric
534bab66
FS
1051 <literal>UID</literal>, a UNIX user name, or the special value
1052 <literal>@system</literal>. This condition may be used to check
1053 whether the service manager is running as the given user. The
1054 special value <literal>@system</literal> can be used to check
1055 if the user id is within the system user range. This option is not
c465a29f
FS
1056 useful for system services, as the system manager exclusively
1057 runs as the root user, and thus the test result is constant.</para>
1058
1059 <para><varname>ConditionGroup=</varname> is similar
1060 to <varname>ConditionUser=</varname> but verifies that the
1061 service manager's real or effective group, or any of its
534bab66
FS
1062 auxiliary groups match the specified group or GID. This setting
1063 does not have a special value <literal>@system</literal>.</para>
c465a29f 1064
798d3a52
ZJS
1065 <para>If multiple conditions are specified, the unit will be
1066 executed if all of them apply (i.e. a logical AND is applied).
1067 Condition checks can be prefixed with a pipe symbol (|) in
1068 which case a condition becomes a triggering condition. If at
1069 least one triggering condition is defined for a unit, then the
1070 unit will be executed if at least one of the triggering
1071 conditions apply and all of the non-triggering conditions. If
1072 you prefix an argument with the pipe symbol and an exclamation
1073 mark, the pipe symbol must be passed first, the exclamation
1074 second. Except for
1075 <varname>ConditionPathIsSymbolicLink=</varname>, all path
1076 checks follow symlinks. If any of these options is assigned
1077 the empty string, the list of conditions is reset completely,
1078 all previous condition settings (of any kind) will have no
1079 effect.</para></listitem>
1080 </varlistentry>
1081
1082 <varlistentry>
1083 <term><varname>AssertArchitecture=</varname></term>
1084 <term><varname>AssertVirtualization=</varname></term>
1085 <term><varname>AssertHost=</varname></term>
1086 <term><varname>AssertKernelCommandLine=</varname></term>
1087 <term><varname>AssertSecurity=</varname></term>
1088 <term><varname>AssertCapability=</varname></term>
1089 <term><varname>AssertACPower=</varname></term>
1090 <term><varname>AssertNeedsUpdate=</varname></term>
1091 <term><varname>AssertFirstBoot=</varname></term>
1092 <term><varname>AssertPathExists=</varname></term>
1093 <term><varname>AssertPathExistsGlob=</varname></term>
1094 <term><varname>AssertPathIsDirectory=</varname></term>
1095 <term><varname>AssertPathIsSymbolicLink=</varname></term>
1096 <term><varname>AssertPathIsMountPoint=</varname></term>
1097 <term><varname>AssertPathIsReadWrite=</varname></term>
1098 <term><varname>AssertDirectoryNotEmpty=</varname></term>
1099 <term><varname>AssertFileNotEmpty=</varname></term>
1100 <term><varname>AssertFileIsExecutable=</varname></term>
c465a29f
FS
1101 <term><varname>AssertUser=</varname></term>
1102 <term><varname>AssertGroup=</varname></term>
798d3a52 1103
41448597
LP
1104 <listitem><para>Similar to the <varname>ConditionArchitecture=</varname>,
1105 <varname>ConditionVirtualization=</varname>, …, condition settings described above, these settings add
1106 assertion checks to the start-up of the unit. However, unlike the conditions settings, any assertion setting
da25e029
ZJS
1107 that is not met results in failure of the start job (which means this is logged loudly). Use assertion
1108 expressions for units that cannot operate when specific requirements are not met, and when this is something
1109 the administrator or user should look into.</para></listitem>
798d3a52
ZJS
1110 </varlistentry>
1111
1112 <varlistentry>
1113 <term><varname>SourcePath=</varname></term>
1114 <listitem><para>A path to a configuration file this unit has
1115 been generated from. This is primarily useful for
1116 implementation of generator tools that convert configuration
1117 from an external configuration file format into native unit
1118 files. This functionality should not be used in normal
1119 units.</para></listitem>
1120 </varlistentry>
32ee7d33 1121
798d3a52
ZJS
1122 </variablelist>
1123
1124 </refsect1>
1125
1126 <refsect1>
1127 <title>[Install] Section Options</title>
1128
be73bb48
LP
1129 <para>Unit files may include an <literal>[Install]</literal> section, which carries installation information for
1130 the unit. This section is not interpreted by
1131 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry> during runtime; it is
1132 used by the <command>enable</command> and <command>disable</command> commands of the
1133 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry> tool during
caa45f5b 1134 installation of a unit.</para>
798d3a52
ZJS
1135
1136 <variablelist class='unit-directives'>
1137 <varlistentry>
1138 <term><varname>Alias=</varname></term>
1139
f4bf8d2f 1140 <listitem><para>A space-separated list of additional names this unit shall be installed under. The names listed
1245e413 1141 here must have the same suffix (i.e. type) as the unit filename. This option may be specified more than once,
f4bf8d2f
LP
1142 in which case all listed names are used. At installation time, <command>systemctl enable</command> will create
1143 symlinks from these names to the unit filename. Note that not all unit types support such alias names, and this
1144 setting is not supported for them. Specifically, mount, slice, swap, and automount units do not support
1145 aliasing.</para></listitem>
798d3a52
ZJS
1146 </varlistentry>
1147
1148 <varlistentry>
1149 <term><varname>WantedBy=</varname></term>
1150 <term><varname>RequiredBy=</varname></term>
1151
1152 <listitem><para>This option may be used more than once, or a
1153 space-separated list of unit names may be given. A symbolic
1154 link is created in the <filename>.wants/</filename> or
1155 <filename>.requires/</filename> directory of each of the
1156 listed units when this unit is installed by <command>systemctl
1157 enable</command>. This has the effect that a dependency of
1158 type <varname>Wants=</varname> or <varname>Requires=</varname>
1159 is added from the listed unit to the current unit. The primary
1160 result is that the current unit will be started when the
1161 listed unit is started. See the description of
1162 <varname>Wants=</varname> and <varname>Requires=</varname> in
1163 the [Unit] section for details.</para>
1164
1165 <para><command>WantedBy=foo.service</command> in a service
1166 <filename>bar.service</filename> is mostly equivalent to
1167 <command>Alias=foo.service.wants/bar.service</command> in the
1168 same file. In case of template units, <command>systemctl
1169 enable</command> must be called with an instance name, and
1170 this instance will be added to the
1171 <filename>.wants/</filename> or
1172 <filename>.requires/</filename> list of the listed unit. E.g.
1173 <command>WantedBy=getty.target</command> in a service
1174 <filename>getty@.service</filename> will result in
1175 <command>systemctl enable getty@tty2.service</command>
1176 creating a
1177 <filename>getty.target.wants/getty@tty2.service</filename>
1178 link to <filename>getty@.service</filename>.
1179 </para></listitem>
1180 </varlistentry>
1181
1182 <varlistentry>
1183 <term><varname>Also=</varname></term>
1184
1185 <listitem><para>Additional units to install/deinstall when
1186 this unit is installed/deinstalled. If the user requests
1187 installation/deinstallation of a unit with this option
1188 configured, <command>systemctl enable</command> and
1189 <command>systemctl disable</command> will automatically
1190 install/uninstall units listed in this option as well.</para>
1191
1192 <para>This option may be used more than once, or a
1193 space-separated list of unit names may be
1194 given.</para></listitem>
1195 </varlistentry>
1196
1197 <varlistentry>
1198 <term><varname>DefaultInstance=</varname></term>
1199
1200 <listitem><para>In template unit files, this specifies for
1201 which instance the unit shall be enabled if the template is
1202 enabled without any explicitly set instance. This option has
1203 no effect in non-template unit files. The specified string
1204 must be usable as instance identifier.</para></listitem>
1205 </varlistentry>
1206 </variablelist>
1207
1208 <para>The following specifiers are interpreted in the Install
1209 section: %n, %N, %p, %i, %U, %u, %m, %H, %b, %v. For their meaning
1210 see the next section.
1211 </para>
1212 </refsect1>
1213
1214 <refsect1>
1215 <title>Specifiers</title>
1216
1217 <para>Many settings resolve specifiers which may be used to write
1218 generic unit files referring to runtime or unit parameters that
1219 are replaced when the unit files are loaded. The following
1220 specifiers are understood:</para>
1221
1222 <table>
1223 <title>Specifiers available in unit files</title>
1224 <tgroup cols='3' align='left' colsep='1' rowsep='1'>
1225 <colspec colname="spec" />
1226 <colspec colname="mean" />
1227 <colspec colname="detail" />
1228 <thead>
1229 <row>
1230 <entry>Specifier</entry>
1231 <entry>Meaning</entry>
1232 <entry>Details</entry>
1233 </row>
1234 </thead>
1235 <tbody>
1236 <row>
1237 <entry><literal>%n</literal></entry>
1238 <entry>Full unit name</entry>
1239 <entry></entry>
1240 </row>
1241 <row>
1242 <entry><literal>%N</literal></entry>
1243 <entry>Unescaped full unit name</entry>
1244 <entry>Same as <literal>%n</literal>, but with escaping undone</entry>
1245 </row>
1246 <row>
1247 <entry><literal>%p</literal></entry>
1248 <entry>Prefix name</entry>
1249 <entry>For instantiated units, this refers to the string before the <literal>@</literal> character of the unit name. For non-instantiated units, this refers to the name of the unit with the type suffix removed.</entry>
1250 </row>
1251 <row>
1252 <entry><literal>%P</literal></entry>
1253 <entry>Unescaped prefix name</entry>
1254 <entry>Same as <literal>%p</literal>, but with escaping undone</entry>
1255 </row>
1256 <row>
1257 <entry><literal>%i</literal></entry>
1258 <entry>Instance name</entry>
1259 <entry>For instantiated units: this is the string between the <literal>@</literal> character and the suffix of the unit name.</entry>
1260 </row>
1261 <row>
1262 <entry><literal>%I</literal></entry>
1263 <entry>Unescaped instance name</entry>
1264 <entry>Same as <literal>%i</literal>, but with escaping undone</entry>
1265 </row>
1266 <row>
1267 <entry><literal>%f</literal></entry>
1268 <entry>Unescaped filename</entry>
d1562103 1269 <entry>This is either the unescaped instance name (if applicable) with <filename>/</filename> prepended (if applicable), or the unescaped prefix name prepended with <filename>/</filename>.</entry>
798d3a52
ZJS
1270 </row>
1271 <row>
798d3a52 1272 <entry><literal>%t</literal></entry>
14068e17 1273 <entry>Runtime directory root</entry>
798d3a52
ZJS
1274 <entry>This is either <filename>/run</filename> (for the system manager) or the path <literal>$XDG_RUNTIME_DIR</literal> resolves to (for user managers).</entry>
1275 </row>
1276 <row>
14068e17
LP
1277 <entry><literal>%S</literal></entry>
1278 <entry>State directory root </entry>
1279 <entry>This is either <filename>/var/lib</filename> (for the system manager) or the path <literal>$XDG_CONFIG_HOME</literal> resolves to (for user managers).</entry>
1280 </row>
1281 <row>
1282 <entry><literal>%C</literal></entry>
1283 <entry>Cache directory root </entry>
1284 <entry>This is either <filename>/var/cache</filename> (for the system manager) or the path <literal>$XDG_CACHE_HOME</literal> resolves to (for user managers).</entry>
1285 </row>
1286 <row>
1287 <entry><literal>%L</literal></entry>
1288 <entry>Logs directory root </entry>
1289 <entry>This is either <filename>/var/log</filename> (for the system manager) or the path <literal>$XDG_CONFIG_HOME</literal> resolves to with <filename>/log</filename> appended (for user managers).</entry>
1290 </row>
1291 <row>
798d3a52
ZJS
1292 <entry><literal>%u</literal></entry>
1293 <entry>User name</entry>
79413b67 1294 <entry>This is the name of the user running the service manager instance. In case of the system manager this resolves to <literal>root</literal>.</entry>
798d3a52
ZJS
1295 </row>
1296 <row>
1297 <entry><literal>%U</literal></entry>
1298 <entry>User UID</entry>
79413b67 1299 <entry>This is the numeric UID of the user running the service manager instance. In case of the system manager this resolves to <literal>0</literal>.</entry>
798d3a52
ZJS
1300 </row>
1301 <row>
1302 <entry><literal>%h</literal></entry>
1303 <entry>User home directory</entry>
79413b67 1304 <entry>This is the home directory of the user running the service manager instance. In case of the system manager this resolves to <literal>/root</literal>.</entry>
798d3a52
ZJS
1305 </row>
1306 <row>
1307 <entry><literal>%s</literal></entry>
1308 <entry>User shell</entry>
79413b67 1309 <entry>This is the shell of the user running the service manager instance. In case of the system manager this resolves to <literal>/bin/sh</literal>.</entry>
798d3a52
ZJS
1310 </row>
1311 <row>
1312 <entry><literal>%m</literal></entry>
1313 <entry>Machine ID</entry>
1314 <entry>The machine ID of the running system, formatted as string. See <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry> for more information.</entry>
1315 </row>
1316 <row>
1317 <entry><literal>%b</literal></entry>
1318 <entry>Boot ID</entry>
1319 <entry>The boot ID of the running system, formatted as string. See <citerefentry><refentrytitle>random</refentrytitle><manvolnum>4</manvolnum></citerefentry> for more information.</entry>
1320 </row>
1321 <row>
1322 <entry><literal>%H</literal></entry>
1323 <entry>Host name</entry>
e5f270f5 1324 <entry>The hostname of the running system at the point in time the unit configuration is loaded.</entry>
798d3a52
ZJS
1325 </row>
1326 <row>
1327 <entry><literal>%v</literal></entry>
1328 <entry>Kernel release</entry>
1329 <entry>Identical to <command>uname -r</command> output</entry>
1330 </row>
1331 <row>
1332 <entry><literal>%%</literal></entry>
1333 <entry>Single percent sign</entry>
1334 <entry>Use <literal>%%</literal> in place of <literal>%</literal> to specify a single percent sign.</entry>
1335 </row>
1336 </tbody>
1337 </tgroup>
1338 </table>
1339
798d3a52
ZJS
1340 </refsect1>
1341
1342 <refsect1>
1343 <title>Examples</title>
1344
1345 <example>
1346 <title>Allowing units to be enabled</title>
1347
1348 <para>The following snippet (highlighted) allows a unit (e.g.
1349 <filename>foo.service</filename>) to be enabled via
1350 <command>systemctl enable</command>:</para>
1351
1352 <programlisting>[Unit]
92b1e225
CS
1353Description=Foo
1354
1355[Service]
1356ExecStart=/usr/sbin/foo-daemon
1357
1358<emphasis>[Install]</emphasis>
1359<emphasis>WantedBy=multi-user.target</emphasis></programlisting>
1360
798d3a52
ZJS
1361 <para>After running <command>systemctl enable</command>, a
1362 symlink
12b42c76 1363 <filename>/etc/systemd/system/multi-user.target.wants/foo.service</filename>
798d3a52
ZJS
1364 linking to the actual unit will be created. It tells systemd to
1365 pull in the unit when starting
1366 <filename>multi-user.target</filename>. The inverse
1367 <command>systemctl disable</command> will remove that symlink
1368 again.</para>
1369 </example>
1370
1371 <example>
1372 <title>Overriding vendor settings</title>
1373
1374 <para>There are two methods of overriding vendor settings in
1375 unit files: copying the unit file from
12b42c76
TG
1376 <filename>/usr/lib/systemd/system</filename> to
1377 <filename>/etc/systemd/system</filename> and modifying the
798d3a52
ZJS
1378 chosen settings. Alternatively, one can create a directory named
1379 <filename><replaceable>unit</replaceable>.d/</filename> within
12b42c76 1380 <filename>/etc/systemd/system</filename> and place a drop-in
798d3a52
ZJS
1381 file <filename><replaceable>name</replaceable>.conf</filename>
1382 there that only changes the specific settings one is interested
1383 in. Note that multiple such drop-in files are read if
8331eaab 1384 present, processed in lexicographic order of their filename.</para>
798d3a52
ZJS
1385
1386 <para>The advantage of the first method is that one easily
1387 overrides the complete unit, the vendor unit is not parsed at
1388 all anymore. It has the disadvantage that improvements to the
1389 unit file by the vendor are not automatically incorporated on
1390 updates.</para>
1391
1392 <para>The advantage of the second method is that one only
1393 overrides the settings one specifically wants, where updates to
1394 the unit by the vendor automatically apply. This has the
1395 disadvantage that some future updates by the vendor might be
1396 incompatible with the local changes.</para>
1397
1398 <para>Note that for drop-in files, if one wants to remove
1399 entries from a setting that is parsed as a list (and is not a
1400 dependency), such as <varname>ConditionPathExists=</varname> (or
1401 e.g. <varname>ExecStart=</varname> in service units), one needs
1402 to first clear the list before re-adding all entries except the
1403 one that is to be removed. See below for an example.</para>
1404
1405 <para>This also applies for user instances of systemd, but with
1406 different locations for the unit files. See the section on unit
1407 load paths for further details.</para>
1408
1409 <para>Suppose there is a vendor-supplied unit
12b42c76 1410 <filename>/usr/lib/systemd/system/httpd.service</filename> with
798d3a52
ZJS
1411 the following contents:</para>
1412
1413 <programlisting>[Unit]
92b1e225
CS
1414Description=Some HTTP server
1415After=remote-fs.target sqldb.service
1416Requires=sqldb.service
1417AssertPathExists=/srv/webserver
1418
1419[Service]
1420Type=notify
1421ExecStart=/usr/sbin/some-fancy-httpd-server
1422Nice=5
1423
1424[Install]
1425WantedBy=multi-user.target</programlisting>
1426
798d3a52
ZJS
1427 <para>Now one wants to change some settings as an administrator:
1428 firstly, in the local setup, <filename>/srv/webserver</filename>
e2acdb6b 1429 might not exist, because the HTTP server is configured to use
798d3a52
ZJS
1430 <filename>/srv/www</filename> instead. Secondly, the local
1431 configuration makes the HTTP server also depend on a memory
1432 cache service, <filename>memcached.service</filename>, that
1433 should be pulled in (<varname>Requires=</varname>) and also be
1434 ordered appropriately (<varname>After=</varname>). Thirdly, in
1435 order to harden the service a bit more, the administrator would
1436 like to set the <varname>PrivateTmp=</varname> setting (see
912f003f 1437 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>
798d3a52
ZJS
1438 for details). And lastly, the administrator would like to reset
1439 the niceness of the service to its default value of 0.</para>
1440
1441 <para>The first possibility is to copy the unit file to
12b42c76 1442 <filename>/etc/systemd/system/httpd.service</filename> and
798d3a52
ZJS
1443 change the chosen settings:</para>
1444
1445 <programlisting>[Unit]
92b1e225
CS
1446Description=Some HTTP server
1447After=remote-fs.target sqldb.service <emphasis>memcached.service</emphasis>
1448Requires=sqldb.service <emphasis>memcached.service</emphasis>
1449AssertPathExists=<emphasis>/srv/www</emphasis>
1450
1451[Service]
1452Type=notify
1453ExecStart=/usr/sbin/some-fancy-httpd-server
1454<emphasis>Nice=0</emphasis>
1455<emphasis>PrivateTmp=yes</emphasis>
1456
1457[Install]
1458WantedBy=multi-user.target</programlisting>
1459
798d3a52
ZJS
1460 <para>Alternatively, the administrator could create a drop-in
1461 file
12b42c76 1462 <filename>/etc/systemd/system/httpd.service.d/local.conf</filename>
798d3a52 1463 with the following contents:</para>
92b1e225 1464
798d3a52 1465 <programlisting>[Unit]
92b1e225
CS
1466After=memcached.service
1467Requires=memcached.service
1468# Reset all assertions and then re-add the condition we want
1469AssertPathExists=
1470AssertPathExists=/srv/www
1471
1472[Service]
1473Nice=0
1474PrivateTmp=yes</programlisting>
1475
798d3a52
ZJS
1476 <para>Note that dependencies (<varname>After=</varname>, etc.)
1477 cannot be reset to an empty list, so dependencies can only be
1478 added in drop-ins. If you want to remove dependencies, you have
1479 to override the entire unit.</para>
0cf4c0d1 1480
798d3a52
ZJS
1481 </example>
1482 </refsect1>
1483
1484 <refsect1>
1485 <title>See Also</title>
1486 <para>
1487 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1488 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1489 <citerefentry><refentrytitle>systemd.special</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
1490 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1491 <citerefentry><refentrytitle>systemd.socket</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1492 <citerefentry><refentrytitle>systemd.device</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1493 <citerefentry><refentrytitle>systemd.mount</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1494 <citerefentry><refentrytitle>systemd.automount</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1495 <citerefentry><refentrytitle>systemd.swap</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1496 <citerefentry><refentrytitle>systemd.target</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1497 <citerefentry><refentrytitle>systemd.path</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1498 <citerefentry><refentrytitle>systemd.timer</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
798d3a52
ZJS
1499 <citerefentry><refentrytitle>systemd.scope</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1500 <citerefentry><refentrytitle>systemd.slice</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1501 <citerefentry><refentrytitle>systemd.time</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
1502 <citerefentry><refentrytitle>systemd-analyze</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1503 <citerefentry project='man-pages'><refentrytitle>capabilities</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
1504 <citerefentry><refentrytitle>systemd.directives</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
3ba3a79d 1505 <citerefentry project='man-pages'><refentrytitle>uname</refentrytitle><manvolnum>1</manvolnum></citerefentry>
798d3a52
ZJS
1506 </para>
1507 </refsect1>
d1ab0ca0
LP
1508
1509</refentry>