Convert provision types to symbols so they work

This commit is contained in:
Mitchell Hashimoto 2013-01-30 19:51:04 -08:00
parent b91d7203eb
commit 72c10b53e7
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ module VagrantPlugins
parser.on("--provision-with x,y,z", Array,
"Enable only certain provisioners, by type.") do |list|
options[:provision_types] = list
options[:provision_types] = list.map { |type| type.to_sym }
end
end
end