mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-01-27 00:33:34 +00:00
18 lines
291 B
Bash
18 lines
291 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
[ -n "${DEBUG}" ] && set -o xtrace
|
|
PACKAGE=::package::
|
|
|
|
[ -n "${DEBUG}" ] && echo "PreRM Parameters: $@"
|
|
|
|
case $1 in
|
|
remove)
|
|
# This file might be hanging around in some cases. Fixes Bug#668980
|
|
rm -f /var/log/davical-upgrade.log || true
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|