From 066145290fef22fa4bcc495d61f8c31ebfa8bf1b Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Thu, 10 Aug 2023 21:20:01 +0200 Subject: [PATCH] Add bookworm Vagrantfile --- .gitignore | 1 + Vagrantfile | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 Vagrantfile 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