diff options
author | 2023-02-21 20:20:17 +0000 | |
---|---|---|
committer | 2023-02-22 21:47:57 +0400 | |
commit | ae845d0e08b07fcf8ddfb483d9f3a61fce6a1ff8 (patch) | |
tree | e7b4520980cb925c629ff259f0fc273628a6af0b /local_testing | |
parent | add snippet about world writable ansible dir on windows causing permissions e... (diff) |
Only install `python3-pip` on `control` as it is required to install ansible
Diffstat (limited to 'local_testing')
-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 |