summaryrefslogtreecommitdiffstats
path: root/debian/tzdata.postrm
blob: 0c04f71a3514bae636ee0d5c6bc430aff4d44480 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

# Remove /etc/localtime on purge
if [ "$1" = "purge" ]; then
	rm -f /etc/localtime /etc/timezone
fi

#DEBHELPER#