From: Thomas Goirand Date: Wed, 22 May 2013 15:58:41 +0000 (+0800) Subject: Fixed the dbsync to the new thing upstream is using X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=5b5ae47f6545df6f2d11f5245e7e281905d3a384;p=openstack-build%2Fheat-build.git Fixed the dbsync to the new thing upstream is using Rewritten-From: 7e2c6d896cd211d46bf61190723091fc6caafeaa --- diff --git a/trusty/debian/changelog b/trusty/debian/changelog index 52043e0a..1097d081 100644 --- a/trusty/debian/changelog +++ b/trusty/debian/changelog @@ -1,3 +1,10 @@ +heat (2013.1-4) unstable; urgency=low + + * Fixed the dbsync to the new thing upstream is using (it was crashing the + postinst). + + -- Thomas Goirand Wed, 22 May 2013 23:57:49 +0800 + heat (2013.1-3) unstable; urgency=low * Added missing dbconfig-common depends (Closes: #709126). Thanks to Andrea diff --git a/trusty/debian/heat-engine.postinst.in b/trusty/debian/heat-engine.postinst.in index 0b6db676..bf1f0853 100644 --- a/trusty/debian/heat-engine.postinst.in +++ b/trusty/debian/heat-engine.postinst.in @@ -15,8 +15,7 @@ if [ "$1" = "configure" ] ; then pkgos_dbc_postinst ${CONF} DEFAULT sql_connection heat $@ # This is the equivalent of db-sync: - su heat -c "python -m heat.db.sqlalchemy.manage version_control" - su heat -c "python -m heat.db.sqlalchemy.manage upgrade" + su heat -c "python -m heat.db.sync" fi #DEBHELPER#