From: Sebastin Santy Date: Tue, 12 Dec 2017 21:45:17 +0000 (+0530) Subject: No Bug - Update Ansible to the latest during vagrant provision (#292) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce6b8e17809f10f366d599f270631dcff6fe63b4;p=thirdparty%2Fbugzilla.git No Bug - Update Ansible to the latest during vagrant provision (#292) --- 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