remove extra alias for vvv verbosity

This commit is contained in:
Matthew Johnson 2013-10-04 15:32:10 -04:00
parent eb5fc9d261
commit b514f0c321
1 changed files with 3 additions and 2 deletions

View File

@ -87,8 +87,9 @@ module VagrantPlugins
if config.verbose.to_s =~ /^v+$/ if config.verbose.to_s =~ /^v+$/
# ansible-playbook accepts "silly" arguments like '-vvvvv' as '-vvvv' for now # ansible-playbook accepts "silly" arguments like '-vvvvv' as '-vvvv' for now
return "-#{config.verbose}" return "-#{config.verbose}"
elsif config.verbose.to_s == 'extra' else
return '-vvv' # safe default, in case input strays
return '-v'
end end
end end