From fa0e046743593c54df1db386cc4e8de60b0f6891 Mon Sep 17 00:00:00 2001 From: "Marc A. Paradise" Date: Thu, 8 Jan 2026 08:19:02 -0500 Subject: [PATCH] Minor updates to keep dev vm working Signed-off-by: Marc A. Paradise --- dev/Vagrantfile | 4 ++-- dev/defaults.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/Vagrantfile b/dev/Vagrantfile index aa3cb115d7..a037ea66d8 100644 --- a/dev/Vagrantfile +++ b/dev/Vagrantfile @@ -63,7 +63,7 @@ Vagrant.configure("2") do |config| config.vm.network 'public_network' if USE_AZURE config.vm.network "forwarded_port", guest: 80, host: 8080 config.vm.network "forwarded_port", guest: 443, host: 8443 - config.vm.box = "bento/ubuntu-20.04" + config.vm.box = "bento/ubuntu-24.04" config.ssh.forward_agent = true #config.omnibus.chef_version = :latest @@ -214,7 +214,7 @@ def define_chef_server(config, attributes) # We do a number of things that can affect the initial configuration - by # running reconfigure here we can ensure that they're all completed # first -- no matter what kind of pre-reconfigure provisioning we doing. - config.vm.provision "shell", inline: "chef-server-ctl reconfigure --verbose" + config.vm.provision "shell", inline: "chef-server-ctl reconfigure --verbose --chef-license=accept" # Another chef-zero provision - now that the server has been reconfigured, we can set # up a default data for testing diff --git a/dev/defaults.yml b/dev/defaults.yml index 1d3c11017d..571e4a18d9 100644 --- a/dev/defaults.yml +++ b/dev/defaults.yml @@ -46,7 +46,7 @@ vm: # All settings below apply only to the chef-server vm cpus: 4 memory: 4096 - packages: [ ntp, curl, wget, htop, uuid-dev, tmux, vim, iotop, zlib1g-dev, liblzma-dev, jq, ripgrep, tree ] + packages: [ curl, wget, htop, uuid-dev, tmux, vim, iotop, zlib1g-dev, liblzma-dev, jq, ripgrep, tree ] omnibus-autoload: [] # see config.yml for details and to add components # Override this in config.yml to set a custom path for your dotfiles # that's external to this repository.