jedi4ever / veewee

Easing the building of vagrant boxes
MIT License
4.29k stars 779 forks source link

suppress deprecation message #1113

Open ibizaman opened 5 years ago

ibizaman commented 5 years ago

An update in net/ssh changed the option :paranoid => False to :verify_host_key => :never. This clutters the output with a lot of depreciation notice:

:paranoid is deprecated, please use :verify_host_key. Supported values are exactly the same, only the name of the option has changed.
verify_host_key: false is deprecated, use :never

This PR uses the new variable name and value.

See https://github.com/hashicorp/vagrant/issues/9062.