self-hosting/Vagrantfile
Tunui Franken 7036dac3d3 Use vagrant defaults for connection to test machine
Also add known_host add ssh_config accordingly
2023-09-24 12:24:55 +02:00

9 lines
206 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.define "lime2-test" do |lime2|
lime2.vm.box = "debian/bookworm64"
lime2.vm.hostname = "lime2-test"
end
end