ソースを参照

Tunne bootstrap scripts

feature/tunne_bootstrapscrips
Petr Michalec 7年前
コミット
e8d39b6576
コミッターのメールアドレスに関連付けられたアカウントが存在しません
2個のファイルの変更8行の追加10行の削除
  1. +4
    -5
      galera/files/bootstrap.sh
  2. +4
    -5
      galera/files/init_bootstrap.sh

+ 4
- 5
galera/files/bootstrap.sh ファイルの表示

@@ -1,20 +1,19 @@
#!/bin/bash
#!/bin/sh

service {{ service.service }} start

counter=60
counter=${1:-60}
retries=0

while [ $counter -gt 0 ]
do
mysql -u {{ service.admin.user }} -p{{ service.admin.password }} -e"quit"
if [[ $? -eq 0 ]]; then
if mysql -u {{ service.admin.user }} -p{{ service.admin.password }} -e"quit"; then
echo "Sucessfully connected to the MySQL service ($retries retries)."
exit 0
fi
counter=$(( counter - 1 ))
retries=$(( retries + 1 ))
sleep 4
sleep ${2:-4}
done

echo "Failed to connect to the MySQL service after $retries retries."

+ 4
- 5
galera/files/init_bootstrap.sh ファイルの表示

@@ -1,20 +1,19 @@
#!/bin/bash
#!/bin/sh

service {{ service.service }} start

counter=60
counter=${1:-60}
retries=0

while [ $counter -gt 0 ]
do
mysql -u root -e"quit"
if [[ $? -eq 0 ]]; then
if mysql -u root -e"quit"; then
echo "Sucessfully connected to the MySQL service ($retries retries)."
exit 0
fi
counter=$(( counter - 1 ))
retries=$(( retries + 1 ))
sleep 2
sleep ${2:-4}
done

echo "Failed to connect to the MySQL service after $retries retries."

読み込み中…
キャンセル
保存