hashicorp/vagrant · error
vagrant.chef_run_list_empty
Error message
vagrant.chef_run_list_empty
What it means
Error "vagrant.chef_run_list_empty" thrown in hashicorp/vagrant.
Source
Thrown at plugins/provisioners/chef/provisioner/chef_solo.rb:180
def setup_solo_config
setup_config("provisioners/chef_solo/solo", "solo.rb", solo_config)
end
def solo_config
{
cookbooks_path: guest_paths(@cookbook_folders),
recipe_url: @config.recipe_url,
nodes_path: guest_paths(@node_folders),
roles_path: guest_paths(@role_folders),
data_bags_path: guest_paths(@data_bags_folders),
environments_path: guest_paths(@environments_folders).first
}
end
def run_chef_solo
if @config.run_list && @config.run_list.empty?
@machine.ui.warn(I18n.t("vagrant.chef_run_list_empty"))
end
command = CommandBuilder.command(:solo, @config,
windows: windows?,
colored: @machine.env.ui.color?,
legacy_mode: @config.legacy_mode,
)
still_active = 259 #provisioner has asked chef to reboot
@config.attempts.times do |attempt|
exit_status = 0
while exit_status == 0 || exit_status == still_active
if @machine.guest.capability?(:wait_for_reboot)
@machine.guest.capability(:wait_for_reboot)
elsif attempt > 0
sleep 10
@machine.communicate.wait_for_ready(@machine.config.vm.boot_timeout)View on GitHub (pinned to 35f3160f4a)
When it happens
Trigger: Thrown at plugins/provisioners/chef/provisioner/chef_solo.rb:180 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of hashicorp/vagrant@35f3160f4a (2026-08-21).
Data as JSON: /api/errors/a16d6a923a4deb31.
Report an issue: GitHub.