1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-07 01:40:10 +02:00

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.
This commit is contained in:
Hans-Christoph Steiner 2016-08-30 22:56:06 +02:00
parent dc2f53b48c
commit b717271c61

View 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"