1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-01 12:45:34 +00:00

vagrant: macos: give more memory

sometimes the VM just got stuck (usually when building/testing openssl 3),
maybe more RAM helps?
This commit is contained in:
Thomas Waldmann 2024-10-02 12:52:32 +02:00
parent f7d0cbeeed
commit 0aed3cc2cb
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

2
Vagrantfile vendored
View file

@ -395,7 +395,7 @@ Vagrant.configure(2) do |config|
config.vm.define "macos1012" do |b|
b.vm.box = "macos-sierra"
b.vm.provider :virtualbox do |v|
v.memory = 4096 + $wmem
v.memory = 8192 + $wmem
v.customize ['modifyvm', :id, '--ostype', 'MacOS_64']
v.customize ['modifyvm', :id, '--paravirtprovider', 'default']
v.customize ['modifyvm', :id, '--nested-hw-virt', 'on']