Install devstack with murano on Python 3

Change-Id: I5637f1bdb14bfdd9f9c832d295a7b0f25b16b7bc
This commit is contained in:
Artem Tiumentcev 2017-04-26 16:33:21 +03:00
parent 15eb5da95e
commit 805ff6066e
1 changed files with 4 additions and 4 deletions

View File

@ -549,13 +549,13 @@ function init_murano_dashboard() {
local horizon_manage_py="$HORIZON_DIR/manage.py"
python "$horizon_manage_py" collectstatic --noinput
python "$horizon_manage_py" compress --force
python "$horizon_manage_py" migrate --noinput
$PYTHON "$horizon_manage_py" collectstatic --noinput
$PYTHON "$horizon_manage_py" compress --force
$PYTHON "$horizon_manage_py" migrate --noinput
# Compile message for murano-dashboard
cd $MURANO_DASHBOARD_DIR/muranodashboard
python "$horizon_manage_py" compilemessages
$PYTHON "$horizon_manage_py" compilemessages
restart_apache_server
}