Merge branch 'develop' into dist/eole/2.7.0/develop
This commit is contained in:
commit
574e04ce9b
|
@ -462,9 +462,7 @@ function main()
|
||||||
#
|
#
|
||||||
# Creating Host
|
# Creating Host
|
||||||
#
|
#
|
||||||
if [ "$(CreoleGet activer_one_ha)" = "oui" ]; then
|
if [ ! "$(CreoleGet activer_one_ha)" = "oui" ]; then
|
||||||
/usr/share/eole/sbin/onehost_create_all
|
|
||||||
else
|
|
||||||
if [[ $(CreoleGet eole_module non) != 'hapy-master' ]]
|
if [[ $(CreoleGet eole_module non) != 'hapy-master' ]]
|
||||||
then
|
then
|
||||||
host=$(CreoleGet nom_machine)
|
host=$(CreoleGet nom_machine)
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
function init_ha_leader() {
|
|
||||||
# server with index 1 exists if already instanciate
|
|
||||||
onezone show 0 | grep -A 3 ^"HA & FEDERATION SYNC STATUS" | tail -n 1 | grep -q ^" 1 "
|
|
||||||
if [ ! $? = 0 ]; then
|
|
||||||
FOLLOWER=$(CreoleGet one_nodes)
|
|
||||||
for follower in $FOLLOWER; do
|
|
||||||
onezone server-add 0 --name $follower --rpc http://$follower:2633/RPC2
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ "$(CreoleGet activer_one_ha)" = "oui" ]; then
|
|
||||||
if [ "$(CreoleGet one_ha_server_index)" = "0" ]; then
|
|
||||||
init_ha_leader
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
exit 0
|
|
|
@ -36,7 +36,26 @@ function register_node()
|
||||||
{
|
{
|
||||||
cmd="onehost create -i kvm -v kvm -c 0 ${1}"
|
cmd="onehost create -i kvm -v kvm -c 0 ${1}"
|
||||||
ret=$(su - ${ONEUSER} -c -- "${cmd}")
|
ret=$(su - ${ONEUSER} -c -- "${cmd}")
|
||||||
return $?
|
if [[ ${?} -ne 0 ]]
|
||||||
|
then
|
||||||
|
EchoRouge "Hosts register failed $res"
|
||||||
|
else
|
||||||
|
EchoVert "Hosts register OK"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Fix host creation error from 5.6.1 with sync methode rsync
|
||||||
|
function sync_host()
|
||||||
|
{
|
||||||
|
CMD="onehost"
|
||||||
|
OPT="sync -f --rsync"
|
||||||
|
res=$(su - ${ONEUSER} -c "${CMD} ${OPT}")
|
||||||
|
if [[ ${?} -ne 0 ]]
|
||||||
|
then
|
||||||
|
EchoRouge "Hosts sync failed $res"
|
||||||
|
else
|
||||||
|
EchoVert "Hosts sync OK"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -58,7 +77,7 @@ function wait_node_ok()
|
||||||
[[ ${st} == '' ]] && break
|
[[ ${st} == '' ]] && break
|
||||||
if [[ ${st} == "ERROR" ]]
|
if [[ ${st} == "ERROR" ]]
|
||||||
then
|
then
|
||||||
RET=2
|
RET=50
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -73,6 +92,17 @@ function wait_node_ok()
|
||||||
return ${RET}
|
return ${RET}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function init_ha_leader() {
|
||||||
|
# server with index 1 exists if already instanciate
|
||||||
|
onezone show 0 | grep -A 3 ^"HA & FEDERATION SYNC STATUS" | tail -n 1 | grep -q ^" 1 "
|
||||||
|
if [ ! $? = 0 ]; then
|
||||||
|
FOLLOWER=$(CreoleGet one_nodes)
|
||||||
|
for follower in $FOLLOWER; do
|
||||||
|
onezone server-add 0 --name $follower --rpc http://$follower:2633/RPC2
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# MAIN
|
# MAIN
|
||||||
#
|
#
|
||||||
|
@ -103,10 +133,14 @@ then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$(CreoleGet activer_one_ha)" = "oui" ] && [ "$(CreoleGet one_ha_server_index)" != "0" ]; then
|
follower=1
|
||||||
follower=0
|
master=1
|
||||||
else
|
if [ "$(CreoleGet activer_one_ha)" = "oui" ];
|
||||||
follower=1
|
if [ "$(CreoleGet one_ha_server_index)" != "0" ]; then
|
||||||
|
follower=0
|
||||||
|
else
|
||||||
|
master=0
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
for host in ${HAPY_SLV}; do
|
for host in ${HAPY_SLV}; do
|
||||||
echo -e "\n"
|
echo -e "\n"
|
||||||
|
@ -122,6 +156,7 @@ for host in ${HAPY_SLV}; do
|
||||||
|
|
||||||
EchoVert " * Enregistrement du noeud"
|
EchoVert " * Enregistrement du noeud"
|
||||||
register_node ${host}
|
register_node ${host}
|
||||||
|
sync_host ${host}
|
||||||
wait_node_ok ${host}
|
wait_node_ok ${host}
|
||||||
if [[ ${?} -ne 0 ]]
|
if [[ ${?} -ne 0 ]]
|
||||||
then
|
then
|
||||||
|
@ -129,5 +164,8 @@ for host in ${HAPY_SLV}; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if [ $master = 0 ]; then
|
||||||
|
init_ha_leader
|
||||||
|
fi
|
||||||
echo -e "\n"
|
echo -e "\n"
|
||||||
EchoVert "Enregistrement des noeuds terminé"
|
EchoVert "Enregistrement des noeuds terminé"
|
||||||
|
|
Loading…
Reference in New Issue