lib/chef/knife/kitchen.rb in knife-solo-0.0.10 vs lib/chef/knife/kitchen.rb in knife-solo-0.0.11
- old
+ new
@@ -14,14 +14,15 @@
mkdir name + "/#{dir}"
touch name + "/#{dir}/.gitkeep"
end
File.open(name + "/solo.rb", 'w') do |f|
f << <<-RUBY.gsub(/^ {12}/, '')
- file_cache_path "/tmp/chef-solo"
- data_bag_path "/tmp/chef-solo/data_bags"
- cookbook_path [ "/tmp/chef-solo/site-cookbooks",
- "/tmp/chef-solo/cookbooks" ]
- role_path "/tmp/chef-solo/roles"
+ file_cache_path "/tmp/chef-solo"
+ data_bag_path "/tmp/chef-solo/data_bags"
+ encrypted_data_bag_secret "/tmp/chef-solo/data_bag_key"
+ cookbook_path [ "/tmp/chef-solo/site-cookbooks",
+ "/tmp/chef-solo/cookbooks" ]
+ role_path "/tmp/chef-solo/roles"
RUBY
end
end
end
end