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.
12 lines
191 B
12 lines
191 B
#!/bin/sh
|
|
|
|
#
|
|
|
|
while true; do
|
|
COUNT_PG=`netstat -an | grep "tcp.*:5532.*LISTEN"| wc -l`
|
|
if ! [ "$COUNT_PG" -eq "0" ]; then
|
|
break
|
|
fi
|
|
echo "Esperando BD"
|
|
sleep 5
|
|
done
|
|
|