From 03649442ef4734e9a0d36819e7f191ab7578cad3 Mon Sep 17 00:00:00 2001 From: Christian Fasnacht Date: Mon, 14 Oct 2024 10:39:31 +0200 Subject: [PATCH] use working image in Vagrantfile (#214) --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 3cf9758..cfa78a4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,22 +7,22 @@ systemctl restart sshd useradd ansible SCRIPT Vagrant.configure("2") do |config| + # rockylinux/8 is broken does not boot + config.vm.box = "bento/rockylinux-8" + config.vm.define "control" do |control| - control.vm.box = "rockylinux/8" control.vm.hostname = "control" control.vm.network "private_network", ip: "192.168.122.30" control.vm.provision "shell", inline: $script end config.vm.define "node1" do |node1| - node1.vm.box = "rockylinux/8" node1.vm.hostname = "node1" node1.vm.network "private_network", ip: "192.168.122.31" node1.vm.provision "shell", inline: $script end config.vm.define "node2" do |node2| - node2.vm.box = "rockylinux/8" node2.vm.hostname = "node2" node2.vm.network "private_network", ip: "192.168.122.32" node2.vm.provision "shell",