Add function dispatchers

Add devstack function dispatchers so that these functions will be
actually called when stack.sh is executed.

Change-Id: Ia9a6ecef8dfff93e39c507bbbb25fbc544dfaf48
This commit is contained in:
Flavio Percoco 2015-05-05 23:24:25 +02:00
parent e70fad4191
commit 172dd3824a

View File

@ -231,6 +231,36 @@ function create_zaqar_accounts {
}
if is_service_enabled zaqar-server; then
if [[ "$1" == "stack" && "$2" == "install" ]]; then
echo_summary "Installing Zaqar"
install_zaqarclient
install_zaqar
elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
echo_summary "Configuring Zaqar"
configure_zaqar
configure_zaqarclient
if is_service_enabled key; then
create_zaqar_accounts
fi
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
echo_summary "Initializing Zaqar"
init_zaqar
start_zaqar
fi
if [[ "$1" == "unstack" ]]; then
stop_zaqar
fi
#if [[ "$1" == "clean" ]]; then
#fi
fi
# Restore xtrace
$XTRACE