From 41f09e7b333c82bc7e28724a33944a02781e013e Mon Sep 17 00:00:00 2001 From: Sam Al-Sapti Date: Sun, 13 Nov 2022 22:04:37 +0100 Subject: [PATCH] Vagrant: Use same Ubuntu version as in production --- Vagrantfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 37c9521..5db0681 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,22 +3,16 @@ Vagrant.require_version ">= 1.7.0" Vagrant.configure(2) do |config| config.vm.network "forwarded_port", guest: 19022, host: 19022, id: "new_ssh" config.vm.define "datacoop" do |datacoop| - datacoop.vm.box = "ubuntu/bionic64" + datacoop.vm.box = "ubuntu/focal64" datacoop.vm.hostname = "datacoop" datacoop.vm.provider "virtualbox" do |v| v.memory = 4096 end datacoop.vm.provision "ansible" do |ansible| - ansible.verbose = "v" ansible.compatibility_mode = "2.0" ansible.playbook = "playbook.yml" ansible.ask_vault_pass = true - ansible.host_vars = { - "datacoop" => {"ansible_python_interpreter" => "/usr/bin/python3.6"} - } - ansible.groups = { - "all" => ["datacoop"] - } + ansible.verbose = "v" end end end