From 0946100f6dc73eed218310b4626344f326d5b5f4 Mon Sep 17 00:00:00 2001 From: Scott Solkhon Date: Fri, 2 Sep 2022 15:59:52 +0100 Subject: [PATCH] Update base image for Vagrant vm CentOS8 is no longer supported but CentOS8 Stream is. Change-Id: I2e3d41aa7f26ae4139e73c7b4ed4e76d1df94eee --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 4df345bd0..020d6a4a0 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ Vagrant.configure('2') do |config| config.vm.network 'private_network', ip: '192.168.33.3', auto_config: false - config.vm.box = 'centos/8' + config.vm.box = 'centos/stream8' # The default CentOS box comes with a root disk that is too small to fit a # deployment on so we need to make it bigger.