diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/openstack.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/openstack.sh b/ci/openstack.sh index f7518317..1c40cf52 100755 --- a/ci/openstack.sh +++ b/ci/openstack.sh @@ -75,9 +75,9 @@ keystoneIp() { unitAddress keystone 0 else if [[ "$jujuver" < "2" ]]; then - juju get keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['vip']['value']" + juju get keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['vip']['value']" | cut -d " " -f 1 else - juju config keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['vip']['value']" + juju config keystone | python -c "import yaml; import sys; print yaml.load(sys.stdin)['settings']['vip']['value']" | cut -d " " -f 1 fi fi } |