diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-09-17 11:02:02 -0500 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-09-17 11:02:54 -0500 |
commit | 1731e34a4ebddf6e1247ad252c7a45c2c1163f42 (patch) | |
tree | b7497dda00d6f96dd794a49c12befdc73bfb7520 /man | |
parent | f485606bf8957d2954cf6fa5b0aabd5c39db15c1 (diff) |
tmpfiles: support simple specifier expansion for specified paths
Diffstat (limited to 'man')
-rw-r--r-- | man/tmpfiles.d.xml | 57 |
1 files changed, 56 insertions, 1 deletions
diff --git a/man/tmpfiles.d.xml b/man/tmpfiles.d.xml index cdc87c9192..1cf899226a 100644 --- a/man/tmpfiles.d.xml +++ b/man/tmpfiles.d.xml @@ -67,7 +67,7 @@ <title>Configuration Format</title> <para>Each configuration file shall be named in the - style of <filename><program>.conf</filename>. + style of <filename><package>.conf</filename>. Files in <filename>/etc/</filename> override files with the same name in <filename>/usr/lib/</filename> and <filename>/run/</filename>. Files in @@ -100,8 +100,12 @@ d /run/user 0755 root root 10d - L /tmp/foobar - - - - /dev/null</programlisting> + <refsect2> <title>Type</title> + + <para>The following line types are understood:</para> + <variablelist> <varlistentry> <term><varname>f</varname></term> @@ -234,6 +238,57 @@ L /tmp/foobar - - - - /dev/null</programlisting> </refsect2> <refsect2> + <title>Path</title> + + <para>The file system path specification supports simple specifier + expansion. The following expansions are + understood:</para> + + <table> + <title>Specifiers available</title> + <tgroup cols='3' align='left' colsep='1' rowsep='1'> + <colspec colname="spec" /> + <colspec colname="mean" /> + <colspec colname="detail" /> + <thead> + <row> + <entry>Specifier</entry> + <entry>Meaning</entry> + <entry>Details</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>%m</literal></entry> + <entry>Machine ID</entry> + <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> + </row> + <row> + <entry><literal>%b</literal></entry> + <entry>Boot ID</entry> + <entry>The boot ID of the running system, formatted as string. See <citerefentry><refentrytitle>random</refentrytitle><manvolnum>4</manvolnum></citerefentry> for more information.</entry> + </row> + <row> + <entry><literal>%H</literal></entry> + <entry>Host name</entry> + <entry>The hostname of the running system.</entry> + </row> + <row> + <entry><literal>%v</literal></entry> + <entry>Kernel release</entry> + <entry>Identical to <command>uname -r</command> output.</entry> + </row> + <row> + <entry><literal>%%</literal></entry> + <entry>Escaped %</entry> + <entry>Single percent sign.</entry> + </row> + </tbody> + </tgroup> + </table> + </refsect2> + + <refsect2> <title>Mode</title> <para>The file access mode to use when |