nextcloud/tests/drone-wait-objectstore.sh
Robin Appelman 2e3ed7db90
sleep more
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-02-08 15:18:26 +01:00

11 lines
173 B
Bash
Executable File

#!/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