diff options
-rw-r--r-- | local_testing/Vagrantfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/local_testing/Vagrantfile b/local_testing/Vagrantfile index 3ba743f..011f9f3 100644 --- a/local_testing/Vagrantfile +++ b/local_testing/Vagrantfile @@ -6,7 +6,7 @@ Vagrant.configure("2") do |config| config.vm.box_version = "202212.11.0" config.vm.provision "shell", inline: <<-SHELL apt-get update - apt-get install -y python3 python3-pip openssh-server + apt-get install -y python3 openssh-server systemctl enable ssh SHELL @@ -16,7 +16,7 @@ Vagrant.configure("2") do |config| virtualbox__intnet: true control.vm.synced_folder "../", "/home/vagrant/infra" control.vm.provision "shell", inline: <<-SHELL - apt-get install -y sshpass + apt-get install -y sshpass python3-pip SHELL control.vm.provision "shell", privileged: false, inline: <<-SHELL |