remove tacker horizon during unstack

Change-Id: I548905d7de525070c51d279bfd56962291ea2de1
Closes-bug: 1741421
This commit is contained in:
yong sheng gong 2018-01-05 02:01:20 -06:00
parent 3ee676af6a
commit 99d504d245
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