This patch fixes BUILD, which broke because of Ansible's deprecation of
version 2.2. We now install Ansible using pip instead of apt.

Change-Id: Icb18bea001e31e7b291e5cbaebe580f550eca2f2
diff --git a/scripts/cord-bootstrap.sh b/scripts/cord-bootstrap.sh
index 1ecc732..f8c5359 100644
--- a/scripts/cord-bootstrap.sh
+++ b/scripts/cord-bootstrap.sh
@@ -12,9 +12,11 @@
   if [ ! -x "/usr/bin/ansible" ]
   then
     echo "Installing Ansible..."
-    sudo apt-get update
-    sudo apt-get install -y software-properties-common
-    sudo apt-add-repository -y ppa:ansible/ansible
+#     sudo apt-get update
+#     sudo apt-get install -y software-properties-common
+#     sudo apt-add-repository -y ppa:ansible/ansible
+    sudo apt-get -y install python-dev libffi-dev python-pip libssl-dev sshpass
+    pip install ansible==2.2.2.0
     sudo apt-get update
     sudo apt-get install -y ansible python-netaddr
   fi