diff options
-rw-r--r-- | ansible/local_testing/Vagrantfile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ansible/local_testing/Vagrantfile b/ansible/local_testing/Vagrantfile index 011f9f3..d84ee52 100644 --- a/ansible/local_testing/Vagrantfile +++ b/ansible/local_testing/Vagrantfile @@ -2,10 +2,9 @@ # vi: set ft=ruby : Vagrant.configure("2") do |config| - config.vm.box = "bento/debian-11" - config.vm.box_version = "202212.11.0" + config.vm.box = "bento/debian-12" config.vm.provision "shell", inline: <<-SHELL - apt-get update + sudo apt-get update apt-get install -y python3 openssh-server systemctl enable ssh SHELL @@ -14,7 +13,7 @@ Vagrant.configure("2") do |config| control.vm.hostname = "control" control.vm.network "private_network", ip: "192.168.56.1", virtualbox__intnet: true - control.vm.synced_folder "../", "/home/vagrant/infra" + control.vm.synced_folder "../", "/home/vagrant/infra", type: "rsync" control.vm.provision "shell", inline: <<-SHELL apt-get install -y sshpass python3-pip SHELL |