Add support for Bookworm

This commit is contained in:
Jérémy Lecour 2023-12-09 14:23:12 +01:00 committed by Jérémy Lecour
parent 4f67259648
commit 5265709704
Signed by: jlecour
SSH key fingerprint: SHA256:h+5LgHRKwN9lS0SsdVR5yZPeFlJE4Mt+8UtL4CcP8dY

22
test/Vagrantfile vendored
View file

@ -19,6 +19,28 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
libvirt.cpus = 1
end
# Bookworm
config.vm.define :bookworm do |node|
node.vm.hostname = "bookworm.evolix.net"
node.vm.box = "debian/bookworm64"
node.vm.provision :ansible do |ansible|
ansible.limit = "bookworm"
ansible.playbook = "vagrant.yml"
# ansible.tags = "mysql"
ansible.raw_arguments = [
"-b",
"--ask-vault-pass",
# "--diff",
# "--step",
# "--syntax",
# "-vvv",
]
ansible.extra_vars = {
ansible_python_interpreter: "/usr/bin/python3"
}
end
end
# Bullseye
config.vm.define :bullseye do |node|
node.vm.hostname = "bullseye.evolix.net"