6e6a0a9e55
Use $PYTHON to execute manage.py commands because it handles both py2 and py3 environment. Change-Id: I694f42db9b8110ee2b95b8132cd5ee5aa9d7357b
62 lines
1.9 KiB
Bash
62 lines
1.9 KiB
Bash
# plugin.sh - DevStack plugin.sh dispatch script zun-ui
|
|
|
|
ZUN_UI_DIR=$(cd $(dirname $BASH_SOURCE)/.. && pwd)
|
|
PYTHON=${PYTHON:-python}
|
|
|
|
function install_zun_ui {
|
|
# NOTE(shu-mutou): workaround for devstack bug: 1540328
|
|
# where devstack install 'test-requirements' but should not do it
|
|
# for zun-ui project as it installs Horizon from url.
|
|
# Remove following two 'mv' commands when mentioned bug is fixed.
|
|
mv $ZUN_UI_DIR/test-requirements.txt $ZUN_UI_DIR/_test-requirements.txt
|
|
|
|
setup_develop ${ZUN_UI_DIR}
|
|
|
|
mv $ZUN_UI_DIR/_test-requirements.txt $ZUN_UI_DIR/test-requirements.txt
|
|
}
|
|
|
|
function configure_zun_ui {
|
|
cp -a ${ZUN_UI_DIR}/zun_ui/enabled/* ${DEST}/horizon/openstack_dashboard/local/enabled/
|
|
# NOTE: If locale directory does not exist, compilemessages will fail,
|
|
# so check for an existence of locale directory is required.
|
|
if [ -d ${ZUN_UI_DIR}/zun_ui/locale ]; then
|
|
(cd ${ZUN_UI_DIR}/zun_ui; DJANGO_SETTINGS_MODULE=openstack_dashboard.settings $PYTHON ../manage.py compilemessages)
|
|
fi
|
|
}
|
|
|
|
# check for service enabled
|
|
if is_service_enabled zun-ui; then
|
|
|
|
if [[ "$1" == "stack" && "$2" == "pre-install" ]]; then
|
|
# Set up system services
|
|
# no-op
|
|
:
|
|
|
|
elif [[ "$1" == "stack" && "$2" == "install" ]]; then
|
|
# Perform installation of service source
|
|
echo_summary "Installing Zun UI"
|
|
install_zun_ui
|
|
|
|
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
|
|
# Configure after the other layer 1 and 2 services have been configured
|
|
echo_summary "Configurng Zun UI"
|
|
configure_zun_ui
|
|
|
|
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
|
|
# no-op
|
|
:
|
|
fi
|
|
|
|
if [[ "$1" == "unstack" ]]; then
|
|
# no-op
|
|
:
|
|
fi
|
|
|
|
if [[ "$1" == "clean" ]]; then
|
|
# Remove state and transient data
|
|
# Remember clean.sh first calls unstack.sh
|
|
# no-op
|
|
:
|
|
fi
|
|
fi
|