Fixes #177 - Manage the guest by default.

This commit is contained in:
Seth Reeser 2016-02-11 14:13:12 -05:00
parent 6f4c0d7c6a
commit a179758eaf
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ module VagrantPlugins
def finalize!
@enabled = false if @enabled == UNSET_VALUE
@manage_host = false if @manage_host == UNSET_VALUE
@manage_guest = false if @manage_guest == UNSET_VALUE
@manage_guest = true if @manage_guest == UNSET_VALUE
@ignore_private_ip = false if @ignore_private_ip == UNSET_VALUE
@include_offline = false if @include_offline == UNSET_VALUE
@aliases = [] if @aliases == UNSET_VALUE

View File

@ -1,5 +1,5 @@
module VagrantPlugins
module HostManager
VERSION = '1.8.0'
VERSION = '1.8.1'
end
end