diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-06-10 23:42:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-10 23:42:16 +0200 |
commit | e73a03e059830a3df8fac811f923704311e93731 (patch) | |
tree | 43e68b863f40aac29f942695c1544a112204eece /tmpfiles.d | |
parent | tmpfiles: add new "C" line for copying files or directories (diff) | |
download | systemd-e73a03e059830a3df8fac811f923704311e93731.tar.xz systemd-e73a03e059830a3df8fac811f923704311e93731.zip |
tmpfiles: get rid of "m" lines, make them redundant by "z"
"m" so far has been a non-globbing version of "z". Since this makes it
quite redundant, let's get rid of it. Remove "m" from the man pages,
beef up "z" docs instead, and make "m" nothing more than a compatibility
alias for "z".
Diffstat (limited to 'tmpfiles.d')
-rw-r--r-- | tmpfiles.d/systemd.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmpfiles.d/systemd.conf b/tmpfiles.d/systemd.conf index c5910f8cfe..85dc35699d 100644 --- a/tmpfiles.d/systemd.conf +++ b/tmpfiles.d/systemd.conf @@ -25,7 +25,7 @@ d /run/systemd/netif 0755 systemd-network systemd-network - d /run/systemd/netif/links 0755 systemd-network systemd-network - d /run/systemd/netif/leases 0755 systemd-network systemd-network - -m /var/log/journal 2755 root systemd-journal - - +z /var/log/journal 2755 root systemd-journal - - Z /var/log/journal/%m 2755 root systemd-journal - - -m /run/log/journal 2755 root systemd-journal - - +z /run/log/journal 2755 root systemd-journal - - Z /run/log/journal/%m 2755 root systemd-journal - - |