From 61401dc227a6e326da3240bcfe70542c0c5bd27e Mon Sep 17 00:00:00 2001 From: Mauricio Lima Date: Wed, 14 Dec 2016 15:21:04 -0300 Subject: [PATCH] Fix manila-ui The manila-ui folder was updated[1] from manila_ui/enabled/ to /manila_ui/local/enabled/ 1. https://review.openstack.org/#/c/397926/ Change-Id: I3711b0649632f7d528d3fbd4d36023693b858b56 --- docker/horizon/extend_start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/horizon/extend_start.sh b/docker/horizon/extend_start.sh index a100a2c944..f1beed7d61 100644 --- a/docker/horizon/extend_start.sh +++ b/docker/horizon/extend_start.sh @@ -68,9 +68,9 @@ function config_magnum_dashboard { } function config_manila_ui { - for file in ${SITE_PACKAGES}/manila_ui/enabled/_*[^__].py; do + for file in ${SITE_PACKAGES}/manila_ui/local/enabled/_*[^__].py; do config_dashboard "${ENABLE_MANILA}" \ - "${SITE_PACKAGES}/manila_ui/enabled/${file##*/}" \ + "${SITE_PACKAGES}/manila_ui/local/enabled/${file##*/}" \ "${SITE_PACKAGES}/openstack_dashboard/local/enabled/${file##*/}" done }