Welcome to mirror list, hosted at ThFree Co, Russian Federation.

drone-wait-objectstore.sh « tests - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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