blob: ed3e5e5c5020cb91c14f9afdbd3dfc8198b9c5fd [file] [log] [blame]
#! /bin/bash
function wait_postgres {
sudo -u postgres psql -c '\q'
while [[ "$?" != "0" ]]; do
echo Waiting for postgres to start
sleep 1
sudo -u postgres psql -c '\q'
done
}
cd /tmp
service postgresql start
wait_postgres
service supervisor start
exit 0