From 2bdf9468688d44e7b6ae8b20fd54f8af3223f5f0 Mon Sep 17 00:00:00 2001 From: Ole Herman Schumacher Elgesem Date: Wed, 18 Mar 2026 16:11:41 +0100 Subject: [PATCH] Updated the box used in local virtual machine part of getting started Signed-off-by: Ole Herman Schumacher Elgesem --- .../01-installation/local-virtual-machine.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/getting-started/01-installation/local-virtual-machine.markdown b/content/getting-started/01-installation/local-virtual-machine.markdown index 38d800366..98f5938eb 100644 --- a/content/getting-started/01-installation/local-virtual-machine.markdown +++ b/content/getting-started/01-installation/local-virtual-machine.markdown @@ -77,9 +77,9 @@ Vagrant.configure("2") do |config| SHELL end - # Ubuntu 20.04 VM, for CFEngine Enterprise Hub: + # Ubuntu 24.04 VM, for CFEngine Enterprise Hub: config.vm.define "hub", autostart: false do |hub| - hub.vm.box = "ubuntu/focal64" + hub.vm.box = "cloud-image/ubuntu-24.04" hub.vm.hostname = "hub" hub.vm.network "private_network", ip: "192.168.56.2" hub.ssh.insert_key = true @@ -93,7 +93,7 @@ end The `Vagrantfile` above does some important things: -- Defines an Ubuntu 20.04 virtual machine called `hub`, with hostname `hub` +- Defines an Ubuntu 24.04 virtual machine called `hub`, with hostname `hub` - Sets its IP address to be `192.168.56.2` - Sets how much memory and CPU cores we want the VM to have - Copies the `id_rsa.pub` public key into the host when it starts, so we can use `ssh`