diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-09-17 21:46:04 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-09-17 23:02:01 +0200 |
commit | 099b16c3e78f9cafcf842529f45e0ee65eac8fc1 (patch) | |
tree | 70fbd0da06e42fb8aedb95555088a97ff6bc2294 /tmpfiles.d/systemd-tmp.conf | |
parent | ukify: Remove debug log (diff) | |
download | systemd-099b16c3e78f9cafcf842529f45e0ee65eac8fc1.tar.xz systemd-099b16c3e78f9cafcf842529f45e0ee65eac8fc1.zip |
tmpfiles.d: Remove purge flag from lines that don't support it
Fixes db15657dfb8100c3c6cd8cf60fa68521e019d47a
Diffstat (limited to '')
-rw-r--r-- | tmpfiles.d/systemd-tmp.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tmpfiles.d/systemd-tmp.conf b/tmpfiles.d/systemd-tmp.conf index 093830586c..d47d468fba 100644 --- a/tmpfiles.d/systemd-tmp.conf +++ b/tmpfiles.d/systemd-tmp.conf @@ -14,10 +14,10 @@ x /var/tmp/systemd-private-%b-* X /var/tmp/systemd-private-%b-*/tmp # Remove top-level private temporary directories on each boot -R!$ /tmp/systemd-private-* -R!$ /var/tmp/systemd-private-* +R! /tmp/systemd-private-* +R! /var/tmp/systemd-private-* # Handle lost systemd-coredump temp files. They could be lost on old filesystems, # for example, after hard reboot. x /var/lib/systemd/coredump/.#core*.%b* -r!$ /var/lib/systemd/coredump/.#* +r! /var/lib/systemd/coredump/.#* |