From ce6b8e17809f10f366d599f270631dcff6fe63b4 Mon Sep 17 00:00:00 2001 From: Sebastin Santy Date: Wed, 13 Dec 2017 03:15:17 +0530 Subject: No Bug - Update Ansible to the latest during vagrant provision (#292) --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 2a1c4e9c4..8776ac08f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -38,6 +38,7 @@ Vagrant.configure('2') do |config| config.vm.provision 'main', type: 'ansible_local', run: 'always' do |ansible| ansible.playbook = 'vagrant_support/playbook.yml' + ansible.version = 'latest' ansible.extra_vars = { WEB_IP: WEB_IP, DB_IP: DB_IP, @@ -50,6 +51,7 @@ Vagrant.configure('2') do |config| if ARGV.include? '--provision-with' config.vm.provision 'update', type: 'ansible_local', run: 'never' do |update| update.playbook = 'vagrant_support/update.yml' + update.version = 'latest' end end -- cgit v1.2.3-24-g4f1b