Fix typo in trovestack cleanup

apache_site_config_for is a shell function, not a shell variable.
Shell syntax for functions is ().  Variables use {}.

Change-Id: Ia9a35cdb0883f576efe584bc854de94072e13b87
This commit is contained in:
Luke Browning 2017-11-19 08:28:49 -06:00
parent 5f458ffc38
commit e2257394ed
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ function create_trove_accounts {
# restart apache.
function _cleanup_trove_apache_wsgi {
sudo rm -rf $TROVE_WSGI_DIR
sudo rm -f ${apache_site_config_for trove-api}
sudo rm -f $(apache_site_config_for trove-api)
restart_apache_server
}