chiark / gitweb /
buildserver: force a known-good version of chef
authorHans-Christoph Steiner <hans@eds.org>
Tue, 30 Aug 2016 20:56:06 +0000 (22:56 +0200)
committerHans-Christoph Steiner <hans@eds.org>
Mon, 12 Sep 2016 12:58:08 +0000 (14:58 +0200)
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

index a7b1745fa2c9cc3835f260ea57fa015e8bcdf3b8..3e04fbc1ee733395f7ebf23530a9bb46cda49873 100644 (file)
@@ -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"