summaryrefslogtreecommitdiff
path: root/autoscripts/postrm-ucf
blob: ff2f32c670e8eeb683e637e474c454b40a8cd96b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if [ "$1" = "purge" ]; then
	for ext in .ucf-new .ucf-old .ucf-dist ""; do
		rm -f "#UCFDEST#$ext"
	done
	
	if [ -x "`command -v ucf`" ]; then
		ucf --purge "#UCFDEST#"
	fi
	if [ -x "`command -v ucfr`" ]; then
		ucfr --purge #PACKAGE# "#UCFDEST#"
	fi
fi