vagrant-goodhosts 1.1.4 → 1.1.6

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: 1a67d1220aa24b9f5d083e7720fe47e81412f9708d2113e4d760f4ef8aecb1e0
4
+ data.tar.gz: 16cf533b3ab5ca06ab80f53e1636ae30e6b3cf523433351ab06c884be44a0469
5
5
  SHA512:
6
- metadata.gz: 371e94ffe4c948617ab74c77d9789fa95736e3619b5c0bc64caa113b31e6091b7339923fda3a1d2e0158cfa3ca0d7812ae1b51cea64f74fe8fc170bb411a4a7b
7
- data.tar.gz: f6c2714dd8e3ff3ef0c0055219183e4d63695a32ab74f88aaf982c8578a735440976a1c2d13639bc03b32f5837a6bab7468b4fb66c43e3b584a7e3887317651a
6
+ metadata.gz: '039f6ce56af70442af5098abebea8825c403287fe26a357007ee63f6b7ca5d9f380049f5dad650984f0d6b41cab8836cfed3f23470d6fdc1ce0f1e3a86dc41b4'
7
+ data.tar.gz: cf5c87c71bcfd50f49030e6b7ab5553c200e4df4374d83531dafb8369907d1eec0fa9f498f4d71d208f262b19a45288315f365361e6f7f69615c9539c0ba3a1c
@@ -3,7 +3,7 @@ name: Linters
3
3
  on: [push]
4
4
 
5
5
  jobs:
6
- build:
6
+ linter:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
9
  - uses: actions/checkout@v1
data/.rubocop.yml CHANGED
@@ -19,6 +19,8 @@ Metrics/CyclomaticComplexity:
19
19
  Enabled: false
20
20
  Metrics/AbcSize:
21
21
  Enabled: false
22
+ Style/AndOr:
23
+ Enabled: false
22
24
  Style/FrozenStringLiteralComment:
23
25
  Enabled: false
24
26
  Style/RaiseArgs:
@@ -10,12 +10,14 @@ 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")
13
+ if @machine.provider_name == :docker
14
+ @ui.info '[vagrant-goodhosts] Docker detected, adding 127.0.0.1 and ::1 IP addresses'
15
+ ip = "127.0.0.1"
16
+ ips.push(ip) unless ip.nil? or ips.include? ip
17
+ ip = "::1"
18
+ ips.push(ip) unless ip.nil? or ips.include? ip
16
19
  return ips
17
20
  end
18
-
19
21
  @machine.config.vm.networks.each do |network|
20
22
  key, options = network[0], network[1]
21
23
  if options[:goodhosts] == "skip"
@@ -23,23 +25,11 @@ module VagrantPlugins
23
25
  end
24
26
  ip = options[:ip] if (key == :private_network || key == :public_network) && options[:goodhosts] != "skip"
25
27
  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
28
+ end
29
+ if @machine.provider_name == :hyperv
30
+ ip = @machine.provider.driver.read_guest_ip["ip"]
31
+ @ui.info "[vagrant-goodhosts] Read guest IP #{ip} from Hyper-V provider"
32
+ ips.push(ip) unless ip.nil? or ips.include? ip
43
33
  end
44
34
  return ips
45
35
  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.6'
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.6
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: 2023-06-21 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