From b717271c6147731b5be611aed482a1757d6f9b0b Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 30 Aug 2016 22:56:06 +0200 Subject: [PATCH] buildserver: force a known-good version of chef This forces the release channel and version of chef-solo to install on the guest VM. I was getting really massive, odd stacktraces without specifying this, and chef is only used for Kivy now anyway. --- buildserver/Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildserver/Vagrantfile b/buildserver/Vagrantfile index a7b1745f..3e04fbc1 100644 --- a/buildserver/Vagrantfile +++ b/buildserver/Vagrantfile @@ -49,6 +49,8 @@ Vagrant.configure("2") do |config| args: [configfile['debian_mirror']] config.vm.provision :chef_solo do |chef| + chef.channel = "stable" + chef.version = "12.10.24" chef.cookbooks_path = "cookbooks" chef.log_level = :debug chef.add_recipe "kivy"