correction boucle pour onehost_create_all

This commit is contained in:
Emmanuel Garette 2019-02-25 10:50:45 +01:00
parent 41d45ed2a2
commit bc05faa091
1 changed files with 7 additions and 8 deletions

View File

@ -108,25 +108,24 @@ if [ "$(CreoleGet activer_one_ha)" = "oui" ] && [ "$(CreoleGet one_ha_server_ind
else
follower=1
fi
for ((i = 0; i < ${#HAPY_SLV[*]}; i +=1))
do
for host in ${HAPY_SLV}; do
echo -e "\n"
EchoOrange "Traitement du noeud ${HAPY_SLV[${i}]}"
EchoOrange "Traitement du noeud ${host}"
echo
EchoVert " * Gestion des clés SSH"
echo
copy_ssh_id ${HAPY_SLV[${i}]}
[[ ${?} -ne 0 ]] && EchoRouge "Erreur lors de l'échange de clés SSH avec le noeud ${HAPY_SLV[${i}]}}"
copy_ssh_id ${host}
[[ ${?} -ne 0 ]] && EchoRouge "Erreur lors de l'échange de clés SSH avec le noeud ${host}"
if [ $follower = 0 ]; then
continue
fi
EchoVert " * Enregistrement du noeud"
register_node ${HAPY_SLV[${i}]}
wait_node_ok ${HAPY_SLV[${i}]}
register_node ${host}
wait_node_ok ${host}
if [[ ${?} -ne 0 ]]
then
EchoRouge "Erreur lors de l'enregistrement du noeud ${HAPY_SLV[${i}]} !"
EchoRouge "Erreur lors de l'enregistrement du noeud ${host} !"
fi
done