From 64d7f6e62ae700c84f50cd6bad4c7bee3902b543 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Fri, 11 Aug 2017 09:17:02 +0100 Subject: [PATCH] Replace setup-* with the included playbooks In case of an included playbook fail (let's say the repo playbook), a restart of the leap script will restart the whole upper level playbook (because it hasn't been marked as successful yet), and therefore will re-run all the included playbooks again. This change will make sure the process restarts exactly where it failed. Change-Id: I5790f3bdb57d6f17ba32346a00d096ead15babf3 --- leap-upgrades/re-deploy.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/leap-upgrades/re-deploy.sh b/leap-upgrades/re-deploy.sh index 5954821d..9f8fb3e1 100755 --- a/leap-upgrades/re-deploy.sh +++ b/leap-upgrades/re-deploy.sh @@ -54,7 +54,17 @@ RUN_TASKS+=("${UPGRADE_UTILS}/nova-libvirt-fix.yml") RUN_TASKS+=("lxc-hosts-setup.yml") RUN_TASKS+=("lxc-containers-create.yml") -RUN_TASKS+=("setup-infrastructure.yml") +# Setup Infrastructure +RUN_TASKS+=("unbound-install.yml") +RUN_TASKS+=("repo-install.yml") +RUN_TASKS+=("haproxy-install.yml") +RUN_TASKS+=("memcached-install.yml") +RUN_TASKS+=("galera-install.yml") +RUN_TASKS+=("rabbitmq-install.yml") +RUN_TASKS+=("etcd-install.yml") +RUN_TASKS+=("utility-install.yml") +RUN_TASKS+=("rsyslog-install.yml") + # MariaDB sync for major maria upgrades and cluster schema sync RUN_TASKS+=("${UPGRADE_UTILS}/db-force-upgrade.yml")