mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-13 01:45:56 +00:00
vagrant: ubuntu lunar -> noble VM
Noble should become stable / LTS soon.
This commit is contained in:
parent
b25caafc94
commit
f28084d773
1 changed files with 4 additions and 4 deletions
8
Vagrantfile
vendored
8
Vagrantfile
vendored
|
@ -275,16 +275,16 @@ Vagrant.configure(2) do |config|
|
||||||
v.cpus = $cpus
|
v.cpus = $cpus
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.define "lunar64" do |b|
|
config.vm.define "noble64" do |b|
|
||||||
b.vm.box = "ubuntu/lunar64"
|
b.vm.box = "ubuntu/noble64"
|
||||||
b.vm.provider :virtualbox do |v|
|
b.vm.provider :virtualbox do |v|
|
||||||
v.memory = 1024 + $wmem
|
v.memory = 1024 + $wmem
|
||||||
end
|
end
|
||||||
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
||||||
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
|
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
|
||||||
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("lunar64")
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("noble64")
|
||||||
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
|
||||||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("lunar64", ".*none.*")
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("noble64", ".*none.*")
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.define "jammy64" do |b|
|
config.vm.define "jammy64" do |b|
|
||||||
|
|
Loading…
Reference in a new issue