summaryrefslogtreecommitdiffstats
path: root/ResmanagementService/docker/init-mysql.sh
diff options
context:
space:
mode:
authorluxin <luxin7@huawei.com>2017-09-05 17:17:02 +0800
committerluxin <luxin7@huawei.com>2017-09-05 17:17:02 +0800
commit7f1b2084e392f06c3b7771dc54b800550905bd8e (patch)
tree86e3df1bd332a20315a68820a35d81cebac55da8 /ResmanagementService/docker/init-mysql.sh
parent590690d05161c15cd5b3bf8859a32965e53d5f98 (diff)
Add build docker dockerfile and sh file
Add resmanagement build docker dockerfile and sh file Change-Id: I63db408cac1759d05d2d9bcf44a3dd830e1bece9 Issue-Id:VFC-273 Signed-off-by: luxin <luxin7@huawei.com>
Diffstat (limited to 'ResmanagementService/docker/init-mysql.sh')
-rw-r--r--ResmanagementService/docker/init-mysql.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/ResmanagementService/docker/init-mysql.sh b/ResmanagementService/docker/init-mysql.sh
new file mode 100644
index 0000000..4b925cc
--- /dev/null
+++ b/ResmanagementService/docker/init-mysql.sh
@@ -0,0 +1,22 @@
+#!/bin/bash
+#
+# Copyright 2016-2017 Huawei Technologies Co., Ltd.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# Wait for mysql to initialize; Set mysql root password
+echo Initializing mysql
+for i in {1..10}; do
+ /usr/bin/mysqladmin -u root password 'rootpass' &> /dev/null && break
+ sleep $i
+done