Skip to content

Commit a179758

Browse files
committed
Fixes #177 - Manage the guest by default.
1 parent 6f4c0d7 commit a179758

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/vagrant-hostmanager/config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def initialize
2727
def finalize!
2828
@enabled = false if @enabled == UNSET_VALUE
2929
@manage_host = false if @manage_host == UNSET_VALUE
30-
@manage_guest = false if @manage_guest == UNSET_VALUE
30+
@manage_guest = true if @manage_guest == UNSET_VALUE
3131
@ignore_private_ip = false if @ignore_private_ip == UNSET_VALUE
3232
@include_offline = false if @include_offline == UNSET_VALUE
3333
@aliases = [] if @aliases == UNSET_VALUE

lib/vagrant-hostmanager/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module VagrantPlugins
22
module HostManager
3-
VERSION = '1.8.0'
3+
VERSION = '1.8.1'
44
end
55
end

0 commit comments

Comments
 (0)