diff options
author | 2024-04-29 21:59:09 +0200 | |
---|---|---|
committer | 2024-05-01 15:58:27 +0200 | |
commit | 5f7ff5c7397a47fd47a3c32e7677936a8971bfaa (patch) | |
tree | f2cd0844353811084031c0ec62909c36d31336cd | |
parent | Stop alerting for slow GitHub webhook filter endpoint calls (#235) (diff) |
bump the debian version used
This also explicitly specifies the sync type to rsync
-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 |