Use log-file rather than logfile in gnocchi extend start script

logfile is marked as deprecated and will be removed.

Change-Id: Iacd6a0c9667a470ec0ee6b4977100cc8e0b39e27
This commit is contained in:
Jeffrey Zhang 2017-07-13 01:49:07 +08:00
parent ccc1911ad8
commit a8e867b6b4
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ fi
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
# of the KOLLA_BOOTSTRAP variable being set, including empty.
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
sudo -H -u gnocchi gnocchi-upgrade --logfile /var/log/kolla/gnocchi/gnocchi-upgrade.log
sudo -H -u gnocchi gnocchi-upgrade --log-file /var/log/kolla/gnocchi/gnocchi-upgrade.log
exit 0
fi