mysql: update to 5.5.27 and finally switch to systemd.

This commit is contained in:
Juan RP
2012-08-06 07:21:26 +02:00
parent 50e1b7814a
commit 754e6ade81
25 changed files with 139 additions and 287 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/sh
while true; do
response=`/usr/bin/mysqladmin -uUNKNOWN_USER ping 2>&1` && break
echo "$response" | grep -q "mysqld is alive" && break
sleep 1
done