Merge "remove tacker horizon during unstack"

This commit is contained in:
Zuul 2018-01-07 13:34:50 +00:00 committed by Gerrit Code Review
commit 23b47b8588
2 changed files with 7 additions and 0 deletions

View File

@ -326,6 +326,11 @@ function tacker_horizon_install {
restart_apache_server
}
function tacker_horizon_uninstall {
sudo rm -f $DEST/horizon/openstack_dashboard/enabled/_80_nfv.py
restart_apache_server
}
function openstack_image_create {
image=$1
disk_format=raw

View File

@ -50,6 +50,8 @@ if is_service_enabled tacker; then
if [[ "$1" == "unstack" ]]; then
# Shut down tacker services
echo_summary "Uninstall tacker horizon"
tacker_horizon_uninstall
stop_tacker
fi