mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
8 lines
170 B
Bash
8 lines
170 B
Bash
#!/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
|