I am using the debian/buster64 image from vagrant cloud to create 3 VM's. Everything works fine. Once I shut down these machines and do a
Code: Select all
vagrant upCode: Select all
node1: SSH auth method: private keyCode: Select all
N = 3
(1..N).each do |machine_id|
config.vm.define "node#{machine_id}" do |machine|
machine.vm.box = "debian/buster64"
machine.vm.hostname = "node#{machine_id}"
machine.vm.network "public_network", bridge: "wlp59s0", ip: "192.168.100.#{200+machine_id}"
machine.vm.provider "virtualbox" do |vbox|
vbox.name = "node#{machine_id}"
vbox.cpus = "1"
vbox.memory = "512"
vbox.gui = true
end
machine.vm.provision :ansible do |ansible|
ansible.playbook = "../dev.site.yaml"
end
end
end
Code: Select all
error symbol 'grub_calloc' not found
entering rescue mode
grub rescue >_Can someone tell me what is going on ?