Skip to content

Commit bf1954d

Browse files
authored
Merge pull request #3605 from olehermanse/vm
Updated the box used in local virtual machine part of getting started
2 parents 1c6affa + 2bdf946 commit bf1954d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

content/getting-started/01-installation/local-virtual-machine.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ Vagrant.configure("2") do |config|
7777
SHELL
7878
end
7979

80-
# Ubuntu 20.04 VM, for CFEngine Enterprise Hub:
80+
# Ubuntu 24.04 VM, for CFEngine Enterprise Hub:
8181
config.vm.define "hub", autostart: false do |hub|
82-
hub.vm.box = "ubuntu/focal64"
82+
hub.vm.box = "cloud-image/ubuntu-24.04"
8383
hub.vm.hostname = "hub"
8484
hub.vm.network "private_network", ip: "192.168.56.2"
8585
hub.ssh.insert_key = true
@@ -93,7 +93,7 @@ end
9393

9494
The `Vagrantfile` above does some important things:
9595

96-
- Defines an Ubuntu 20.04 virtual machine called `hub`, with hostname `hub`
96+
- Defines an Ubuntu 24.04 virtual machine called `hub`, with hostname `hub`
9797
- Sets its IP address to be `192.168.56.2`
9898
- Sets how much memory and CPU cores we want the VM to have
9999
- Copies the `id_rsa.pub` public key into the host when it starts, so we can use `ssh`

0 commit comments

Comments
 (0)