summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2024-04-01 20:22:30 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2024-04-01 20:22:30 +0200
commit4ff0ba48f8b5ffc311c4a8f578566c8d5a7b0d3c (patch)
tree3f4c2cf8d47c36ef4746ec8d078388f4c84f9754
parent6de9ca87cf472f8f9698b8506563954bb8f8847e (diff)
vagrant: openindiana updates
-rw-r--r--Vagrantfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 6173298cc..bcc304b62 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -132,11 +132,13 @@ def packages_openindiana
return <<-EOF
# needs separate provisioning step + reboot:
#pkg update
- #pkg install gcc-7 python-39 setuptools-39
+ pkg install gcc-13 git pkg-config libxxhash
ln -sf /usr/bin/python3.9 /usr/bin/python3
python3 -m ensurepip
ln -sf /usr/bin/pip3.9 /usr/bin/pip3
pip3 install virtualenv
+ # let borg's pkg-config find openssl:
+ pfexec pkg set-mediator -V 3.1 openssl
EOF
end
@@ -417,7 +419,7 @@ Vagrant.configure(2) do |config|
# rsync on openindiana has troubles, does not set correct owner for /vagrant/borg and thus gives lots of
# permission errors. can be manually fixed in the VM by: sudo chown -R vagrant /vagrant/borg ; then rsync again.
config.vm.define "openindiana64" do |b|
- b.vm.box = "openindiana"
+ b.vm.box = "openindiana/hipster"
b.vm.provider :virtualbox do |v|
v.memory = 2048 + $wmem
end