From 3edccca79ab4143e8e46b579e78464e70eb5a3bc Mon Sep 17 00:00:00 2001 From: Fei Long Wang Date: Tue, 14 Feb 2017 13:06:14 +1300 Subject: [PATCH] Using cp insteald ln for zaqar-ui Copy all the files under zaqar-ui enabled instead of using link to avoid missing any new panel. Change-Id: Ib0d1c719268f70dfc6e6e6dc238327b78266a892 --- devstack/plugin.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index 28688ea68..979253d17 100755 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -218,9 +218,8 @@ function install_zaqarui { # Remove following two 'mv' commands when mentioned bug is fixed. mv $ZAQARUI_DIR/test-requirements.txt $ZAQARUI_DIR/_test-requirements.txt setup_develop $ZAQARUI_DIR - mv $ZAQARUI_DIR/_test-requirements.txt $ZAQARUI_DIR/test-requirements.txt - ln -fs $ZAQARUI_DIR/zaqar_ui/enabled/_1510_project_messaging_group.py $HORIZON_DIR/openstack_dashboard/local/enabled/_1510_project_messaging_group.py - ln -fs $ZAQARUI_DIR/zaqar_ui/enabled/_1520_project_queues.py $HORIZON_DIR/openstack_dashboard/local/enabled/_1520_project_queues.py + mv $ZAQARUI_DIR/_test-requirements.txt $ZAQARUI_DIR/test-requirements.txt + cp -a $ZAQARUI_DIR/zaqar_ui/enabled/* $HORIZON_DIR/openstack_dashboard/local/enabled/ if [ -d $ZAQARUI_DIR/zaqar-ui/locale ]; then (cd $ZAQARUI_DIR/zaqar-ui; DJANGO_SETTINGS_MODULE=openstack_dashboard.settings ../manage.py compilemessages) fi