blob: b4a31223c92c76fe5922f381ad94adbcd8f90a3c [file] [log] [blame]
Filip Pytloune40d54c2016-02-16 14:22:02 +01001{%- from "galera/map.jinja" import slave with context -%}
Ales Komarek2ff54862015-04-30 16:31:48 +02002#!/bin/bash
3
Filip Pytloune40d54c2016-02-16 14:22:02 +01004service {{ slave.service }} start
Ales Komarek2ff54862015-04-30 16:31:48 +02005
Jakub Pavlik4e4575f2015-09-01 22:05:52 +02006counter=70
Ales Komarek2ff54862015-04-30 16:31:48 +02007
8while [ $counter -gt 0 ]
9do
Filip Pytloune40d54c2016-02-16 14:22:02 +010010 service {{ slave.service }} status
Ales Komarek2ff54862015-04-30 16:31:48 +020011 if [[ $? -eq 0 ]]; then
12 exit 0
13 fi
Filip Pytloune40d54c2016-02-16 14:22:02 +010014 counter=$(( $counter - 1 ))
Ales Komarek2ff54862015-04-30 16:31:48 +020015 sleep 2
16done
17
Filip Pytloune40d54c2016-02-16 14:22:02 +010018exit 1