mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-13 10:50:21 -04:00
vagrant: add a ubuntu 20.04 (focal) box
This commit is contained in:
parent
04681eeb8c
commit
ac469faec0
1 changed files with 12 additions and 0 deletions
12
Vagrantfile
vendored
12
Vagrantfile
vendored
|
|
@ -378,6 +378,18 @@ Vagrant.configure(2) do |config|
|
|||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("centos7_64")
|
||||
end
|
||||
|
||||
config.vm.define "focal64" do |b|
|
||||
b.vm.box = "ubuntu/focal64"
|
||||
b.vm.provider :virtualbox do |v|
|
||||
v.memory = 1024 + $wmem
|
||||
end
|
||||
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 "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("focal64")
|
||||
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
|
||||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("focal64")
|
||||
end
|
||||
|
||||
config.vm.define "bionic64" do |b|
|
||||
b.vm.box = "ubuntu/bionic64"
|
||||
b.vm.provider :virtualbox do |v|
|
||||
|
|
|
|||
Loading…
Reference in a new issue