]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Fixed the prerm script of heat-engine that was calling dbc_go heat instead of dbc_go...
authorThomas Goirand <thomas@goirand.fr>
Wed, 22 May 2013 16:14:15 +0000 (00:14 +0800)
committerThomas Goirand <thomas@goirand.fr>
Wed, 22 May 2013 16:14:15 +0000 (00:14 +0800)
Rewritten-From: 9ebdd3b732e667a26ac5f0b0c6c59f32f36e03ea

trusty/debian/changelog
trusty/debian/heat-engine.prerm

index 1097d081b74817edae0d2033a03023ef25ff7222..fb4528f89c2727f9e3ccb85b2128d2bd7ba91fc5 100644 (file)
@@ -2,6 +2,8 @@ heat (2013.1-4) unstable; urgency=low
 
   * Fixed the dbsync to the new thing upstream is using (it was crashing the
     postinst).
+  * Fixed the prerm script of heat-engine that was calling dbc_go heat instead
+    of dbc_go heat-engine.
 
  -- Thomas Goirand <zigo@debian.org>  Wed, 22 May 2013 23:57:49 +0800
 
index d79d1d385eb090283fb446e25de43cd207f61079..971cb921476b98ed0bd25e04b84f0e32b2e3c726 100644 (file)
@@ -8,7 +8,7 @@ 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 $@
+               dbc_go heat-engine $@
        fi
 fi