diff --git a/.gitignore b/.gitignore index 836d77e..62a928f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ __pycache__/ .talismanrc .roles_played +.vagrant/ diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..f60a874 --- /dev/null +++ b/Vagrantfile @@ -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