Skip to content

Commit

Permalink
Merge pull request #220 from konstruktoid/lunar
Browse files Browse the repository at this point in the history
start testing Ubuntu 23.04 (Lunar Lobster)
  • Loading branch information
konstruktoid authored Dec 30, 2022
2 parents fbace86 + 5a320d5 commit fdf35ff
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,15 @@ Vagrant.configure("2") do |config|
kinetic.vm.box = "ubuntu/kinetic64"
kinetic.vm.hostname = "kinetic"
end

config.vm.define "lunar" do |lunar|
lunar.ssh.extra_args = ["-o","ConnectTimeout=600"]
lunar.ssh.insert_key = true
lunar.vm.boot_timeout = 600
lunar.vm.box = "lunar/20221227"
lunar.vm.box_url = "https://cloud-images.ubuntu.com/lunar/20221227/lunar-server-cloudimg-amd64-vagrant.box"
lunar.vm.box_download_checksum_type = "sha256"
lunar.vm.box_download_checksum = "5576b35423437b60ddcbf2500a2700a5354947a080d83efc057f75d4a0e08789"
lunar.vm.hostname = "lunar"
end
end

0 comments on commit fdf35ff

Please sign in to comment.