-
Notifications
You must be signed in to change notification settings - Fork 89
Closed
Description
Hello, few days ago i update macOS to Big Sur and now when i try to use vagrant up (on previously working project) the network initialization fail. There isn't useful info on vagrant startup log. I have only the following error:
Here my vagrant file:
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
net_ip = "192.168.50"
[
[ "MINION03-GTW", "#{net_ip}.13", "512", "generic/ubuntu1804", "/home/vagrant/scripts"],
[ "MINION04-HMI", "#{net_ip}.14", "2048", "tas50/windows_10", "/vagrant"],
].each do |vmname,ip,mem,os,mount_path|
config.vm.define "#{vmname}" do |minion_config|
minion_config.vm.provider "parallels" do |prl|
prl.memory = "#{mem}"
prl.cpus = 1
prl.name = "#{vmname}"
prl.update_guest_tools = true
end
minion_config.vm.provider "virtualbox" do |vbox|
vbox.memory = "#{mem}"
vbox.cpus = 1
vbox.name = "#{vmname}"
end
minion_config.vm.box = "#{os}"
minion_config.vm.hostname = "#{vmname}"
minion_config.vm.network "private_network", ip: "#{ip}"
minion_config.vm.synced_folder "../", mount_path
if os.eql? "generic/ubuntu1804" then
minion_config.vm.provision "shell", inline: <<-SHELL
id -u demo &>/dev/null || useradd -m -s /bin/bash demo
echo demo:demo | chpasswd
echo "demo ALL=(ALL) NOPASSWD:ALL" | sudo tee /etc/sudoers.d/demo
SHELL
end
end
end
end
Parallels version: 16.1.1
Vagrant version: 2.2.13
Vagrant-Parallels version: 2.0.1
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
