summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorSebastin Santy <sebastinssanty@gmail.com>2017-12-12 22:45:17 +0100
committerGitHub <noreply@github.com>2017-12-12 22:45:17 +0100
commitce6b8e17809f10f366d599f270631dcff6fe63b4 (patch)
tree41e789a4cdd5b7e5c9a2bfe50dac698337954fbb /Vagrantfile
parentae3e8609d87ade851962d2caa22ac16046ca0a47 (diff)
downloadbugzilla-ce6b8e17809f10f366d599f270631dcff6fe63b4.tar.gz
bugzilla-ce6b8e17809f10f366d599f270631dcff6fe63b4.tar.xz
No Bug - Update Ansible to the latest during vagrant provision (#292)
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 2 insertions, 0 deletions
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