vagrant-goodhosts 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9999dc28ea8a634d9d2f562f3db11171adc264e0587c9f2d2b0cc1749a762b17
4
- data.tar.gz: 14b2cfa13216292504af3acab9aa47f57bd91c2e0cd5f2e6bf883b91c39485b2
3
+ metadata.gz: f01c22f92849382e5c320c60266b1c5f4cafe4f22f4dfa1675354d15244a4566
4
+ data.tar.gz: 5519bd1c50e50739e42f096be5744901e023e0dd3ef4b3d2bef6f70ea3212094
5
5
  SHA512:
6
- metadata.gz: 371e94ffe4c948617ab74c77d9789fa95736e3619b5c0bc64caa113b31e6091b7339923fda3a1d2e0158cfa3ca0d7812ae1b51cea64f74fe8fc170bb411a4a7b
7
- data.tar.gz: f6c2714dd8e3ff3ef0c0055219183e4d63695a32ab74f88aaf982c8578a735440976a1c2d13639bc03b32f5837a6bab7468b4fb66c43e3b584a7e3887317651a
6
+ metadata.gz: e5f38bb5c477970b055e595466e507b9f990ab8bfe355421f162e203edefba8b8c90ae05da25baa78a3b31f8018f73e58c325d11117eba5d3ae68fce14759fb9
7
+ data.tar.gz: 698212cce5999610ed8e20e8fb90bfb65a44f65132b6f493a176d77109da20346780db40faf8da470b9a19c870bc3647ec98011baf5e5026a2b102a0fa5de9d1
@@ -10,12 +10,6 @@ module VagrantPlugins
10
10
  module GoodHosts
11
11
  def get_ips
12
12
  ips = []
13
-
14
- if @machine.config.vm.networks.empty?
15
- @ui.error("[vagrant-goodhosts] No networks are available yet for this virtual machine to add IP/hosts for")
16
- return ips
17
- end
18
-
19
13
  @machine.config.vm.networks.each do |network|
20
14
  key, options = network[0], network[1]
21
15
  if options[:goodhosts] == "skip"
@@ -23,23 +17,11 @@ module VagrantPlugins
23
17
  end
24
18
  ip = options[:ip] if (key == :private_network || key == :public_network) && options[:goodhosts] != "skip"
25
19
  ips.push(ip) if ip
26
-
27
- @machine.config.vm.provider :hyperv do
28
- timeout = @machine.provider_config.ip_address_timeout
29
- @ui.output("[vagrant-goodhosts] Waiting for the guest machine to report its IP address ( this might take some time, have patience )...")
30
- @ui.detail("Timeout: #{timeout} seconds")
31
-
32
- options = {
33
- vmm_server_address: @machine.provider_config.vmm_server_address,
34
- proxy_server_address: @machine.provider_config.proxy_server_address,
35
- timeout: timeout,
36
- machine: @machine
37
- }
38
- network = @machine.provider.driver.read_guest_ip(options)
39
- if network["ip"]
40
- ips.push(network["ip"]) unless ips.include? network["ip"]
41
- end
42
- end
20
+ end
21
+ if @machine.provider_name == :hyperv
22
+ ip = @machine.provider.driver.read_guest_ip["ip"]
23
+ @ui.info "[vagrant-goodhosts] Read guest IP #{ip} from Hyper-V provider"
24
+ ips.push(ip) unless ip.nil? or ips.include? ip
43
25
  end
44
26
  return ips
45
27
  end
@@ -31,15 +31,15 @@ module VagrantPlugins
31
31
  end
32
32
 
33
33
  action_hook(:goodhosts, :machine_action_halt) do |hook|
34
- hook.append(Action::RemoveHosts)
34
+ hook.prepend(Action::RemoveHosts)
35
35
  end
36
36
 
37
37
  action_hook(:goodhosts, :machine_action_suspend) do |hook|
38
- hook.append(Action::RemoveHosts)
38
+ hook.prepend(Action::RemoveHosts)
39
39
  end
40
40
 
41
41
  action_hook(:goodhosts, :machine_action_destroy) do |hook|
42
- hook.append(Action::RemoveHosts)
42
+ hook.prepend(Action::RemoveHosts)
43
43
  end
44
44
 
45
45
  action_hook(:goodhosts, :machine_action_reload) do |hook|
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GoodHosts
3
- VERSION = '1.1.4'
3
+ VERSION = '1.1.5'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-goodhosts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniele Scasciafratte
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-17 00:00:00.000000000 Z
11
+ date: 2022-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -100,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
100
  - !ruby/object:Gem::Version
101
101
  version: '0'
102
102
  requirements: []
103
- rubygems_version: 3.3.5
103
+ rubygems_version: 3.3.15
104
104
  signing_key:
105
105
  specification_version: 4
106
106
  summary: Enables Vagrant to update hosts file on the host machine with goodhosts