diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-11-16 21:51:10 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-11-16 21:52:31 +0100 |
commit | d49fc9a5fcb993307ff7ef188fff3da8a3d03c69 (patch) | |
tree | ba3ea18fd7d6249e1d3343ff436f0875d14ce14f /apps | |
parent | c98b303a5e0174add16240859880df62a0fb2ac2 (diff) | |
download | nextcloud-server-d49fc9a5fcb993307ff7ef188fff3da8a3d03c69.tar.gz nextcloud-server-d49fc9a5fcb993307ff7ef188fff3da8a3d03c69.zip |
fix ip detection for swift-ceph
Diffstat (limited to 'apps')
-rwxr-xr-x | apps/files_external/tests/env/start-swift-ceph.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/tests/env/start-swift-ceph.sh b/apps/files_external/tests/env/start-swift-ceph.sh index a8305eee5a2..ea16e167af9 100755 --- a/apps/files_external/tests/env/start-swift-ceph.sh +++ b/apps/files_external/tests/env/start-swift-ceph.sh @@ -48,7 +48,7 @@ container=`docker run -d \ -e KEYSTONE_SERVICE=${service} \ ${docker_image}` -host=`docker inspect $container | grep IPAddress | cut -d '"' -f 4` +host=`docker inspect --format="{{.NetworkSettings.IPAddress}}" $container` echo "${docker_image} container: $container" |