deb-heat/debian/heat-common.prerm

18 lines
256 B
Bash

#!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_get heat/configure_db
if [ "$RET" = "true" ]; then
if [ -r /usr/share/dbconfig-common/dpkg/prerm ] ; then
. /usr/share/dbconfig-common/dpkg/prerm
dbc_go heat-common $@
fi
fi
#DEBHELPER#
exit 0