summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2024-03-29 23:53:08 +0100
committerThomas Waldmann <tw@waldmann-edv.de>2024-03-29 23:53:08 +0100
commit0f9665258f91d6101c466d8355d4ccfde1d0bd47 (patch)
treefd591112b58462e98d91dd163f2d24250c926c7e
parente5ee9e61822fffe332de181898c946fe3d7447e6 (diff)
vagrant: openindiana updates
- use openindiana/hipster box - install missing packages - also install libxxhash, so it does not use the bundled code
-rw-r--r--Vagrantfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index f3b42a053..20e278128 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -126,7 +126,7 @@ 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
@@ -429,7 +429,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