49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
#! /bin/sh
|
|
# postrm script for vn-host
|
|
#
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
# summary of how this script can be called:
|
|
# * <postrm> `remove'
|
|
# * <postrm> `purge'
|
|
# * <old-postrm> `upgrade' <new-version>
|
|
# * <new-postrm> `failed-upgrade' <old-version>
|
|
# * <new-postrm> `abort-install'
|
|
# * <new-postrm> `abort-install' <old-version>
|
|
# * <new-postrm> `abort-upgrade' <old-version>
|
|
# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
|
|
# for details, see /usr/share/doc/packaging-manual/
|
|
|
|
# Clear the debconf database as early as possible and signal debconf that
|
|
# we are done with it.
|
|
|
|
|
|
CERTS="VerdnaturaCA.crt VerdnaturaIntermediateLab.crt VerdnaturaInformaticaCA.crt"
|
|
|
|
CERTSDIR=/usr/share/ca-certificates
|
|
VERDNATURACERTSDIR="${CERTSDIR}/verdnatura"
|
|
LOCALCERTSDIR=/usr/local/share/ca-certificates
|
|
|
|
case "$1" in
|
|
remove|purge)
|
|
for certfile in ${CERTS} ; do
|
|
unlink ${LOCALCERTSDIR}/${certfile} 2>/dev/null || true
|
|
done
|
|
;;
|
|
|
|
upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
|
;;
|
|
|
|
*)
|
|
echo "postrm called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
esac
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|