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 | |
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 'tmpfiles.d')
-rw-r--r-- | tmpfiles.d/systemd-nspawn.conf | 4 | ||||
-rw-r--r-- | tmpfiles.d/systemd-tmp.conf | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tmpfiles.d/systemd-nspawn.conf b/tmpfiles.d/systemd-nspawn.conf index 6549ea4101..78bd1c670e 100644 --- a/tmpfiles.d/systemd-nspawn.conf +++ b/tmpfiles.d/systemd-nspawn.conf @@ -19,5 +19,5 @@ Q /var/lib/machines 0700 - - - # systemd-nspawn --ephemeral places snapshots) we are more strict, to # avoid removing unrelated temporary files. -R!$ /var/lib/machines/.#* -R!$ /.#machine.* +R! /var/lib/machines/.#* +R! /.#machine.* 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/.#* |