Building Icinga 2 on OpenBSD

Had to do this for #7505 and would like to share my setup (Vagrantfile) so others won’t have to set up everything from scratch:

Vagrant.configure("2") do |config|
  config.vm.box = "generic/openbsd6"
  #config.vm.network "private_network", type: "dhcp"
  #config.vm.synced_folder ".", "/vagrant"
  config.vm.provision "shell", inline: <<-SHELL
sudo pkg_add bison boost boost-md cmake git mariadb-client postgresql-client
SHELL
end
3 Likes