From: Thomas Goirand Date: Mon, 4 Mar 2013 07:41:39 +0000 (+0000) Subject: Added missing heat-engine.prerm to deconfigure the db. X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=fb544f53da872fea6a8f3b652f5585db3a19a7dd;p=openstack-build%2Fheat-build.git Added missing heat-engine.prerm to deconfigure the db. Rewritten-From: 9221af3de90249e997d56b40d9c5cfcef04e90e8 --- diff --git a/trusty/debian/heat-engine.prerm b/trusty/debian/heat-engine.prerm new file mode 100644 index 00000000..d79d1d38 --- /dev/null +++ b/trusty/debian/heat-engine.prerm @@ -0,0 +1,17 @@ +#!/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 $@ + fi +fi + +#DEBHELPER# + +exit 0