1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-23 08:16:54 +00:00

Merge pull request #4413 from ThomasWaldmann/vagrant-openbsd

vagrant: add a openbsd 6.4 box
This commit is contained in:
TW 2019-03-01 20:23:43 +01:00 committed by GitHub
commit 382875692b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

26
Vagrantfile vendored
View file

@ -67,6 +67,19 @@ def packages_freebsd
EOF
end
def packages_openbsd
return <<-EOF
pkg_add bash
chsh -s /usr/local/bin/bash vagrant
pkg_add lz4
pkg_add zstd
pkg_add git # no fakeroot
pkg_add py3-pip
pkg_add py3-virtualenv
ln -sf /usr/local/bin/virtualenv-3 /usr/local/bin/virtualenv
EOF
end
def packages_darwin
return <<-EOF
# install all the (security and other) updates
@ -287,6 +300,19 @@ Vagrant.configure(2) do |config|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("freebsd64")
end
config.vm.define "openbsd64" do |b|
b.vm.box = "openbsd64-64"
b.vm.provider :virtualbox do |v|
v.memory = 1024 + $wmem
end
b.ssh.shell = "sh"
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
b.vm.provision "packages openbsd", :type => :shell, :inline => packages_openbsd
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("openbsd64")
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(false)
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("openbsd64")
end
config.vm.define "darwin64" do |b|
b.vm.box = "jhcook/macos-sierra"
b.vm.provider :virtualbox do |v|