From b1073908fc0f05c287197d4302769409f158e00c Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Thu, 16 Apr 2015 15:03:14 -0400 Subject: [PATCH] Switch install script over to Ansible devel branch Switch over to Ansible devel branch due to the incompatible changes between 1.9 and current development, as our ansible modules are updated to support the newer code. NOTE: This results in Bifrost being incompatible with Ansible 1.9. --- env-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/env-setup.sh b/env-setup.sh index 15de1d544..b2842b8a3 100755 --- a/env-setup.sh +++ b/env-setup.sh @@ -16,8 +16,8 @@ if [ ! -d ansible ]; then git clone https://github.com/ansible/ansible.git --recursive else cd ansible - git checkout stable-1.9 - #git pull --rebase + git checkout devel + git pull --rebase git submodule update --init --recursive git fetch