vagrant-ca-certificates 1.0.2 → 1.1.0

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
  SHA1:
3
- metadata.gz: 8784848a5643a4e349cab6d9b221cbdef4e04876
4
- data.tar.gz: fc760febe565f144ee67a9b5aed2549779bab109
3
+ metadata.gz: 9b6271d128268faabaeded4ede2afd02b0d2bdb4
4
+ data.tar.gz: 699aa70efd0dc0722e6e544f02f8dbf7f52b0143
5
5
  SHA512:
6
- metadata.gz: eee07d1e8ba330c545090cc2d0b50297a4b93386fcf0e6ce99ffbd57ec52c2c46f48a8a04105279ae6b50259e71b8bae088a9fc6a7397ad92013a1d57ee3a917
7
- data.tar.gz: acbb68a3f36f9384c4d09302f592c7ae163ac0f3f5145cd67495dadd64158af004ba5e128b61fc09aca3241708c8e48c3c33f04d12d60cf32587a4908e3cd807
6
+ metadata.gz: f3d9f2fb13cecfe45fa40e30baa2c9580a23bd790ef61818348138cf0107715d213422689e262a7d2f7df5d5bf8362173040585ae158eb771696735820312131
7
+ data.tar.gz: 7a7716c95dd4623f05fa0c6bc290f2b0777d89059271904d202d7ceee68c584e78182455cf32551617facb246d360b29a426abab866aa28755724e65884873c0
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/.gitignore CHANGED
@@ -15,3 +15,4 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+ .DS_Store
data/LICENSE CHANGED
@@ -1,8 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2014 William Bailey (<mail@williambailey.org.uk>)
4
- Copyright (c) 2014, 2015 John Bellone (<jbellone@bloomberg.net>)
5
- Copyright (c) 2014, 2015 Bloomberg Finance L.P.
3
+ Copyright 2014-2016, Bloomberg Finance L.P.
6
4
 
7
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
8
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,18 +1,16 @@
1
1
  # CA Certificate Plugin for Vagrant
2
- <span class="badges">
3
2
  ![Gem Version](https://img.shields.io/gem/v/vagrant-ca-certificates.svg)
4
3
  ![Build Status](https://img.shields.io/travis/williambailey/vagrant-ca-certificates.svg)
5
4
  ![License](https://img.shields.io/github/license/williambailey/vagrant-ca-certificates.svg)
6
- </span>
7
5
 
8
- A [Vagrant][4] plugin which configures the virtual machine to inject the
9
- specified certificates into the guest's root bundle. This is useful, for example,
10
- if your enterprise network has a firewall (or appliance) which utilizes
11
- [SSL interception][5].
6
+ A [Vagrant][4] plugin which configures the virtual machine to inject
7
+ the specified certificates into the guest's root bundle. This is
8
+ useful, for example, if your enterprise network has a firewall (or
9
+ appliance) which utilizes [SSL interception][5].
12
10
 
13
11
  _Warning:_ This plugin adds certificates to the guest operating
14
- system's [root certificate bundle][6]. You should only use this if you know
15
- *exactly* what you are doing. This should *never* be used on a
12
+ system's [root certificate bundle][6]. You should only use this if you
13
+ know *exactly* what you are doing. This should *never* be used on a
16
14
  production machine.
17
15
 
18
16
  ## Installation
@@ -42,23 +40,20 @@ both the proxies and inject in our new certificate bundles.
42
40
 
43
41
  If you're following the complete tutorial here we're going to save
44
42
  this file in a newly created directory
45
- `~/.kitchen/Vagrantfile.rb`. This will be merged into the final
43
+ `~/.vagrant.d/Vagrantfile`. This will be merged into the final
46
44
  Vagrantfile configuration that the test-kitchen run will use to
47
45
  provision a new instance.
48
46
  ```ruby
49
- # These are requirements for this base Vagrantfile. If they are not
50
- # installed there will be a warning message with Vagrant/test-kitchen.
51
- %w(vagrant-ca-certificates vagrant-proxyconf).each do |name|
52
- fail "Please install the '#{name}' plugin!" unless Vagrant.has_plugin?(name)
53
- end
54
-
55
47
  Vagrant.configure('2') do |config|
56
- config.proxy.enabled = true
57
- config.ca_certificates.enabled = true
58
- config.ca_certificates.certs = [
59
- '/etc/pki/ca-trust/source/anchors/root.crt',
60
- '/etc/pki/ca-trust/source/anchors/sub.crt'
61
- ]
48
+ config.proxy.enabled = true if Vagrant.has_plugin?('vagrant-proxyconf')
49
+
50
+ if Vagrant.has_plugin?('vagrant-ca-certificates')
51
+ config.ca_certificates.enabled = true
52
+ config.ca_certificates.certs = [
53
+ '/etc/pki/ca-trust/source/anchors/root.crt',
54
+ '/etc/pki/ca-trust/source/anchors/sub.crt'
55
+ ]
56
+ end
62
57
  end
63
58
  ```
64
59
  ### Writing a .kitchen.local.yml
@@ -77,8 +72,6 @@ test-kitchen runs for this user (on this host machine).
77
72
  ---
78
73
  driver:
79
74
  provision: true
80
- vagrantfiles:
81
- - "/home/jbellone/.kitchen/Vagrantfile"
82
75
  http_proxy: "http://proxy.corporate.com:80"
83
76
  https_proxy: "http://proxy.corporate.com:80"
84
77
  ftp_proxy: "http://proxy.corporate.com:80"
@@ -93,8 +86,10 @@ the specified certificates.
93
86
 
94
87
  ```ruby
95
88
  Vagrant.configure('2') do |config|
96
- config.ca_certificates.enabled = true
97
- config.ca_certificates.certs = Dir.glob('/etc/pki/ca-trust/source/anchors/*.crt')
89
+ if Vagrant.has_plugin?('vagrant-ca-certificates')
90
+ config.ca_certificates.enabled = true
91
+ config.ca_certificates.certs = Dir.glob('/etc/pki/ca-trust/source/anchors/*.crt')
92
+ end
98
93
  end
99
94
  ```
100
95
  ### System Wide
data/certs/jbellone.pem CHANGED
@@ -1,21 +1,21 @@
1
1
  -----BEGIN CERTIFICATE-----
2
2
  MIIDgDCCAmigAwIBAgIBATANBgkqhkiG9w0BAQUFADBDMREwDwYDVQQDDAhqYmVs
3
3
  bG9uZTEZMBcGCgmSJomT8ixkARkWCWJsb29tYmVyZzETMBEGCgmSJomT8ixkARkW
4
- A25ldDAeFw0xNTA1MTIxMTQ4MDBaFw0xNjA1MTExMTQ4MDBaMEMxETAPBgNVBAMM
4
+ A25ldDAeFw0xNjAzMjUxNTE3MDBaFw0xNzAzMjUxNTE3MDBaMEMxETAPBgNVBAMM
5
5
  CGpiZWxsb25lMRkwFwYKCZImiZPyLGQBGRYJYmxvb21iZXJnMRMwEQYKCZImiZPy
6
- LGQBGRYDbmV0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx80/n6+x
7
- 5RI+ugGdqXig+hULz8KlkE5VbEetK00aeeaMKlcWcHSd1bSAHEmiNsLtLyvpJDOg
8
- 8s9tJhRgb34HokvDeXBnHJGWMr5cS4dMJhLqKuVzslxxcqfxBp3UeIjpWWlSix4H
9
- QdNE9voUcZ+EhlARCoVScZRlGONt/Vx4zGA/Z259Mv0BMwNkR1zMYejSBJ2k/yip
10
- qOqEoCxR7n1CtXlFkHuIVdS/cdqFMHs2aKjcWknWn0sgEuaoXoySZ3NKlRUm9oER
11
- eufdhsTJrqO0N7WACPNyVKPCEFByYV+VsMY4JkD2P4LLa8dZ5ZHAysMLwsuTXLoP
12
- YwfNJXVwfnOcrwIDAQABo38wfTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
13
- HQ4EFgQUY9aHNhMeBN0eUu5BCTQlwYcyiS0wIQYDVR0RBBowGIEWamJlbGxvbmVA
6
+ LGQBGRYDbmV0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyDwDDHlv
7
+ /vbyDlq/oYcNre6qfpr58Qos9T4n8ABVBectWagwrF6ri3FD+bw4p2z+jM23juEI
8
+ sZlZzIe0BR8bcZ4W2mBgBG1dEx68wp2F1daiYDHDsVG5QyInIl6rL+v2bluyQe2x
9
+ iZsWmBq6Q+6LIzaXHJW3SolNjmjptIgLl23+cVHAhdhUIbhP6bplN59rSkuLuW89
10
+ M5oipDLxEUeKJcG39zhfyd15zitVzYK1bDaej87CmdRfjjrygHHtoubqMSQ2KEBl
11
+ auz3tAj1xaGJ+q+HnSe0fRmZ6kCrpisbb9qYj3CbNMc67+kiSbtnGLiODU0I8m2c
12
+ 9Azk4af90dtVawIDAQABo38wfTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
13
+ HQ4EFgQU9m/oCgBsK/LiEnJergG4+zrzAi4wIQYDVR0RBBowGIEWamJlbGxvbmVA
14
14
  Ymxvb21iZXJnLm5ldDAhBgNVHRIEGjAYgRZqYmVsbG9uZUBibG9vbWJlcmcubmV0
15
- MA0GCSqGSIb3DQEBBQUAA4IBAQCE38N8KnGIdcPSSogX7cMk20tgP57i5kB2Ahwh
16
- q9RM5bVyWlYyRiqN9C1EtMjrpwYrImmlDVJjqcL5cVF8KbAFxL4rMZkOcWnINxE7
17
- ieN0JbYiH7gfXNKHAF6DOZD3k3RgGpQpYMjqSduTTXd+mTZ90DGww7zUXONZEkW+
18
- 5FZzj2l3YNQUqohN9LtgnwZBhFo9LPrUkRdtvgw74FM/h4tsToI2buSKN1nGTWBW
19
- cKcRBHKYVo5pQ0zs2WJv6Qwa8KhCS5HlABy/3x2Mqt6reHGppi7nVC4nUt/B1y/9
20
- e2Nj035zG32VLvxrvP4OKOJJlV2dnn0CyZeQYgpZ5+d1C/lz
15
+ MA0GCSqGSIb3DQEBBQUAA4IBAQBHzDpoIdfVZIavF0uJjG4dW47HvXBmOSC0n5Zf
16
+ FjXJ47as6U+ynNRlFvpFFytTRcO2jEPohGAmO65IXQYb2SEWlMaB6vaunqvi0BZN
17
+ qCfkC6g4qimHOo9JUsQ88skOXkpGx5dM+ycTr53OhLLlludTXj7CUrXEEs0Ds1H/
18
+ afxF46lNt1TGfyd1NVgDbjQ1QnBno0thcnCCiWPGy9/qk9ZLqa8UlsbKyVjLJTKX
19
+ +0r315TUT0v4D2npGY965XWSB39BXVqK3AOzHACU/bSVSN/6vnUOgaigSMz1x9tl
20
+ tH/pmY+pJ/jAXtK2qBNffivjLiKv4y3nYcLrxdmENe3gBt6A
21
21
  -----END CERTIFICATE-----
@@ -0,0 +1,13 @@
1
+ module VagrantPlugins
2
+ module CaCertificates
3
+ module Cap
4
+ module CoreOS
5
+ module CertificateFileBundle
6
+ def self.certificate_file_bundle(m)
7
+ '/etc/ssl/certs/ca-certificates.crt'
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ module VagrantPlugins
2
+ module CaCertificates
3
+ module Cap
4
+ module CoreOS
5
+ module CertificateUploadPath
6
+ def self.certificate_upload_path(m)
7
+ '/etc/ssl/certs'
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,20 @@
1
+ module VagrantPlugins
2
+ module CaCertificates
3
+ module Cap
4
+ module CoreOS
5
+ # Capability for configuring the certificate bundle on CoreOS.
6
+ module UpdateCertificateBundle
7
+ def self.update_certificate_bundle(m)
8
+ m.communicate.sudo("ls /etc/ssl/certs | awk '{print \"private/\"$1;}' >> /etc/ca-certificates.conf") # enable our custom certs
9
+ m.communicate.sudo('update-ca-certificates') do |type, data|
10
+ if [:stderr, :stdout].include?(type)
11
+ next if data =~ /stdin: is not a tty/
12
+ m.env.ui.info data
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -7,7 +7,7 @@ module VagrantPlugins
7
7
  # bundles must be managed manually.
8
8
  def self.legacy_certificate_bundle?(sh)
9
9
  command = %q(R=$(sed -E "s/.* ([0-9])\.([0-9]+) .*/\\1.\\2/" /etc/redhat-release))
10
- sh.test(%Q(#{command} && [[ $R =~ ^5 || $R =~ ^6\.[0-4]+ ]]), shell: '/bin/bash') || !sh.test("rpm -q --verify --nomtime ca-certificates", shell:'/bin/bash')
10
+ sh.test(%Q(#{command} && [[ $R =~ ^5 || $R =~ ^6\.[0-4]+ ]]), shell: '/bin/bash') || !sh.test("rpm -q ca-certificates", shell:'/bin/bash')
11
11
  end
12
12
  end
13
13
  end
@@ -9,7 +9,13 @@ module VagrantPlugins
9
9
  def self.update_certificate_bundle(m)
10
10
  m.communicate.tap do |sh|
11
11
  if Redhat.legacy_certificate_bundle?(sh)
12
- sh.sudo('find /etc/pki/tls/private -type f -exec cat {} \; | cat /etc/pki/tls/certs/ca-bundle.crt - > /etc/pki/tls/ca.private.crt')
12
+ sh.sudo(<<-SCRIPT)
13
+ BUNDLE=/etc/pki/tls/certs/ca-bundle.crt;
14
+ PRIVATE=/etc/pki/tls/ca.private.crt;
15
+ if ! [ "$(readlink $BUNDLE)" == "$PRIVATE" ]; then
16
+ find /etc/pki/tls/private -type f -exec cat {} \\; | cat $BUNDLE - > $PRIVATE ;
17
+ fi
18
+ SCRIPT
13
19
  sh.sudo('/bin/ln -fsn /etc/pki/tls/ca.private.crt /etc/pki/tls/cert.pem')
14
20
  sh.sudo('/bin/ln -fsn /etc/pki/tls/ca.private.crt /etc/pki/tls/certs/ca-bundle.crt')
15
21
  sh.execute(<<-SCRIPT, shell: '/bin/bash', sudo: true)
@@ -34,6 +34,11 @@ module VagrantPlugins
34
34
  Cap::Redhat::UpdateCertificateBundle
35
35
  end
36
36
 
37
+ guest_capability('coreos', 'update_certificate_bundle') do
38
+ require_relative 'cap/coreos/update_certificate_bundle'
39
+ Cap::CoreOS::UpdateCertificateBundle
40
+ end
41
+
37
42
  guest_capability('debian', 'certificate_upload_path') do
38
43
  require_relative 'cap/debian/certificate_upload_path'
39
44
  Cap::Debian::CertificateUploadPath
@@ -44,6 +49,11 @@ module VagrantPlugins
44
49
  Cap::Redhat::CertificateUploadPath
45
50
  end
46
51
 
52
+ guest_capability('coreos', 'certificate_upload_path') do
53
+ require_relative 'cap/coreos/certificate_upload_path'
54
+ Cap::CoreOS::CertificateUploadPath
55
+ end
56
+
47
57
  guest_capability('debian', 'certificate_file_bundle') do
48
58
  require_relative 'cap/debian/certificate_file_bundle'
49
59
  Cap::Debian::CertificateFileBundle
@@ -53,6 +63,11 @@ module VagrantPlugins
53
63
  require_relative 'cap/redhat/certificate_file_bundle'
54
64
  Cap::Redhat::CertificateFileBundle
55
65
  end
66
+
67
+ guest_capability('coreos', 'certificate_file_bundle') do
68
+ require_relative 'cap/coreos/certificate_file_bundle'
69
+ Cap::CoreOS::CertificateFileBundle
70
+ end
56
71
  end
57
72
  end
58
73
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module CaCertificates
3
- VERSION = '1.0.2'
3
+ VERSION = '1.1.0'
4
4
  end
5
5
  end
@@ -0,0 +1,5 @@
1
+ require 'vagrant-ca-certificates/cap/coreos/certificate_upload_path'
2
+ require 'spec_helper'
3
+
4
+ describe VagrantPlugins::CaCertificates::Cap::CoreOS::CertificateUploadPath do
5
+ end
@@ -0,0 +1,5 @@
1
+ require 'vagrant-ca-certificates/cap/coreos/update_certificate_bundle'
2
+ require 'spec_helper'
3
+
4
+ describe VagrantPlugins::CaCertificates::Cap::CoreOS::UpdateCertificateBundle do
5
+ end
@@ -25,5 +25,4 @@ Gem::Specification.new do |spec|
25
25
  spec.signing_key = File.expand_path(File.join(Dir.home, '.gem', 'gem-private_key.pem')) if $0 =~ /gem\z/
26
26
 
27
27
  spec.add_development_dependency 'bundler', '~> 1.7'
28
- spec.add_development_dependency 'rake'
29
28
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-ca-certificates
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Bailey
@@ -13,25 +13,25 @@ cert_chain:
13
13
  -----BEGIN CERTIFICATE-----
14
14
  MIIDgDCCAmigAwIBAgIBATANBgkqhkiG9w0BAQUFADBDMREwDwYDVQQDDAhqYmVs
15
15
  bG9uZTEZMBcGCgmSJomT8ixkARkWCWJsb29tYmVyZzETMBEGCgmSJomT8ixkARkW
16
- A25ldDAeFw0xNTA1MTIxMTQ4MDBaFw0xNjA1MTExMTQ4MDBaMEMxETAPBgNVBAMM
16
+ A25ldDAeFw0xNjAzMjUxNTE3MDBaFw0xNzAzMjUxNTE3MDBaMEMxETAPBgNVBAMM
17
17
  CGpiZWxsb25lMRkwFwYKCZImiZPyLGQBGRYJYmxvb21iZXJnMRMwEQYKCZImiZPy
18
- LGQBGRYDbmV0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx80/n6+x
19
- 5RI+ugGdqXig+hULz8KlkE5VbEetK00aeeaMKlcWcHSd1bSAHEmiNsLtLyvpJDOg
20
- 8s9tJhRgb34HokvDeXBnHJGWMr5cS4dMJhLqKuVzslxxcqfxBp3UeIjpWWlSix4H
21
- QdNE9voUcZ+EhlARCoVScZRlGONt/Vx4zGA/Z259Mv0BMwNkR1zMYejSBJ2k/yip
22
- qOqEoCxR7n1CtXlFkHuIVdS/cdqFMHs2aKjcWknWn0sgEuaoXoySZ3NKlRUm9oER
23
- eufdhsTJrqO0N7WACPNyVKPCEFByYV+VsMY4JkD2P4LLa8dZ5ZHAysMLwsuTXLoP
24
- YwfNJXVwfnOcrwIDAQABo38wfTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
25
- HQ4EFgQUY9aHNhMeBN0eUu5BCTQlwYcyiS0wIQYDVR0RBBowGIEWamJlbGxvbmVA
18
+ LGQBGRYDbmV0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyDwDDHlv
19
+ /vbyDlq/oYcNre6qfpr58Qos9T4n8ABVBectWagwrF6ri3FD+bw4p2z+jM23juEI
20
+ sZlZzIe0BR8bcZ4W2mBgBG1dEx68wp2F1daiYDHDsVG5QyInIl6rL+v2bluyQe2x
21
+ iZsWmBq6Q+6LIzaXHJW3SolNjmjptIgLl23+cVHAhdhUIbhP6bplN59rSkuLuW89
22
+ M5oipDLxEUeKJcG39zhfyd15zitVzYK1bDaej87CmdRfjjrygHHtoubqMSQ2KEBl
23
+ auz3tAj1xaGJ+q+HnSe0fRmZ6kCrpisbb9qYj3CbNMc67+kiSbtnGLiODU0I8m2c
24
+ 9Azk4af90dtVawIDAQABo38wfTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
25
+ HQ4EFgQU9m/oCgBsK/LiEnJergG4+zrzAi4wIQYDVR0RBBowGIEWamJlbGxvbmVA
26
26
  Ymxvb21iZXJnLm5ldDAhBgNVHRIEGjAYgRZqYmVsbG9uZUBibG9vbWJlcmcubmV0
27
- MA0GCSqGSIb3DQEBBQUAA4IBAQCE38N8KnGIdcPSSogX7cMk20tgP57i5kB2Ahwh
28
- q9RM5bVyWlYyRiqN9C1EtMjrpwYrImmlDVJjqcL5cVF8KbAFxL4rMZkOcWnINxE7
29
- ieN0JbYiH7gfXNKHAF6DOZD3k3RgGpQpYMjqSduTTXd+mTZ90DGww7zUXONZEkW+
30
- 5FZzj2l3YNQUqohN9LtgnwZBhFo9LPrUkRdtvgw74FM/h4tsToI2buSKN1nGTWBW
31
- cKcRBHKYVo5pQ0zs2WJv6Qwa8KhCS5HlABy/3x2Mqt6reHGppi7nVC4nUt/B1y/9
32
- e2Nj035zG32VLvxrvP4OKOJJlV2dnn0CyZeQYgpZ5+d1C/lz
27
+ MA0GCSqGSIb3DQEBBQUAA4IBAQBHzDpoIdfVZIavF0uJjG4dW47HvXBmOSC0n5Zf
28
+ FjXJ47as6U+ynNRlFvpFFytTRcO2jEPohGAmO65IXQYb2SEWlMaB6vaunqvi0BZN
29
+ qCfkC6g4qimHOo9JUsQ88skOXkpGx5dM+ycTr53OhLLlludTXj7CUrXEEs0Ds1H/
30
+ afxF46lNt1TGfyd1NVgDbjQ1QnBno0thcnCCiWPGy9/qk9ZLqa8UlsbKyVjLJTKX
31
+ +0r315TUT0v4D2npGY965XWSB39BXVqK3AOzHACU/bSVSN/6vnUOgaigSMz1x9tl
32
+ tH/pmY+pJ/jAXtK2qBNffivjLiKv4y3nYcLrxdmENe3gBt6A
33
33
  -----END CERTIFICATE-----
34
- date: 2015-05-14 00:00:00.000000000 Z
34
+ date: 2016-03-25 00:00:00.000000000 Z
35
35
  dependencies:
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: bundler
@@ -47,20 +47,6 @@ dependencies:
47
47
  - - "~>"
48
48
  - !ruby/object:Gem::Version
49
49
  version: '1.7'
50
- - !ruby/object:Gem::Dependency
51
- name: rake
52
- requirement: !ruby/object:Gem::Requirement
53
- requirements:
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- version: '0'
57
- type: :development
58
- prerelease: false
59
- version_requirements: !ruby/object:Gem::Requirement
60
- requirements:
61
- - - ">="
62
- - !ruby/object:Gem::Version
63
- version: '0'
64
50
  description: |2
65
51
  A Vagrant plugin that installs CA certificates onto the virtual machine.
66
52
  This is useful, for example, in the case where you are behind a corporate proxy
@@ -83,6 +69,9 @@ files:
83
69
  - certs/jbellone.pem
84
70
  - lib/vagrant-ca-certificates.rb
85
71
  - lib/vagrant-ca-certificates/action/install_certificates.rb
72
+ - lib/vagrant-ca-certificates/cap/coreos/certificate_file_bundle.rb
73
+ - lib/vagrant-ca-certificates/cap/coreos/certificate_upload_path.rb
74
+ - lib/vagrant-ca-certificates/cap/coreos/update_certificate_bundle.rb
86
75
  - lib/vagrant-ca-certificates/cap/debian/certificate_file_bundle.rb
87
76
  - lib/vagrant-ca-certificates/cap/debian/certificate_upload_path.rb
88
77
  - lib/vagrant-ca-certificates/cap/debian/update_certificate_bundle.rb
@@ -96,6 +85,8 @@ files:
96
85
  - locales/en.yml
97
86
  - spec/spec_helper.rb
98
87
  - spec/unit/vagrant-ca-certificates/action/install_certificates_spec.rb
88
+ - spec/unit/vagrant-ca-certificates/cap/coreos/certificate_upload_path_spec.rb
89
+ - spec/unit/vagrant-ca-certificates/cap/coreos/update_certificate_bundle_spec.rb
99
90
  - spec/unit/vagrant-ca-certificates/cap/debian/certificate_upload_path_spec.rb
100
91
  - spec/unit/vagrant-ca-certificates/cap/debian/update_certificate_bundle_spec.rb
101
92
  - spec/unit/vagrant-ca-certificates/cap/redhat/certificate_upload_path_spec.rb
@@ -129,8 +120,11 @@ summary: A Vagrant plugin that installs CA certificates onto the virtual machine
129
120
  test_files:
130
121
  - spec/spec_helper.rb
131
122
  - spec/unit/vagrant-ca-certificates/action/install_certificates_spec.rb
123
+ - spec/unit/vagrant-ca-certificates/cap/coreos/certificate_upload_path_spec.rb
124
+ - spec/unit/vagrant-ca-certificates/cap/coreos/update_certificate_bundle_spec.rb
132
125
  - spec/unit/vagrant-ca-certificates/cap/debian/certificate_upload_path_spec.rb
133
126
  - spec/unit/vagrant-ca-certificates/cap/debian/update_certificate_bundle_spec.rb
134
127
  - spec/unit/vagrant-ca-certificates/cap/redhat/certificate_upload_path_spec.rb
135
128
  - spec/unit/vagrant-ca-certificates/cap/redhat/update_certificate_bundle_spec.rb
136
129
  - spec/unit/vagrant-ca-certificates/config_spec.rb
130
+ has_rdoc:
metadata.gz.sig CHANGED
Binary file