summaryrefslogtreecommitdiffstats
path: root/debian/initramfs-tools-core.postrm
blob: dc13943ec38f3a8aee221021da2e1c669559e0b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "${1}" = "purge" ]; then
	rm -f /etc/initramfs-tools/conf.d/resume
	rm -f /etc/initramfs-tools/modules
fi

#DEBHELPER#