Franck Bui | 63f28ca | 2019-04-12 14:45:53 +0200 | [diff] [blame] | 1 | # This file is part of systemd. |
| 2 | # |
| 3 | # systemd is free software; you can redistribute it and/or modify it |
| 4 | # under the terms of the GNU Lesser General Public License as published by |
| 5 | # the Free Software Foundation; either version 2.1 of the License, or |
| 6 | # (at your option) any later version. |
| 7 | |
| 8 | # See tmpfiles.d(5) for details |
| 9 | |
| 10 | # Exclude namespace mountpoints created with PrivateTmp=yes |
| 11 | x /tmp/systemd-private-%b-* |
| 12 | X /tmp/systemd-private-%b-*/tmp |
| 13 | x /var/tmp/systemd-private-%b-* |
| 14 | X /var/tmp/systemd-private-%b-*/tmp |
| 15 | |
| 16 | # Remove top-level private temporary directories on each boot |
| 17 | R! /tmp/systemd-private-* |
| 18 | R! /var/tmp/systemd-private-* |
Krayushkin Konstantin | aae3c9a | 2019-05-31 11:16:17 +0300 | [diff] [blame] | 19 | |
| 20 | # Handle lost systemd-coredump temp files. They could be lost on old filesystems, |
| 21 | # for example, after hard reboot. |
| 22 | x /var/lib/systemd/coredump/.#core*.%b* |
| 23 | r! /var/lib/systemd/coredump/.#* |