Skip to content

Commit

Permalink
Merge pull request #2552 from Varying-Vagrant-Vagrants/parallels-arm-…
Browse files Browse the repository at this point in the history
…tweaks

Parallels tweaks
  • Loading branch information
tomjn authored Nov 14, 2021
2 parents d0b5cf5 + 87c6669 commit 8fc51d4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,7 @@ Vagrant.configure('2') do |config|
# this seems to be the most reliable way to detect whether or not we're
# running under ARM64.
if Etc.uname[:version].include? 'ARM64'
override.vm.box = 'rueian/ubuntu20-m1'
override.vm.box_version = "0.0.1"
override.vm.box = 'mpasternak/focal64-arm'
end
end

Expand Down Expand Up @@ -455,6 +454,9 @@ Vagrant.configure('2') do |config|
config.vm.provider :virtualbox do |_v, override|
override.disksize.size = vvv_config['vagrant-plugins']['disksize']
end
if Etc.uname[:version].include? 'ARM64'
puts "WARNING: Vagrant disksize requires VirtualBox and is incompatible with Arm devices, uninstall immediatley"
end
end

# Private Network (default)
Expand Down

0 comments on commit 8fc51d4

Please sign in to comment.