From 88bf2b1ebfefa9aff30405536273a4a5509212f0 Mon Sep 17 00:00:00 2001 From: fujinhua Date: Thu, 31 Aug 2017 20:24:07 +0800 Subject: [PATCH] Add mysql initialize script run verify job again Change-Id: I1a59a895ca81f50ad2ef95080d856720f3972314 Issue-Id: VFC-198 Signed-off-by: fujinhua --- lcm/docker/instance_init.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lcm/docker/instance_init.sh b/lcm/docker/instance_init.sh index ecf9e86e..03c10a80 100755 --- a/lcm/docker/instance_init.sh +++ b/lcm/docker/instance_init.sh @@ -10,6 +10,11 @@ function start_redis_server { function start_mysql { service mysql start + # Wait for mysql to initialize; Set mysql root password + for i in {1..10}; do + sleep $i + bash /usr/bin/mysqladmin -u root password $MYSQL_ROOT_PASSWORD &> /dev/null && break + done } function create_database { -- 2.16.6