Merge "Write clouds.yaml to only /etc" into stable/liberty

This commit is contained in:
Jenkins 2016-11-30 16:30:31 +00:00 committed by Gerrit Code Review
commit bcc7e1a4f4
1 changed files with 4 additions and 2 deletions

View File

@ -76,9 +76,11 @@ function write_clouds_yaml {
# The location is a variable to allow for easier refactoring later to make it
# overridable. There is currently no usecase where doing so makes sense, so
# it's not currently configurable.
CLOUDS_YAML=~/.config/openstack/clouds.yaml
mkdir -p $(dirname $CLOUDS_YAML)
CLOUDS_YAML=/etc/openstack/clouds.yaml
sudo mkdir -p $(dirname $CLOUDS_YAML)
sudo chown -R $STACK_USER /etc/openstack
CA_CERT_ARG=''
if [ -f "$SSL_BUNDLE_FILE" ]; then