From 16f16ad571ea7c95f77d39e6cbd476345d1f5466 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 15 May 2022 15:19:43 +0100 Subject: [PATCH] Vagrantfile: update to ubuntu 20.04 --- Vagrantfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 440c8a9..a523ce2 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ Vagrant.configure("2") do |config| vb.memory = 1024 end config.vm.define :ubuntu do |box| - box.vm.box = "bento/ubuntu-18.04" + box.vm.box = "bento/ubuntu-20.04" box.vm.host_name = 'ubuntu.local' box.vm.network "private_network", ip: "192.168.50.10" @@ -17,8 +17,9 @@ Vagrant.configure("2") do |config| box.vm.provision "shell", inline: <<-SHELL set -x export DEBIAN_FRONTEND='noninteractive' + sed -i 's#us.archive#archive#' /etc/apt/sources.list apt-get -y update - apt-get -y install python-pip python-virtualenv + apt-get -y install python2 python3-pip python3-virtualenv SHELL box.vm.provision "shell", privileged: false, inline: <<-SHELL