Fixes #177 - Manage the guest by default.
This commit is contained in:
parent
6f4c0d7c6a
commit
a179758eaf
|
@ -27,7 +27,7 @@ module VagrantPlugins
|
||||||
def finalize!
|
def finalize!
|
||||||
@enabled = false if @enabled == UNSET_VALUE
|
@enabled = false if @enabled == UNSET_VALUE
|
||||||
@manage_host = false if @manage_host == 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
|
@ignore_private_ip = false if @ignore_private_ip == UNSET_VALUE
|
||||||
@include_offline = false if @include_offline == UNSET_VALUE
|
@include_offline = false if @include_offline == UNSET_VALUE
|
||||||
@aliases = [] if @aliases == UNSET_VALUE
|
@aliases = [] if @aliases == UNSET_VALUE
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
module VagrantPlugins
|
module VagrantPlugins
|
||||||
module HostManager
|
module HostManager
|
||||||
VERSION = '1.8.0'
|
VERSION = '1.8.1'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue