mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 08:45:13 +00:00
vagrant: add up-to-date openindiana box (py35, openssl10)
This commit is contained in:
parent
ade48b6ecc
commit
7a175d79b6
1 changed files with 26 additions and 0 deletions
26
Vagrantfile
vendored
26
Vagrantfile
vendored
|
@ -107,6 +107,18 @@ def packages_darwin
|
||||||
EOF
|
EOF
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def packages_openindiana
|
||||||
|
return <<-EOF
|
||||||
|
# needs separate provisioning step + reboot:
|
||||||
|
#pkg update
|
||||||
|
# already installed:
|
||||||
|
#pkg install python-35 virtualenv-35 pip-35 clang-40 lz4 zstd git
|
||||||
|
ln -sf /usr/bin/python3.5 /usr/bin/pyton3
|
||||||
|
ln -sf /usr/bin/virtualenv-3.5 /usr/bin/virtualenv
|
||||||
|
ln -sf /usr/bin/pip-3.5 /usr/bin/pip
|
||||||
|
EOF
|
||||||
|
end
|
||||||
|
|
||||||
def install_pyenv(boxname)
|
def install_pyenv(boxname)
|
||||||
return <<-EOF
|
return <<-EOF
|
||||||
curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
|
curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
|
||||||
|
@ -340,6 +352,20 @@ Vagrant.configure(2) do |config|
|
||||||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("darwin64")
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("darwin64")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# 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.provider :virtualbox do |v|
|
||||||
|
v.memory = 1536 + $wmem
|
||||||
|
end
|
||||||
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
||||||
|
b.vm.provision "packages openindiana", :type => :shell, :inline => packages_openindiana
|
||||||
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("openindiana64")
|
||||||
|
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("openindiana64")
|
||||||
|
end
|
||||||
|
|
||||||
# TODO: create more VMs with python 3.5+ and openssl 1.1.
|
# TODO: create more VMs with python 3.5+ and openssl 1.1.
|
||||||
# See branch 1.1-maint for a better equipped Vagrantfile (but still on py34 and openssl 1.0).
|
# See branch 1.1-maint for a better equipped Vagrantfile (but still on py34 and openssl 1.0).
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue