vagrant-goodhosts 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/vagrant-goodhosts/GoodHosts.rb +4 -4
- data/lib/vagrant-goodhosts/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 773499e5908599b791ece8dbfbeb82929508e5c9341af2603250e0d973ab1be2
|
4
|
+
data.tar.gz: 4b65f0a08a6779474a320e40ef0a0b924bb51c7c3334fa53a182da3dc856d5aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d71b200fa955218bdf800fc4da2d5c56d3b3d8719145b9961e8d9017d3215a34b21753dc4b10e151ca2616e05e24e0709a14d2058ba4b84da5ff1a9dbeb2d06e
|
7
|
+
data.tar.gz: d9ff6081767d318a1c91d96bf683c4791a809c60ec6e6d0fb39abc541d4e647dc50789717471493be2e8862ceda89718f33cb57e07804d4a3d1f6f71f5190cd2
|
@@ -95,9 +95,9 @@ module VagrantPlugins
|
|
95
95
|
next
|
96
96
|
end
|
97
97
|
if cli.include? ".exe"
|
98
|
-
stdin, stdout, stderr, wait_thr = Open3.popen3(cli, "add", "
|
98
|
+
stdin, stdout, stderr, wait_thr = Open3.popen3(cli, "add", "--clean", ip_address, hostnames)
|
99
99
|
else
|
100
|
-
stdin, stdout, stderr, wait_thr = Open3.popen3("sudo", cli, "add", "
|
100
|
+
stdin, stdout, stderr, wait_thr = Open3.popen3("sudo", cli, "add", "--clean", ip_address, hostnames)
|
101
101
|
end
|
102
102
|
if !wait_thr.value.success?
|
103
103
|
error = true
|
@@ -118,9 +118,9 @@ module VagrantPlugins
|
|
118
118
|
next
|
119
119
|
end
|
120
120
|
if cli.include? ".exe"
|
121
|
-
stdin, stdout, stderr, wait_thr = Open3.popen3(cli, "remove", "
|
121
|
+
stdin, stdout, stderr, wait_thr = Open3.popen3(cli, "remove", "--clean", ip_address, hostnames)
|
122
122
|
else
|
123
|
-
stdin, stdout, stderr, wait_thr = Open3.popen3("sudo", cli, "remove", "
|
123
|
+
stdin, stdout, stderr, wait_thr = Open3.popen3("sudo", cli, "remove", "--clean", ip_address, hostnames)
|
124
124
|
end
|
125
125
|
if !wait_thr.value.success?
|
126
126
|
error = true
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-goodhosts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniele Scasciafratte
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
requirements: []
|
84
|
-
rubygems_version: 3.1
|
84
|
+
rubygems_version: 3.2.0.rc.1
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: Enables Vagrant to update hosts file on the host machine with goodhosts
|