vagrant-proxyconf 2.0.3 → 2.0.4
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/CHANGELOG.md +8 -1
- data/lib/vagrant-proxyconf/action/configure_docker_proxy.rb +4 -3
- data/lib/vagrant-proxyconf/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3fb0eb7149c9d6f2428429c1b9aa483c7441b05
|
|
4
|
+
data.tar.gz: 93ec0d7d278519991fa1e6e94ec9915926eea50a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da01327a34f53b3ba30471ebcbc0efa5de55005512b17bd20683721f051c1c350db7118fbd43b3ea7a18cf5cad98c8d44c36162d013bc453f6da4b30c2e88a4f
|
|
7
|
+
data.tar.gz: 671f0968893e0f819361846ef9338589e6cfbd614e37fa429c8e4d660e6455e974c969eecd7152d2bcaaa5596d84d38305f818108f91972c0904bb8afe6af939
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
# 2.0.4 /
|
|
1
|
+
# 2.0.4 / 2019-07-24
|
|
2
|
+
|
|
3
|
+
This is a bug fix release to address a logic issue for supporting docker
|
|
4
|
+
versions when attempting to configure a docker proxy.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Bug Fixes:
|
|
8
|
+
- https://github.com/tmatilai/vagrant-proxyconf/issues/197
|
|
2
9
|
|
|
3
10
|
# 2.0.3 / 2019-07-23
|
|
4
11
|
|
|
@@ -197,10 +197,11 @@ module VagrantPlugins
|
|
|
197
197
|
|
|
198
198
|
# https://docs.docker.com/network/proxy/#configure-the-docker-client
|
|
199
199
|
# if docker version >= 17.07 it supports config.json
|
|
200
|
-
return true if major >= 17 && minor >= 7
|
|
201
|
-
|
|
202
200
|
# docker version < 17.07 so it does not support config.json
|
|
203
|
-
return false
|
|
201
|
+
return false if major <= 17 && minor < 7
|
|
202
|
+
|
|
203
|
+
# docker version must be >= 17.07 so we return true
|
|
204
|
+
return true
|
|
204
205
|
end
|
|
205
206
|
|
|
206
207
|
def supports_systemd?
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-proxyconf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Teemu Matilainen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-07-
|
|
11
|
+
date: 2019-07-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A Vagrant plugin that configures the virtual machine to use proxy servers
|
|
14
14
|
email:
|