blob: 6c2e8e82a230f579489403bf908a175333a36e39 [file] [log] [blame]
#!/bin/bash
service mysql start
counter=20
while [ $counter -gt 0 ]
do
service mysql status
if [[ $? -eq 0 ]]; then
exit 0
fi
counter=$(( $counter - 1 ))
sleep 2
done
exit 1