mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-22 07:43:06 +00:00
Merge pull request #8520 from ThomasWaldmann/vagrant-improvements
vagrant improvements
This commit is contained in:
commit
d1d438ba57
1 changed files with 7 additions and 10 deletions
17
Vagrantfile
vendored
17
Vagrantfile
vendored
|
@ -43,12 +43,13 @@ def packages_freebsd
|
||||||
pkg install -y fusefs-libs3 || true
|
pkg install -y fusefs-libs3 || true
|
||||||
pkg install -y rust
|
pkg install -y rust
|
||||||
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 the tests we use pyenv built pythons):
|
pkg install -y python39 py39-sqlite3
|
||||||
pkg install -y python310 py310-sqlite3
|
pkg install -y python310 py310-sqlite3
|
||||||
# make sure there is a python3 command
|
pkg install -y python311 py311-sqlite3 py311-pip py311-virtualenv
|
||||||
ln -sf /usr/local/bin/python3.10 /usr/local/bin/python3
|
# make sure there is a python3/pip3/virtualenv command
|
||||||
python3 -m ensurepip
|
ln -sf /usr/local/bin/python3.11 /usr/local/bin/python3
|
||||||
pip3 install virtualenv
|
ln -sf /usr/local/bin/pip-3.11 /usr/local/bin/pip3
|
||||||
|
ln -sf /usr/local/bin/virtualenv-3.11 /usr/local/bin/virtualenv
|
||||||
# make bash default / work:
|
# make bash default / work:
|
||||||
chsh -s bash vagrant
|
chsh -s bash vagrant
|
||||||
mount -t fdescfs fdesc /dev/fd
|
mount -t fdescfs fdesc /dev/fd
|
||||||
|
@ -180,11 +181,7 @@ def packages_openindiana
|
||||||
return <<-EOF
|
return <<-EOF
|
||||||
# needs separate provisioning step + reboot:
|
# needs separate provisioning step + reboot:
|
||||||
#pkg update
|
#pkg update
|
||||||
pkg install gcc-13 git pkg-config libxxhash
|
pkg install gcc-13 git pkg-config libxxhash pip virtualenv
|
||||||
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:
|
# let borg's pkg-config find openssl:
|
||||||
pfexec pkg set-mediator -V 3.1 openssl
|
pfexec pkg set-mediator -V 3.1 openssl
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in a new issue