Browse code

Fixes lib/heat to use DATABASE_PASSWORD instead of MYSQL_PASSWORD

The latter is not used anywhere else, but the former is used in all
of the other projects sharing the mysql database for devstack.

Change-Id: I2a0cd7e5b908eb144468caf410a6c41e0e5e3fd0

Clint Byrum authored on 2012/12/13 05:57:16
Showing 1 changed files
... ...
@@ -175,7 +175,7 @@ function init_heat() {
175 175
     # (re)create heat database
176 176
     recreate_database heat utf8
177 177
 
178
-    $HEAT_DIR/bin/heat-db-setup $os_PACKAGE -r $MYSQL_PASSWORD
178
+    $HEAT_DIR/bin/heat-db-setup $os_PACKAGE -r $DATABASE_PASSWORD
179 179
     $HEAT_DIR/tools/nova_create_flavors.sh
180 180
 }
181 181