vagrant-proxyconf 1.0.0.rc1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGELOG.md +3 -1
- data/lib/vagrant-proxyconf/plugin.rb +4 -0
- data/lib/vagrant-proxyconf/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MjMwNWI4YzNjYmJjMTkyMGU4M2VmMjdmM2M4MjA2NTEzZjY2NDk4Zg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDFkOTMxOWU2ZTE4NWI0NGE5YjhmMDZhNTE4ZjRmYTVjY2RmNzRhMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NTE4MjQ2NWU1ZjgyMmM5ZDg0ODlhMGI0MDU4ZmEzZWJmOTBlZjA0NTk5ZWM4
|
10
|
+
Mjk1NDZhYmJmMzljMzViNjNkMDFkNWI1ODAxMzE5ZTgzZmYxNzg0ZGY4MDdh
|
11
|
+
ZmQ3MzYzZDQ1MWYyYmUzZTg5ODNiZDY2MDBjY2QyNTZkNGZmNjQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Y2RmN2Q2NjQ3YzQ3YjFkNWM1OWZjN2ExOGUyMjg1OGRkMDdkYTgyYmFkZTI5
|
14
|
+
ZTAxYWQ5Zjk0ZDVjMmI2OWUyNDUyZjk2YWUwOWFmY2ExMTE0MTg1MzVkMDA2
|
15
|
+
NTY2NGY3MDBlZTJhNjY1MjQ0YTE1ZWJjMjkyZTI2NDMwMGIxYjM=
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
# 1.0.0
|
1
|
+
# 1.0.0 / 2013-11-05
|
2
2
|
|
3
3
|
- Add support for configuring Yum directly (not only via global env vars) ([GH-4][])
|
4
4
|
- Remove the target path before uploading files to VM to avoid permission problems ([GH-32][])
|
5
|
+
- Disable environment variable setting on CoreOS ([GH-35][])
|
5
6
|
|
6
7
|
# 0.6.0 / 2013-10-15
|
7
8
|
|
@@ -89,3 +90,4 @@
|
|
89
90
|
[GH-29]: https://github.com/tmatilai/vagrant-proxyconf/issues/29 "Issue 29"
|
90
91
|
[GH-30]: https://github.com/tmatilai/vagrant-proxyconf/issues/30 "Issue 30"
|
91
92
|
[GH-32]: https://github.com/tmatilai/vagrant-proxyconf/issues/32 "Issue 32"
|
93
|
+
[GH-35]: https://github.com/tmatilai/vagrant-proxyconf/issues/35 "Issue 35"
|
@@ -82,6 +82,10 @@ module VagrantPlugins
|
|
82
82
|
Cap::Linux::EnvProxyConf
|
83
83
|
end
|
84
84
|
|
85
|
+
guest_capability 'coreos', 'env_proxy_conf' do
|
86
|
+
# disabled on CoreOS
|
87
|
+
end
|
88
|
+
|
85
89
|
guest_capability 'redhat', 'yum_proxy_conf' do
|
86
90
|
require_relative 'cap/redhat/yum_proxy_conf'
|
87
91
|
Cap::Redhat::YumProxyConf
|
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: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Teemu Matilainen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-11-05 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:
|
@@ -104,9 +104,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
104
|
version: '0'
|
105
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
|
-
- - ! '
|
107
|
+
- - ! '>='
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
109
|
+
version: '0'
|
110
110
|
requirements: []
|
111
111
|
rubyforge_project:
|
112
112
|
rubygems_version: 2.1.4
|