From ae845d0e08b07fcf8ddfb483d9f3a61fce6a1ff8 Mon Sep 17 00:00:00 2001 From: GDWR Date: Tue, 21 Feb 2023 20:20:17 +0000 Subject: Only install `python3-pip` on `control` as it is required to install ansible --- local_testing/Vagrantfile | 4 ++-- 1 file 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 -- cgit v1.2.3