We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb8930a commit 16f16adCopy full SHA for 16f16ad
Vagrantfile
@@ -6,7 +6,7 @@ Vagrant.configure("2") do |config|
6
vb.memory = 1024
7
end
8
config.vm.define :ubuntu do |box|
9
- box.vm.box = "bento/ubuntu-18.04"
+ box.vm.box = "bento/ubuntu-20.04"
10
box.vm.host_name = 'ubuntu.local'
11
box.vm.network "private_network", ip: "192.168.50.10"
12
@@ -17,8 +17,9 @@ Vagrant.configure("2") do |config|
17
box.vm.provision "shell", inline: <<-SHELL
18
set -x
19
export DEBIAN_FRONTEND='noninteractive'
20
+ sed -i 's#us.archive#archive#' /etc/apt/sources.list
21
apt-get -y update
- apt-get -y install python-pip python-virtualenv
22
+ apt-get -y install python2 python3-pip python3-virtualenv
23
SHELL
24
25
box.vm.provision "shell", privileged: false, inline: <<-SHELL
0 commit comments