From 5f7ff5c7397a47fd47a3c32e7677936a8971bfaa Mon Sep 17 00:00:00 2001 From: shtlrs Date: Mon, 29 Apr 2024 21:59:09 +0200 Subject: bump the debian version used This also explicitly specifies the sync type to rsync --- ansible/local_testing/Vagrantfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'ansible') 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 -- cgit v1.2.3