mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
203 B
11 lines
203 B
5 years ago
|
#!/usr/bin/env bash
|
||
8 years ago
|
|
||
|
while true; do
|
||
8 years ago
|
COUNT_PG=`psql $1 -c '\l \q' | grep sapl | wc -l`
|
||
8 years ago
|
if ! [ "$COUNT_PG" -eq "0" ]; then
|
||
|
break
|
||
|
fi
|
||
|
echo "Esperando Database Setup"
|
||
|
sleep 10
|
||
|
done
|