fix the append box when importing collections
[davical.git] / debian / davical.prerm
blob22d3ac1661ab95b99ba18bb9bf64ccbe6688cf0d
1 #!/bin/sh
3 set -e
5 [ -n "${DEBUG}" ] && set -o xtrace
6 PACKAGE=::package::
8 [ -n "${DEBUG}" ] && echo "PreRM Parameters: $@"
10 case $1 in
11 remove)
12 # This file might be hanging around in some cases. Fixes Bug#668980
13 rm -f /var/log/davical-upgrade.log || true
15 esac
17 #DEBHELPER#