Add bookworm Vagrantfile
This commit is contained in:
parent
9d418407bf
commit
066145290f
2 changed files with 12 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@
|
|||
__pycache__/
|
||||
.talismanrc
|
||||
.roles_played
|
||||
.vagrant/
|
||||
|
|
11
Vagrantfile
vendored
Normal file
11
Vagrantfile
vendored
Normal 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
|
Loading…
Add table
Reference in a new issue