Merge pull request #4410 from ThomasWaldmann/freebsd12-vagrant

new freebsd12 64bit vagrant box, fixes #4399
This commit is contained in:
TW 2019-03-01 15:33:05 +01:00 committed by GitHub
commit e447401d68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
Vagrantfile vendored
View File

@ -41,7 +41,7 @@ def packages_freebsd
# install all the (security and other) updates, base system
freebsd-update --not-running-from-cron fetch install
# for building borgbackup and dependencies:
pkg install -y openssl-devel liblz4 fusefs-libs pkgconf
pkg install -y liblz4 zstd fusefs-libs pkgconf
pkg install -y git bash # fakeroot causes lots of troubles on freebsd
# for building python:
pkg install -y sqlite3
@ -272,7 +272,7 @@ Vagrant.configure(2) do |config|
end
config.vm.define "freebsd64" do |b|
b.vm.box = "freebsd64"
b.vm.box = "freebsd64-12"
b.vm.provider :virtualbox do |v|
v.memory = 1024 + $wmem
end