github.com/crowdsecurity/crowdsec@v1.6.1/test/ansible/vagrant/wizard/debian-11-bullseye/Vagrantfile (about)

     1  # frozen_string_literal: true
     2  
     3  Vagrant.configure('2') do |config|
     4    config.vm.box = 'debian/bullseye64'
     5    config.vm.provision "shell", inline: <<-SHELL
     6      sudo apt update
     7      sudo apt install -y aptitude kitty-terminfo
     8    SHELL
     9  end
    10  
    11  common = '../common'
    12  load common if File.exist?(common)