Changed data_bags_path and roles_path in chef-solo provisioner to strings rather than arrays. [closes GH-446]

This commit is contained in:
Greg Thornton 2011-07-29 15:14:22 -05:00 committed by Mitchell Hashimoto
parent 9d7433cbe7
commit 92bb5c423b
1 changed files with 4 additions and 4 deletions

View File

@ -17,8 +17,8 @@ module Vagrant
super
@cookbooks_path = ["cookbooks", [:vm, "cookbooks"]]
@roles_path = []
@data_bags_path = []
@roles_path = ""
@data_bags_path = ""
@nfs = false
end
@ -94,8 +94,8 @@ module Vagrant
def setup_solo_config
cookbooks_path = guest_paths(@cookbook_folders)
roles_path = guest_paths(@role_folders)
data_bags_path = guest_paths(@data_bags_folders)
roles_path = guest_paths(@role_folders).first
data_bags_path = guest_paths(@data_bags_folders).first
setup_config("chef_solo_solo", "solo.rb", {
:node_name => config.node_name,