From 277adddee07452cd9c79f070a0083d899e1a77a7 Mon Sep 17 00:00:00 2001 From: A Holt Date: Mon, 12 Feb 2018 09:58:46 -0500 Subject: [PATCH] comments clarified: Ansible 2.4.2 override for now --- scripts/ansible | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/ansible b/scripts/ansible index 19a864b0d..4921cbed7 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -80,12 +80,13 @@ else fi if [ ! -f /etc/centos-release ] && [ ! -f /etc/fedora-release ] && [ ! -f /etc/olpc-release ]; then - echo "Using apt to check for updates, then install/upgrade ansible" # TEMPORARILY USE ANSIBLE 2.4.2 DUE TO 2.4.3 MEMORY BUG. DETAILS @ https://github.com/iiab/iiab/issues/669 + echo "Install http://download.iiab.io/packages/ansible_2.4.2.0-1ppa~xenial_all.deb" cd /tmp wget http://download.iiab.io/packages/ansible_2.4.2.0-1ppa~xenial_all.deb apt -y --allow-downgrades install ./ansible_2.4.2.0-1ppa~xenial_all.deb - # UNCOMMENT THE FOLLOWING 2 LINES IF ANSIBLE'S LATEST RELEASES IMPROVE + # UNCOMMENT THE FOLLOWING 3 LINES IF ANSIBLE'S LATEST RELEASES IMPROVE + #echo "Using apt to check for updates, then install/upgrade ansible" #apt update #apt -y install ansible fi