From f7c196281cae4bd94e06f5d282a01c8ca3110984 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Andr=C3=A9?= <m.andre@redhat.com>
Date: Mon, 4 Jan 2016 11:52:46 +0900
Subject: [PATCH] Remove docker version pinning for vagrant envs

Kolla now has its own docker ansible module which doesn't require
specific docker version.

Also, add requirement for ansible <2, and stop using NL mirror for
epel.

Change-Id: I743c51c2d6b7f6af0aa4038e1081066b36e36fa1
Partially-Implements: blueprint kolla-docker-module
---
 dev/vagrant/bootstrap.sh        | 13 +++++--------
 dev/vagrant/ubuntu-bootstrap.sh |  2 +-
 2 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/dev/vagrant/bootstrap.sh b/dev/vagrant/bootstrap.sh
index bc3d6c2f43..90866afe6c 100644
--- a/dev/vagrant/bootstrap.sh
+++ b/dev/vagrant/bootstrap.sh
@@ -29,8 +29,10 @@ function prep_work {
     # resolve to the public IP instead of localhost.
     sed -i -r "s/^(127\.0\.0\.1\s+)(.*) `hostname` (.+)/\1 \3/" /etc/hosts
 
-    yum install -y http://mirror.nl.leaseweb.net/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
-    yum install -y MySQL-python vim-enhanced python-pip python-devel gcc openssl-devel libffi-devel libxml2-devel libxslt-devel && yum clean all
+    yum install -y epel-release
+    rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
+    yum install -y MySQL-python vim-enhanced python-pip python-devel gcc openssl-devel libffi-devel libxml2-devel libxslt-devel
+    yum clean all
     pip install --upgrade docker-py
 }
 
@@ -49,11 +51,6 @@ enabled=1
 gpgcheck=1
 gpgkey=https://yum.dockerproject.org/gpg
 EOF
-        # Pin Docker version to 1.8.2 before including this change
-        # https://github.com/ansible/ansible-modules-core/pull/2258
-        # in some tagged version of Ansible.
-        yum install -y yum-plugin-versionlock
-        yum versionlock add docker-engine-1.8.2-1.el7.centos.*
         # Also upgrade device-mapper here because of:
         # https://github.com/docker/docker/issues/12108
         yum install -y docker-engine device-mapper
@@ -85,7 +82,7 @@ function configure_kolla {
 # Configure the operator node and install some additional packages.
 function configure_operator {
     yum install -y git mariadb && yum clean all
-    pip install --upgrade ansible python-openstackclient tox
+    pip install --upgrade "ansible<2" python-openstackclient tox
 
     pip install ~vagrant/kolla
 
diff --git a/dev/vagrant/ubuntu-bootstrap.sh b/dev/vagrant/ubuntu-bootstrap.sh
index 2f25650305..2c0b2cde7e 100644
--- a/dev/vagrant/ubuntu-bootstrap.sh
+++ b/dev/vagrant/ubuntu-bootstrap.sh
@@ -27,7 +27,7 @@ install_docker() {
     apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
     echo "deb https://apt.dockerproject.org/repo ubuntu-vivid main" > /etc/apt/sources.list.d/docker.list
     apt-get update
-    apt-get install -y  docker-engine=1.8.2*
+    apt-get install -y docker-engine
     sed -i -r "s,(ExecStart)=(.+),\1=/usr/bin/docker daemon -H fd:// -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock --insecure-registry ${REGISTRY}:${REGISTRY_PORT}," /lib/systemd/system/docker.service
     systemctl daemon-reload
     systemctl enable docker