Skip to content

Commit

Permalink
Fixes #177 - Manage the guest by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
seth-reeser committed Feb 11, 2016
1 parent 6f4c0d7 commit a179758
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/vagrant-hostmanager/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def initialize
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
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-hostmanager/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module VagrantPlugins
module HostManager
VERSION = '1.8.0'
VERSION = '1.8.1'
end
end

0 comments on commit a179758

Please sign in to comment.