summaryrefslogtreecommitdiffstats
path: root/tests/drone-wait-objectstore.sh
blob: 14d0b6f1f6717bd8dd38cf671e4cc748f4065b1e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

if [ "$OBJECT_STORE" == "swift" ]; then
    echo "waiting for swift"
    until curl -I http://dockswift:5000/v3
    do
        sleep 2
    done
    sleep 60
fi