summaryrefslogtreecommitdiffstats
path: root/autoscripts/postrm-init-tmpfiles-purge
blob: 31419f5020173d38063429e47a173866652dcfbe (plain)
1
2
3
4
5
6
7
if [ -x "$(command -v systemd-tmpfiles)" ]; then
	if [ "$1" = "purge" ] && systemd-tmpfiles --help | grep -q "\-\-purge"; then
		systemd-tmpfiles ${DPKG_ROOT:+--root="$DPKG_ROOT"} --purge - >/dev/null <<TMPFILES_EOF || true
#TMPFILES_PURGE#
TMPFILES_EOF
	fi
fi