]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/tmpfiles.d.xml
meson: allow WatchdogSec= in services to be configured
[thirdparty/systemd.git] / man / tmpfiles.d.xml
CommitLineData
514094f9 1<?xml version='1.0'?>
3a54a157
ZJS
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4149f86d 4<!--
572eb058
ZJS
5 SPDX-License-Identifier: LGPL-2.1+
6
96b2fb93 7 Copyright © 2010 Brandon Philips
4149f86d
BP
8-->
9<refentry id="tmpfiles.d">
10
302fbdf2
ZJS
11 <refentryinfo>
12 <title>tmpfiles.d</title>
13 <productname>systemd</productname>
302fbdf2
ZJS
14 </refentryinfo>
15
16 <refmeta>
17 <refentrytitle>tmpfiles.d</refentrytitle>
18 <manvolnum>5</manvolnum>
19 </refmeta>
20
21 <refnamediv>
22 <refname>tmpfiles.d</refname>
23 <refpurpose>Configuration for creation, deletion and cleaning of
24 volatile and temporary files</refpurpose>
25 </refnamediv>
26
27 <refsynopsisdiv>
f2b5ca0e
ZJS
28 <para><literallayout><filename>/etc/tmpfiles.d/*.conf</filename>
29<filename>/run/tmpfiles.d/*.conf</filename>
30<filename>/usr/lib/tmpfiles.d/*.conf</filename>
31 </literallayout></para>
32
33 <para><literallayout><filename>~/.config/user-tmpfiles.d/*.conf</filename>
34<filename>$XDG_RUNTIME_DIR/user-tmpfiles.d/*.conf</filename>
35<filename>~/.local/share/user-tmpfiles.d/*.conf</filename>
36<filename>…</filename>
37<filename>/usr/share/user-tmpfiles.d/*.conf</filename>
38 </literallayout></para>
b0458daf
ZJS
39
40 <programlisting>#Type Path Mode User Group Age Argument
41f /file/to/create mode user group - content
42F /file/to/create-or-truncate mode user group - content
43w /file/to/write-to - - - - content
44d /directory/to/create-and-cleanup mode user group cleanup-age -
45D /directory/to/create-and-remove mode user group cleanup-age -
46e /directory/to/cleanup mode user group cleanup-age -
47v /subvolume/to/create mode user group - -
48v /subvolume-or-directory/to/create mode user group - -
49Q /subvolume/to/create mode user group - -
50p /fifo/to/create mode user group - -
51L /symlink/to/create - - - - symlink/target/path
52c /dev/char-device-to-create mode user group - -
53b /dev/block-device-to-create mode user group - -
d0ea5c5e 54# p+, L+, c+, b+ create target unconditionally, w+ appends to the file
b0458daf
ZJS
55C /target/to/create - - - - /source/to/copy
56x /path-or-glob/to/ignore - - - - -
57X /path-or-glob/to/ignore/recursively - - - - -
58r /empty/dir/to/remove - - - - -
59R /dir/to/remove/recursively - - - - -
60z /path-or-glob/to/adjust/mode mode user group - MAC context
61Z /path-or-glob/to/adjust/mode/recursively mode user group - MAC context
62t /path-or-glob/to/set/xattrs - - - - xattrs
63T /path-or-glob/to/set/xattrs/recursively - - - - xattrs
64h /path-or-glob/to/set/attrs - - - - file attrs
65H /path-or-glob/to/set/attrs/recursively - - - - file attrs
66a /path-or-glob/to/set/acls - - - - POSIX ACLs
67A /path-or-glob/to/set/acls/recursively - - - - POSIX ACLs
68# a+, A+ append ACLs
69</programlisting>
302fbdf2
ZJS
70 </refsynopsisdiv>
71
72 <refsect1>
73 <title>Description</title>
74
abcb67ce
ZJS
75 <para><filename>tmpfiles.d</filename> configuration files provide a generic mechanism to define the
76 <emphasis>creation</emphasis> of regular files, directories, pipes, and device nodes, adjustments to
77 their <emphasis>access mode, ownership, attributes, quota assignments, and contents</emphasis>, and
78 finally their time-based <emphasis>removal</emphasis>. It is mostly commonly used for volatile and
79 temporary files and directories (such as those located under <filename>/run</filename>,
80 <filename>/tmp</filename>, <filename>/var/tmp</filename>, the API file systems such as
81 <filename>/sys</filename> or <filename>/proc</filename>, as well as some other directories below
82 <filename>/var</filename>).</para>
83
84 <para><command>systemd-tmpfiles</command> uses this configuration to create volatile files and
85 directories during boot and to do periodic cleanup afterwards. See
86 <citerefentry><refentrytitle>systemd-tmpfiles</refentrytitle><manvolnum>5</manvolnum></citerefentry> for
87 the description of <filename>systemd-tmpfiles-setup.service</filename>,
88 <filename>systemd-tmpfiles-cleanup.service</filename>, and associated units.</para>
89
90 <para>System daemons frequently require private runtime directories below <filename>/run</filename> to
91 store communication sockets and similar. For these, is is better to use
92 <varname>RuntimeDirectory=</varname> in their unit files (see
93 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry> for
94 details), if the flexibility provided by <filename>tmpfiles.d</filename> is not required. The advantages
95 are that the configuration required by the unit is centralized in one place, and that the lifetime of the
96 directory is tied to the lifetime of the service itself. Similarly, <varname>StateDirectory=</varname>,
97 <varname>CacheDirectory=</varname>, <varname>LogsDirectory=</varname>, and
98 <varname>ConfigurationDirectory=</varname> should be used to create directories under
99 <filename>/var/lib/</filename>, <filename>/var/cache/</filename>, <filename>/var/log/</filename>, and
100 <filename>/etc/</filename>. <filename>tmpfiles.d</filename> should be used for files whose lifetime is
101 independent of any service or requires more complicated configuration.</para>
302fbdf2
ZJS
102 </refsect1>
103
104 <refsect1>
8165be2e 105 <title>Configuration Directories and Precedence</title>
302fbdf2
ZJS
106
107 <para>Each configuration file shall be named in the style of
108 <filename><replaceable>package</replaceable>.conf</filename> or
109 <filename><replaceable>package</replaceable>-<replaceable>part</replaceable>.conf</filename>.
110 The second variant should be used when it is desirable to make it
111 easy to override just this part of configuration.</para>
112
ad19c578
LP
113 <para>Files in <filename>/etc/tmpfiles.d</filename> override files with the same name in
114 <filename>/usr/lib/tmpfiles.d</filename> and <filename>/run/tmpfiles.d</filename>. Files in
115 <filename>/run/tmpfiles.d</filename> override files with the same name in
116 <filename>/usr/lib/tmpfiles.d</filename>. Packages should install their configuration files in
117 <filename>/usr/lib/tmpfiles.d</filename>. Files in <filename>/etc/tmpfiles.d</filename> are reserved for the local
118 administrator, who may use this logic to override the configuration files installed by vendor packages. All
119 configuration files are sorted by their filename in lexicographic order, regardless of which of the directories
120 they reside in. If multiple files specify the same path, the entry in the file with the lexicographically earliest
121 name will be applied. All other conflicting entries will be logged as errors. When two lines are prefix path and
122 suffix path of each other, then the prefix line is always created first, the suffix later (and if removal applies
123 to the line, the order is reversed: the suffix is removed first, the prefix later). Lines that take globs are
fd78fd12
LP
124 applied after those accepting no globs. If multiple operations shall be applied on the same file (such as ACL,
125 xattr, file attribute adjustments), these are always done in the same fixed order. Except for those cases, the
126 files/directories are processed in the order they are listed.</para>
302fbdf2
ZJS
127
128 <para>If the administrator wants to disable a configuration file
129 supplied by the vendor, the recommended way is to place a symlink
130 to <filename>/dev/null</filename> in
131 <filename>/etc/tmpfiles.d/</filename> bearing the same filename.
132 </para>
8165be2e
ZJS
133 </refsect1>
134
135 <refsect1>
136 <title>Configuration File Format</title>
302fbdf2
ZJS
137
138 <para>The configuration format is one line per path containing
139 type, path, mode, ownership, age, and argument fields:</para>
140
488e4352
ZJS
141 <programlisting>#Type Path Mode User Group Age Argument
142d /run/user 0755 root root 10d -
143L /tmp/foobar - - - - /dev/null</programlisting>
302fbdf2 144
657cf7f4 145 <para>Fields may be enclosed within quotes and contain C-style escapes.</para>
146
302fbdf2
ZJS
147 <refsect2>
148 <title>Type</title>
149
150 <para>The type consists of a single letter and optionally an
6d7b5433 151 exclamation mark and/or minus sign.</para>
302fbdf2
ZJS
152
153 <para>The following line types are understood:</para>
154
155 <variablelist>
156 <varlistentry>
157 <term><varname>f</varname></term>
49e87292
LP
158 <listitem><para>Create a file if it does not exist yet. If the argument parameter is given and the file did
159 not exist yet, it will be written to the file. Does not follow symlinks.</para></listitem>
302fbdf2
ZJS
160 </varlistentry>
161
162 <varlistentry>
163 <term><varname>F</varname></term>
164 <listitem><para>Create or truncate a file. If the argument
6a9171d2 165 parameter is given, it will be written to the file. Does not follow symlinks.</para>
302fbdf2
ZJS
166 </listitem>
167 </varlistentry>
168
169 <varlistentry>
d0ea5c5e
ZS
170 <term><varname>w, w+</varname></term>
171 <listitem><para>Write the argument parameter to a file, if the file exists.
172 If suffixed with <varname>+</varname>, the line will be appended to the file.
173 If your configuration writes multiple lines to the same file, use <varname>w+</varname>.
174 Lines of this type accept shell-style globs in place of normal path names.
175 The argument parameter will be written without a trailing newline.
176 C-style backslash escapes are interpreted. Follows symlinks.</para></listitem>
302fbdf2
ZJS
177 </varlistentry>
178
179 <varlistentry>
180 <term><varname>d</varname></term>
488e4352
ZJS
181 <listitem><para>Create a directory. The mode and ownership will be adjusted if specified. Contents
182 of this directory are subject to time based cleanup if the age argument is specified.
183 </para></listitem>
302fbdf2
ZJS
184 </varlistentry>
185
186 <varlistentry>
187 <term><varname>D</varname></term>
488e4352
ZJS
188 <listitem><para>Similar to <varname>d</varname>, but in addition the contents of the directory will
189 be removed when <option>--remove</option> is used.</para></listitem>
4b743d67 190 </varlistentry>
df8dee85
ZJS
191
192 <varlistentry>
193 <term><varname>e</varname></term>
488e4352
ZJS
194 <listitem><para>Adjust the mode and ownership of existing directories and remove their contents
195 based on age.
196 Lines of this type accept shell-style globs in place of normal path names. Contents of the
197 directories are subject to time based cleanup if the age argument is specified. If the age argument
198 is <literal>0</literal>, contents will be unconditionally deleted every time
199 <command>systemd-tmpfiles --clean</command> is run.</para>
200
201 <para>For this entry to be useful, at least one of the mode, user, group, or age arguments must be
202 specified, since otherwise this entry has no effect. As an exception, an entry with no effect may
203 be useful when combined with <varname>!</varname>, see the examples.</para></listitem>
302fbdf2
ZJS
204 </varlistentry>
205
206 <varlistentry>
207 <term><varname>v</varname></term>
488e4352
ZJS
208 <listitem><para>Create a subvolume if the path does not exist yet, the file system supports
209 subvolumes (btrfs), and the system itself is installed into a subvolume (specifically: the root
210 directory <filename>/</filename> is itself a subvolume). Otherwise, create a normal directory, in
211 the same way as <varname>d</varname>.</para>
212
213 <para>A subvolume created with this line type is not assigned to any higher-level quota group. For
214 that, use <varname>q</varname> or <varname>Q</varname>, which allow creating simple quota group
215 hierarchies, see below.</para></listitem>
5fb13eb5
LP
216 </varlistentry>
217
218 <varlistentry>
219 <term><varname>q</varname></term>
488e4352
ZJS
220 <listitem><para>Create a subvolume or directory the same as <varname>v</varname>, but assign the
221 subvolume to the same higher-level quota groups as the parent. This ensures that higher-level
222 limits and accounting applied to the parent subvolume also include the specified subvolume. On
223 non-btrfs file systems, this line type is identical to <varname>d</varname>.</para>
f17a8d61
FB
224
225 <para>If the subvolume already exists, no change to the quota hierarchy is made, regardless of whether the
226 subvolume is already attached to a quota group or not. Also see <varname>Q</varname> below. See <citerefentry
227 project='die-net'><refentrytitle>btrfs-qgroup</refentrytitle><manvolnum>8</manvolnum></citerefentry> for
228 details about the btrfs quota group concept.</para></listitem>
5fb13eb5
LP
229 </varlistentry>
230
231 <varlistentry>
232 <term><varname>Q</varname></term>
488e4352
ZJS
233 <listitem><para>Create the subvolume or directory the same as <varname>v</varname>, but assign the
234 new subvolume to a new leaf quota group. Instead of copying the higher-level quota group
235 assignments from the parent as is done with <varname>q</varname>, the lowest quota group of the
236 parent subvolume is determined that is not the leaf quota group. Then, an "intermediary" quota
237 group is inserted that is one level below this level, and shares the same ID part as the specified
238 subvolume. If no higher-level quota group exists for the parent subvolume, a new quota group at
239 level 255 sharing the same ID as the specified subvolume is inserted instead. This new intermediary
240 quota group is then assigned to the parent subvolume's higher-level quota groups, and the specified
241 subvolume's leaf quota group is assigned to it.</para>
f17a8d61
FB
242
243 <para>Effectively, this has a similar effect as <varname>q</varname>, however introduces a new higher-level
244 quota group for the specified subvolume that may be used to enforce limits and accounting to the specified
245 subvolume and children subvolume created within it. Thus, by creating subvolumes only via
246 <varname>q</varname> and <varname>Q</varname>, a concept of "subtree quotas" is implemented. Each subvolume
247 for which <varname>Q</varname> is set will get a "subtree" quota group created, and all child subvolumes
248 created within it will be assigned to it. Each subvolume for which <varname>q</varname> is set will not get
249 such a "subtree" quota group, but it is ensured that they are added to the same "subtree" quota group as
250 their immediate parents.</para>
251
252 <para>It is recommended to use <varname>Q</varname> for subvolumes that typically contain further subvolumes,
253 and where it is desirable to have accounting and quota limits on all child subvolumes together. Examples for
254 <varname>Q</varname> are typically <filename>/home</filename> or <filename>/var/lib/machines</filename>. In
255 contrast, <varname>q</varname> should be used for subvolumes that either usually do not include further
256 subvolumes or where no accounting and quota limits are needed that apply to all child subvolumes
257 together. Examples for <varname>q</varname> are typically <filename>/var</filename> or
258 <filename>/var/tmp</filename>. </para>
259
260 <para>As with <varname>q</varname>, <varname>Q</varname> has no effect on the quota group hierarchy if the
488e4352
ZJS
261 subvolume already exists, regardless of whether the subvolume already belong to a quota group or not.
262 </para></listitem>
302fbdf2
ZJS
263 </varlistentry>
264
265 <varlistentry>
266 <term><varname>p</varname></term>
267 <term><varname>p+</varname></term>
268 <listitem><para>Create a named pipe (FIFO) if it does not
269 exist yet. If suffixed with <varname>+</varname> and a file
270 already exists where the pipe is to be created, it will be
271 removed and be replaced by the pipe.</para></listitem>
272 </varlistentry>
273
274 <varlistentry>
275 <term><varname>L</varname></term>
276 <term><varname>L+</varname></term>
277 <listitem><para>Create a symlink if it does not exist
b3f5897f
WD
278 yet. If suffixed with <varname>+</varname> and a file or
279 directory already exists where the symlink is to be created,
280 it will be removed and be replaced by the symlink. If the
281 argument is omitted, symlinks to files with the same name
282 residing in the directory
283 <filename>/usr/share/factory/</filename> are created. Note
284 that permissions and ownership on symlinks are ignored.
285 </para></listitem>
302fbdf2
ZJS
286 </varlistentry>
287
288 <varlistentry>
289 <term><varname>c</varname></term>
290 <term><varname>c+</varname></term>
291 <listitem><para>Create a character device node if it does
292 not exist yet. If suffixed with <varname>+</varname> and a
293 file already exists where the device node is to be created,
294 it will be removed and be replaced by the device node. It is
295 recommended to suffix this entry with an exclamation mark to
296 only create static device nodes at boot, as udev will not
297 manage static device nodes that are created at runtime.
298 </para></listitem>
299 </varlistentry>
300
301 <varlistentry>
302 <term><varname>b</varname></term>
303 <term><varname>b+</varname></term>
304 <listitem><para>Create a block device node if it does not
305 exist yet. If suffixed with <varname>+</varname> and a file
306 already exists where the device node is to be created, it
307 will be removed and be replaced by the device node. It is
308 recommended to suffix this entry with an exclamation mark to
309 only create static device nodes at boot, as udev will not
310 manage static device nodes that are created at runtime.
311 </para></listitem>
312 </varlistentry>
313
314 <varlistentry>
315 <term><varname>C</varname></term>
316 <listitem><para>Recursively copy a file or directory, if the
a6f44645
RG
317 destination files or directories do not exist yet or the
318 destination directory is empty. Note that this command will not
319 descend into subdirectories if the destination directory already
320 exists and is not empty. Instead, the entire copy operation is
321 skipped. If the argument is omitted, files from the source directory
302fbdf2 322 <filename>/usr/share/factory/</filename> with the same name
6a9171d2 323 are copied. Does not follow symlinks.</para></listitem>
302fbdf2
ZJS
324 </varlistentry>
325
326 <varlistentry>
327 <term><varname>x</varname></term>
328 <listitem><para>Ignore a path during cleaning. Use this type
329 to exclude paths from clean-up as controlled with the Age
330 parameter. Note that lines of this type do not influence the
331 effect of <varname>r</varname> or <varname>R</varname>
50d9e46d 332 lines. Lines of this type accept shell-style globs in place
302fbdf2
ZJS
333 of normal path names. </para></listitem>
334 </varlistentry>
335
336 <varlistentry>
337 <term><varname>X</varname></term>
338 <listitem><para>Ignore a path during cleaning. Use this type
339 to exclude paths from clean-up as controlled with the Age
340 parameter. Unlike <varname>x</varname>, this parameter will
341 not exclude the content if path is a directory, but only
342 directory itself. Note that lines of this type do not
343 influence the effect of <varname>r</varname> or
50d9e46d 344 <varname>R</varname> lines. Lines of this type accept
302fbdf2
ZJS
345 shell-style globs in place of normal path names.
346 </para></listitem>
347 </varlistentry>
348
349 <varlistentry>
350 <term><varname>r</varname></term>
351 <listitem><para>Remove a file or directory if it exists.
352 This may not be used to remove non-empty directories, use
353 <varname>R</varname> for that. Lines of this type accept
354 shell-style globs in place of normal path
6a9171d2 355 names. Does not follow symlinks.</para></listitem>
302fbdf2
ZJS
356 </varlistentry>
357
358 <varlistentry>
359 <term><varname>R</varname></term>
360 <listitem><para>Recursively remove a path and all its
361 subdirectories (if it is a directory). Lines of this type
362 accept shell-style globs in place of normal path
6a9171d2 363 names. Does not follow symlinks.</para></listitem>
302fbdf2
ZJS
364 </varlistentry>
365
366 <varlistentry>
367 <term><varname>z</varname></term>
488e4352
ZJS
368 <listitem><para>Adjust the access mode, user and group ownership, and restore the SELinux security
369 context of a file or directory, if it exists. Lines of this type accept shell-style globs in place
370 of normal path names. Does not follow symlinks.</para></listitem>
302fbdf2
ZJS
371 </varlistentry>
372
373 <varlistentry>
374 <term><varname>Z</varname></term>
488e4352
ZJS
375 <listitem><para>Recursively set the access mode, user and group ownership, and restore the SELinux
376 security context of a file or directory if it exists, as well as of its subdirectories and the
377 files contained therein (if applicable). Lines of this type accept shell-style globs in place of
378 normal path names. Does not follow symlinks.</para></listitem>
302fbdf2
ZJS
379 </varlistentry>
380
381 <varlistentry>
382 <term><varname>t</varname></term>
f3d3a9ca
LP
383 <listitem><para>Set extended attributes, see <citerefentry
384 project='man-pages'><refentrytitle>attr</refentrytitle>
385 <manvolnum>5</manvolnum></citerefentry> for details. The argument field should take one or more
386 assignment expressions in the form
387 <replaceable>namespace</replaceable>.<replaceable>attribute</replaceable>=<replaceable>value</replaceable>,
388 for examples see below. Lines of this type accept shell-style globs in place of normal path
389 names. This can be useful for setting SMACK labels. Does not follow symlinks.</para>
390
391 <para>Please note that extended attributes settable with this line type are a different concept
392 from the Linux file attributes settable with <varname>h</varname>/<varname>H</varname>, see
393 below.</para></listitem>
b705ab6a
ZJS
394 </varlistentry>
395
396 <varlistentry>
397 <term><varname>T</varname></term>
f3d3a9ca 398 <listitem><para>Same as <varname>t</varname>, but operates recursively.</para></listitem>
302fbdf2 399 </varlistentry>
f8eeeaf9 400
fa3f5fd2
GB
401 <varlistentry>
402 <term><varname>h</varname></term>
f3d3a9ca
LP
403 <listitem><para>Set Linux file/directory attributes. Lines of this type accept shell-style globs in
404 place of normal path names.</para>
fa3f5fd2 405
f3d3a9ca 406 <para>The format of the argument field is <varname>[+-=][aAcCdDeijPsStTu]</varname>. The prefix
75006470
LP
407 <varname>+</varname> (the default one) causes the attribute(s) to be added; <varname>-</varname>
408 causes the attribute(s) to be removed; <varname>=</varname> causes the attributes to be set exactly
409 as the following letters. The letters <literal>aAcCdDeijPsStTu</literal> select the new attributes
410 for the files, see <citerefentry project='man-pages'><refentrytitle>chattr</refentrytitle>
fa3f5fd2
GB
411 <manvolnum>1</manvolnum></citerefentry> for further information.
412 </para>
f3d3a9ca
LP
413
414 <para>Passing only <varname>=</varname> as argument resets all the file attributes listed above. It
415 has to be pointed out that the <varname>=</varname> prefix limits itself to the attributes
416 corresponding to the letters listed here. All other attributes will be left untouched. Does not
417 follow symlinks.</para>
418
419 <para>Please note that the Linux file attributes settable with this line type are a different
420 concept from the extended attributes settable with <varname>t</varname>/<varname>T</varname>,
421 see above.</para></listitem>
fa3f5fd2
GB
422 </varlistentry>
423
424 <varlistentry>
425 <term><varname>H</varname></term>
f3d3a9ca 426 <listitem><para>Sames as <varname>h</varname>, but operates recursively.</para></listitem>
fa3f5fd2
GB
427 </varlistentry>
428
f8eeeaf9
ZJS
429 <varlistentry>
430 <term><varname>a</varname></term>
50d9e46d 431 <term><varname>a+</varname></term>
f3d3a9ca
LP
432 <listitem><para>Set POSIX ACLs (access control lists), see <citerefentry
433 project='man-pages'><refentrytitle>acl</refentrytitle>
434 <manvolnum>5</manvolnum></citerefentry>. If suffixed with <varname>+</varname>, the specified
435 entries will be added to the existing set. <command>systemd-tmpfiles</command> will automatically
436 add the required base entries for user and group based on the access mode of the file, unless base
437 entries already exist or are explicitly specified. The mask will be added if not specified
438 explicitly or already present. Lines of this type accept shell-style globs in place of normal path
439 names. This can be useful for allowing additional access to certain files. Does not follow
440 symlinks.</para></listitem>
b705ab6a
ZJS
441 </varlistentry>
442
443 <varlistentry>
444 <term><varname>A</varname></term>
50d9e46d
ZJS
445 <term><varname>A+</varname></term>
446 <listitem><para>Same as <varname>a</varname> and
6a9171d2
LP
447 <varname>a+</varname>, but recursive. Does not follow
448 symlinks.</para></listitem>
f8eeeaf9 449 </varlistentry>
302fbdf2
ZJS
450 </variablelist>
451
7f700b8a 452 <para>If the exclamation mark is used, this line is only safe to
302fbdf2
ZJS
453 execute during boot, and can break a running system. Lines
454 without the exclamation mark are presumed to be safe to execute
455 at any time, e.g. on package upgrades.
456 <command>systemd-tmpfiles</command> will execute line with an
457 exclamation mark only if option <option>--boot</option> is
458 given.</para>
459
460 <para>For example:
461 <programlisting># Make sure these are created by default so that nobody else can
9b9c30ec 462d /tmp/.X11-unix 1777 root root 10d
302fbdf2 463
9b9c30ec
LP
464# Unlink the X11 lock files
465r! /tmp/.X[0-9]*-lock</programlisting>
302fbdf2
ZJS
466 The second line in contrast to the first one would break a
467 running system, and will only be executed with
468 <option>--boot</option>.</para>
7fa10748 469
6d7b5433
WD
470 <para>If the minus sign is used, this line failing to run
471 successfully during create (and only create) will not cause
472 the execution of <command>systemd-tmpfiles</command> to return
473 an error.</para>
474
475 <para>For example:
476 <programlisting># Modify sysfs but don't fail if we are in a container with a read-only /proc
477w- /proc/sys/vm/swappiness - - - - 10</programlisting></para>
478
7fa10748
LP
479 <para>Note that for all line types that result in creation of any kind of file node
480 (i.e. <varname>f</varname>/<varname>F</varname>,
481 <varname>d</varname>/<varname>D</varname>/<varname>v</varname>/<varname>q</varname>/<varname>Q</varname>,
482 <varname>p</varname>, <varname>L</varname>, <varname>c</varname>/<varname>b</varname> and <varname>C</varname>)
483 leading directories are implicitly created if needed, owned by root with an access mode of 0755. In order to
484 create them with different modes or ownership make sure to add appropriate <varname>d</varname> lines.</para>
302fbdf2
ZJS
485 </refsect2>
486
487 <refsect2>
488 <title>Path</title>
489
490 <para>The file system path specification supports simple
2df36d09
ZJS
491 specifier expansion, see below. The path (after expansion) must be
492 absolute.</para>
302fbdf2
ZJS
493 </refsect2>
494
495 <refsect2>
496 <title>Mode</title>
497
498 <para>The file access mode to use when creating this file or
499 directory. If omitted or when set to <literal>-</literal>, the
500 default is used: 0755 for directories, 0644 for all other file
501 objects. For <varname>z</varname>, <varname>Z</varname> lines,
502 if omitted or when set to <literal>-</literal>, the file access
503 mode will not be modified. This parameter is ignored for
504 <varname>x</varname>, <varname>r</varname>,
f8eeeaf9
ZJS
505 <varname>R</varname>, <varname>L</varname>, <varname>t</varname>,
506 and <varname>a</varname> lines.</para>
302fbdf2
ZJS
507
508 <para>Optionally, if prefixed with <literal>~</literal>, the
509 access mode is masked based on the already set access bits for
510 existing file or directories: if the existing file has all
511 executable bits unset, all executable bits are removed from the
512 new access mode, too. Similarly, if all read bits are removed
513 from the old access mode, they will be removed from the new
514 access mode too, and if all write bits are removed, they will be
515 removed from the new access mode too. In addition, the
516 sticky/SUID/SGID bit is removed unless applied to a
517 directory. This functionality is particularly useful in
518 conjunction with <varname>Z</varname>.</para>
519 </refsect2>
520
521 <refsect2>
488e4352
ZJS
522 <title>User, Group</title>
523
524 <para>The user and group to use for this file or directory. This may either be a numeric ID or a
525 user/group name. If omitted or when set to <literal>-</literal>, the user and group of the user who
526 invokes <command>systemd-tmpfiles</command> is used. For <varname>z</varname> and <varname>Z</varname>
527 lines, when omitted or when set to <literal>-</literal>, the file ownership will not be modified. These
528 parameters are ignored for <varname>x</varname>, <varname>r</varname>, <varname>R</varname>,
529 <varname>L</varname>, <varname>t</varname>, and <varname>a</varname> lines.</para>
007b77ac
LP
530
531 <para>This field should generally only reference system users/groups, i.e. users/groups that are
532 guaranteed to be resolvable during early boot. If this field references users/groups that only become
533 resolveable during later boot (i.e. after NIS, LDAP or a similar networked directory service become
534 available), execution of the operations declared by the line will likely fail. Also see <ulink
535 url="https://systemd.io/UIDS-GIDS.html#notes-on-resolvability-of-user-and-group-names">Notes on
536 Resolvability of User and Group Names</ulink> for more information on requirements on system user/group
537 definitions.</para>
302fbdf2
ZJS
538 </refsect2>
539
540 <refsect2>
541 <title>Age</title>
542 <para>The date field, when set, is used to decide what files to
543 delete when cleaning. If a file or directory is older than the
544 current time minus the age field, it is deleted. The field
545 format is a series of integers each followed by one of the
a8eaaee7 546 following suffixes for the respective time units:
00c53f42
ZJS
547 <constant>s</constant>,
548 <constant>m</constant> or <constant>min</constant>,
549 <constant>h</constant>,
550 <constant>d</constant>,
551 <constant>w</constant>,
a8eaaee7 552 <constant>ms</constant>, and
00c53f42 553 <constant>us</constant>,
a8eaaee7
JE
554 meaning seconds, minutes, hours, days, weeks,
555 milliseconds, and microseconds, respectively. Full names of the time units can
00c53f42
ZJS
556 be used too.
557 </para>
302fbdf2
ZJS
558
559 <para>If multiple integers and units are specified, the time
00c53f42
ZJS
560 values are summed. If an integer is given without a unit,
561 <constant>s</constant> is assumed.
302fbdf2
ZJS
562 </para>
563
564 <para>When the age is set to zero, the files are cleaned
565 unconditionally.</para>
566
5fb13eb5 567 <para>The age field only applies to lines starting with
df8dee85 568 <varname>d</varname>, <varname>D</varname>, <varname>e</varname>,
5fb13eb5
LP
569 <varname>v</varname>, <varname>q</varname>,
570 <varname>Q</varname>, <varname>C</varname>, <varname>x</varname>
571 and <varname>X</varname>. If omitted or set to
572 <literal>-</literal>, no automatic clean-up is done.</para>
302fbdf2
ZJS
573
574 <para>If the age field starts with a tilde character
575 <literal>~</literal>, the clean-up is only applied to files and
576 directories one level inside the directory specified, but not
577 the files and directories immediately inside it.</para>
662b3e58
LW
578
579 <para>The age of a file system entry is determined from its last
580 modification timestamp (mtime), its last access timestamp (atime),
581 and (except for directories) its last status change timestamp
582 (ctime). Any of these three (or two) values will prevent cleanup
583 if it is more recent than the current time minus the age
584 field.</para>
aa1f2e52
LP
585
586 <para>Note that while the aging algorithm is run a 'shared' BSD file lock (see <citerefentry
587 project='man-pages'><refentrytitle>flock</refentrytitle><manvolnum>2</manvolnum></citerefentry>) is
588 taken on each directory the algorithm descends into (and each directory below that, and so on). If the
589 aging algorithm finds a lock is already taken on some directory, it (and everything below it) is
590 skipped. Applications may use this to temporarily exclude certain directory subtrees from the aging
591 algorithm: the applications can take a BSD file lock themselves, and as long as they keep it aging of
592 the directory and everything below it is disabled.</para>
302fbdf2
ZJS
593 </refsect2>
594
595 <refsect2>
596 <title>Argument</title>
597
49e87292
LP
598 <para>For <varname>L</varname> lines determines the destination path of the symlink. For <varname>c</varname> and
599 <varname>b</varname>, determines the major/minor of the device node, with major and minor formatted as integers,
600 separated by <literal>:</literal>, e.g. <literal>1:3</literal>. For <varname>f</varname>, <varname>F</varname>,
601 and <varname>w</varname>, the argument may be used to specify a short string that is written to the file,
602 suffixed by a newline. For <varname>C</varname>, specifies the source file or directory. For <varname>t</varname>
603 and <varname>T</varname>, determines extended attributes to be set. For <varname>a</varname> and
604 <varname>A</varname>, determines ACL attributes to be set. For <varname>h</varname> and <varname>H</varname>,
605 determines the file attributes to set. Ignored for all other lines.</para>
2df36d09
ZJS
606
607 <para>This field can contain specifiers, see below.</para>
302fbdf2 608 </refsect2>
2df36d09 609 </refsect1>
302fbdf2 610
2df36d09
ZJS
611 <refsect1>
612 <title>Specifiers</title>
613
614 <para>Specifiers can be used in the "path" and "argument" fields.
751223fe 615 An unknown or unresolvable specifier is treated as invalid configuration.
2df36d09
ZJS
616 The following expansions are understood:</para>
617 <table>
618 <title>Specifiers available</title>
619 <tgroup cols='3' align='left' colsep='1' rowsep='1'>
620 <colspec colname="spec" />
621 <colspec colname="mean" />
622 <colspec colname="detail" />
623 <thead>
624 <row>
625 <entry>Specifier</entry>
626 <entry>Meaning</entry>
627 <entry>Details</entry>
628 </row>
629 </thead>
630 <tbody>
2df36d09
ZJS
631 <row>
632 <entry><literal>%b</literal></entry>
633 <entry>Boot ID</entry>
634 <entry>The boot ID of the running system, formatted as string. See <citerefentry><refentrytitle>random</refentrytitle><manvolnum>4</manvolnum></citerefentry> for more information.</entry>
635 </row>
709f4c47
LP
636 <row>
637 <entry><literal>%C</literal></entry>
638 <entry>System or user cache directory</entry>
639 <entry>In <option>--user</option> mode, this is the same as <varname>$XDG_CACHE_HOME</varname>, and <filename>/var/cache</filename> otherwise.</entry>
640 </row>
641 <row>
642 <entry><literal>%h</literal></entry>
643 <entry>User home directory</entry>
052c59c3 644 <entry>This is the home directory of the user running the command. In case of the system instance this resolves to <literal>/root</literal>.</entry>
709f4c47 645 </row>
2df36d09
ZJS
646 <row>
647 <entry><literal>%H</literal></entry>
648 <entry>Host name</entry>
649 <entry>The hostname of the running system.</entry>
650 </row>
651 <row>
709f4c47
LP
652 <entry><literal>%L</literal></entry>
653 <entry>System or user log directory</entry>
654 <entry>In <option>--user</option> mode, this is the same as <varname>$XDG_CONFIG_HOME</varname> with <filename noindex='true'>/log</filename> appended, and <filename>/var/log</filename> otherwise.</entry>
ca23eeb5
TW
655 </row>
656 <row>
709f4c47
LP
657 <entry><literal>%m</literal></entry>
658 <entry>Machine ID</entry>
659 <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>
ca23eeb5
TW
660 </row>
661 <row>
709f4c47
LP
662 <entry><literal>%S</literal></entry>
663 <entry>System or user state directory</entry>
664 <entry>In <option>--user</option> mode, this is the same as <varname>$XDG_CONFIG_HOME</varname>, and <filename>/var/lib</filename> otherwise.</entry>
ca23eeb5 665 </row>
5a8575ef
ZJS
666 <row>
667 <entry><literal>%t</literal></entry>
668 <entry>System or user runtime directory</entry>
8252eb18 669 <entry>In <option>--user</option> mode, this is the same <varname>$XDG_RUNTIME_DIR</varname>, and <filename>/run</filename> otherwise.</entry>
5a8575ef 670 </row>
b294e594
LP
671 <row>
672 <entry><literal>%T</literal></entry>
673 <entry>Directory for temporary files</entry>
674 <entry>This is either <filename>/tmp</filename> or the path <literal>$TMPDIR</literal>, <literal>$TEMP</literal> or <literal>$TMP</literal> are set to.</entry>
675 </row>
b75f0c69
DC
676 <row>
677 <entry><literal>%g</literal></entry>
678 <entry>User group</entry>
679 <entry>This is the name of the group running the command. In case of the system instance this resolves to <literal>root</literal>.</entry>
680 </row>
681 <row>
682 <entry><literal>%G</literal></entry>
683 <entry>User GID</entry>
684 <entry>This is the numeric GID of the group running the command. In case of the system instance this resolves to <constant>0</constant>.</entry>
685 </row>
5a8575ef 686 <row>
709f4c47
LP
687 <entry><literal>%u</literal></entry>
688 <entry>User name</entry>
052c59c3 689 <entry>This is the name of the user running the command. In case of the system instance this resolves to <literal>root</literal>.</entry>
5a8575ef
ZJS
690 </row>
691 <row>
709f4c47
LP
692 <entry><literal>%U</literal></entry>
693 <entry>User UID</entry>
052c59c3 694 <entry>This is the numeric UID of the user running the command. In case of the system instance this resolves to <constant>0</constant>.</entry>
5a8575ef
ZJS
695 </row>
696 <row>
709f4c47
LP
697 <entry><literal>%v</literal></entry>
698 <entry>Kernel release</entry>
699 <entry>Identical to <command>uname -r</command> output.</entry>
5a8575ef 700 </row>
b294e594
LP
701 <row>
702 <entry><literal>%V</literal></entry>
703 <entry>Directory for larger and persistent temporary files</entry>
704 <entry>This is either <filename>/var/tmp</filename> or the path <literal>$TMPDIR</literal>, <literal>$TEMP</literal> or <literal>$TMP</literal> are set to.</entry>
705 </row>
2df36d09
ZJS
706 <row>
707 <entry><literal>%%</literal></entry>
5a8575ef 708 <entry>Escaped <literal>%</literal></entry>
2df36d09
ZJS
709 <entry>Single percent sign.</entry>
710 </row>
711 </tbody>
712 </tgroup>
713 </table>
302fbdf2
ZJS
714 </refsect1>
715
716 <refsect1>
4b743d67 717 <title>Examples</title>
302fbdf2 718 <example>
4b743d67
ZJS
719 <title>Create directories with specific mode and ownership</title>
720 <para>
0a07667d 721 <citerefentry project='die-net'><refentrytitle>screen</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
4b743d67
ZJS
722 needs two directories created at boot with specific modes and ownership:</para>
723
724 <programlisting># /usr/lib/tmpfiles.d/screen.conf
725d /run/screens 1777 root screen 10d
726d /run/uscreens 0755 root screen 10d12h
727</programlisting>
728
729 <para>Contents of <filename>/run/screens</filename> and /run/uscreens will
1655cdee 730 be cleaned up after 10 and 10½ days, respectively.</para>
4b743d67 731 </example>
302fbdf2 732
4b743d67
ZJS
733 <example>
734 <title>Create a directory with a SMACK attribute</title>
735 <programlisting>D /run/cups - - - -
736t /run/cups - - - - security.SMACK64=printing user.attr-with-spaces="foo bar"
737 </programlisting>
738
b17649ee 739 <para>The directory will be owned by root and have default mode. Its contents are
4b743d67
ZJS
740 not subject to time based cleanup, but will be obliterated when
741 <command>systemd-tmpfiles --remove</command> runs.</para>
302fbdf2 742 </example>
4b743d67 743
302fbdf2 744 <example>
4b743d67
ZJS
745 <title>Create a directory and prevent its contents from cleanup</title>
746 <para>
0a07667d 747 <citerefentry project='die-net'><refentrytitle>abrt</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
4b743d67
ZJS
748 needs a directory created at boot with specific mode and ownership and its content
749 should be preserved from the automatic cleanup applied to the contents of
750 <filename>/var/tmp</filename>:</para>
751
752 <programlisting># /usr/lib/tmpfiles.d/tmp.conf
753d /var/tmp 1777 root root 30d
754</programlisting>
755
756 <programlisting># /usr/lib/tmpfiles.d/abrt.conf
757d /var/tmp/abrt 0755 abrt abrt -
df8dee85
ZJS
758</programlisting>
759 </example>
760
761 <example>
762 <title>Apply clean up during boot and based on time</title>
763
764 <programlisting># /usr/lib/tmpfiles.d/dnf.conf
765r! /var/cache/dnf/*/*/download_lock.pid
766r! /var/cache/dnf/*/*/metadata_lock.pid
767r! /var/lib/dnf/rpmdb_lock.pid
e80f1a79 768e /var/cache/dnf/ - - - 30d
4b743d67 769</programlisting>
302fbdf2 770
df8dee85 771 <para>The lock files will be removed during boot. Any files and directories in
e80f1a79 772 <filename>/var/cache/dnf/</filename> will be removed after they have not been
df8dee85 773 accessed in 30 days.</para>
302fbdf2 774 </example>
ed7fd549
ZJS
775
776 <example>
b719b26c 777 <title>Empty the contents of a cache directory on boot</title>
ed7fd549
ZJS
778
779 <programlisting># /usr/lib/tmpfiles.d/krb5rcache.conf
780e! /var/cache/krb5rcache - - - 0
781</programlisting>
782
783 <para>Any files and subdirectories in <filename>/var/cache/krb5rcache/</filename>
784 will be removed on boot. The directory will not be created.
785 </para>
786 </example>
302fbdf2
ZJS
787 </refsect1>
788
6a89d671
ZJS
789 <refsect1>
790 <title><filename>/run/</filename> and <filename>/var/run/</filename></title>
791 <para><filename>/var/run/</filename> is a deprecated symlink to <filename>/run/</filename>, and
792 applications should use the latter. <command>systemd-tmpfiles</command> will warn if
793 <filename>/var/run/</filename> is used.</para>
794 </refsect1>
795
302fbdf2
ZJS
796 <refsect1>
797 <title>See Also</title>
798 <para>
799 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
800 <citerefentry><refentrytitle>systemd-tmpfiles</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
801 <citerefentry><refentrytitle>systemd-delta</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
f8eeeaf9
ZJS
802 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
803 <citerefentry project='man-pages'><refentrytitle>attr</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
804 <citerefentry project='man-pages'><refentrytitle>getfattr</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
805 <citerefentry project='man-pages'><refentrytitle>setfattr</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
806 <citerefentry project='man-pages'><refentrytitle>setfacl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
fa3f5fd2 807 <citerefentry project='man-pages'><refentrytitle>getfacl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
5fb13eb5
LP
808 <citerefentry project='man-pages'><refentrytitle>chattr</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
809 <citerefentry project='die-net'><refentrytitle>btrfs-subvolume</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
810 <citerefentry project='die-net'><refentrytitle>btrfs-qgroup</refentrytitle><manvolnum>8</manvolnum></citerefentry>
302fbdf2
ZJS
811 </para>
812 </refsect1>
4149f86d
BP
813
814</refentry>