Right now I have the following in my Vagrantfile:
config.vm.provision :chef_solo do |chef| chef.cookbooks_path = \"cookbooks\" chef.add_recipe \"apt\"
You can include the apt recipe in the very beginning:
include_recipe 'apt'
this will run the update command.