Skip to content

Commit 16f16ad

Browse files
Vagrantfile: update to ubuntu 20.04
1 parent eb8930a commit 16f16ad

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Vagrantfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Vagrant.configure("2") do |config|
66
vb.memory = 1024
77
end
88
config.vm.define :ubuntu do |box|
9-
box.vm.box = "bento/ubuntu-18.04"
9+
box.vm.box = "bento/ubuntu-20.04"
1010
box.vm.host_name = 'ubuntu.local'
1111
box.vm.network "private_network", ip: "192.168.50.10"
1212

@@ -17,8 +17,9 @@ Vagrant.configure("2") do |config|
1717
box.vm.provision "shell", inline: <<-SHELL
1818
set -x
1919
export DEBIAN_FRONTEND='noninteractive'
20+
sed -i 's#us.archive#archive#' /etc/apt/sources.list
2021
apt-get -y update
21-
apt-get -y install python-pip python-virtualenv
22+
apt-get -y install python2 python3-pip python3-virtualenv
2223
SHELL
2324

2425
box.vm.provision "shell", privileged: false, inline: <<-SHELL

0 commit comments

Comments
 (0)