Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dev/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading