summaryrefslogtreecommitdiff
path: root/extra/mysql/mysqld-post.sh
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-08-21 09:52:33 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-08-21 09:52:33 -0300
commit4c50cd8958fa83e4edbf7d2f9c6b475300f40538 (patch)
treedc9e49842b221641263384e2b49ab0d8ad6d0e59 /extra/mysql/mysqld-post.sh
parent125e2429b897d89b7e37fd8ca7b6e11926f677ae (diff)
parenta3669c04838b48b6891b2ffc4b296fa515f8174f (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/qingy/PKGBUILD community/mfs/PKGBUILD extra/mysql/PKGBUILD testing/mesa/PKGBUILD
Diffstat (limited to 'extra/mysql/mysqld-post.sh')
-rwxr-xr-xextra/mysql/mysqld-post.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/extra/mysql/mysqld-post.sh b/extra/mysql/mysqld-post.sh
new file mode 100755
index 000000000..8dc9c4eea
--- /dev/null
+++ b/extra/mysql/mysqld-post.sh
@@ -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