瀏覽代碼

new freebsd12 64bit vagrant box, fixes #4399

note:
- openssl 1.1.1 seems to be part of base install
- added zstd compression lib
Thomas Waldmann 6 年之前
父節點
當前提交
63ed2f6d7a
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Vagrantfile

+ 2 - 2
Vagrantfile

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