From 1e223dbd4cb3b5f505b78bf27f320e3c872f3ba9 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sun, 19 Aug 2018 10:23:44 -0500 Subject: [PATCH] Run base and bridge playbooks in run_all.sh We need to run base before we run the other things. Change-Id: Iaa8525946e5f09df842ef141213b7ddcb63dfea1 --- run_all.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/run_all.sh b/run_all.sh index e8d650a157..5ae8b4b851 100755 --- a/run_all.sh +++ b/run_all.sh @@ -30,8 +30,15 @@ set +e # Run all the ansible playbooks under timeout to prevent them from getting # stuck if they are oomkilled -# First, sync the puppet repos with all the machines +# Clone system-config and install modules and roles timeout -k 2m 120m ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/update-system-config.yaml + +# Update the code on bridge +timeout -k 2m 120m ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/bridge.yaml + +# Run the base playbook everywhere +timeout -k 2m 120m ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/base.yaml + # Update the puppet version timeout -k 2m 120m ansible-playbook -f 10 ${ANSIBLE_PLAYBOOKS}/update_puppet_version.yaml