Add bookworm Vagrantfile

This commit is contained in:
flyingscorpio@arch-desktop 2023-08-10 21:20:01 +02:00
parent 9d418407bf
commit 066145290f
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@
__pycache__/
.talismanrc
.roles_played
.vagrant/

11
Vagrantfile vendored Normal file
View file

@ -0,0 +1,11 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "debian/bookworm64"
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y pass
SHELL
end