setup-cockpit/Vagrantfile

11 lines
223 B
Ruby

# -*- 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