vagrant-registration 0.0.7 → 0.0.8

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: 6673cf990018e4be8aed666a506fa295fb63a221
4
- data.tar.gz: 80a90d9201751177b443eca21bf20e6bfdcf7e3e
3
+ metadata.gz: 42f2db8ea11b622d6ad6dd1b691ccc5ded35c382
4
+ data.tar.gz: 3d54a94859b480f43847134eafad448fc25b4f21
5
5
  SHA512:
6
- metadata.gz: f2b228f77a49268c994f244dc19d52143a69eeea2f628d54b5fb6034744c53b73e70f3388615fe3c1a7cb3c39b12e26e738bbd60ddad7c4f576cf62ab8013d9c
7
- data.tar.gz: 04a31284b9b4369eb32d895ce35030ef34a1d93d3773e4172e2575564fbea74b3f3cb865779cdbc5fe4b23ffabcf3051d3381432554b07f3c938c2788ce42bca
6
+ metadata.gz: 597f363023a366eab93f06eb7ab900266107beeef7645372ce535559e9b0c7f1118767b67d5e308ab7b95b420d86c146bff7e28a407cfc821b95324805ade7c3
7
+ data.tar.gz: 02e667660538c40126bf11b2d01ac646b6629b23bf5e8b513475a8be3677aea78e8cc6eedc35f36850d9a8567e064a5b73d39c7f57f9c83f6efaa9ac7d4f33fc
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Registration
3
- VERSION = "0.0.7"
3
+ VERSION = "0.0.8"
4
4
  end
5
5
  end
@@ -0,0 +1,11 @@
1
+ module VagrantPlugins
2
+ module GuestRedHat
3
+ module Cap
4
+ class RedHatCertification
5
+ def self.rhcert(machine)
6
+ machine.communicate.test("/usr/bin/rhcert", sudo: true)
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -18,8 +18,8 @@ module VagrantPlugins
18
18
  Cap::SubscriptionManager
19
19
  end
20
20
 
21
- guest_capability("redhat", "container_probe_tool") do
22
- require_relative "cap/container_probe_tool"
21
+ guest_capability("redhat", "rhcert") do
22
+ require_relative "cap/redhat_certification_tool"
23
23
  Cap::ContainerProbeTool
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-registration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Langdon White
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-02-12 00:00:00.000000000 Z
12
+ date: 2015-02-18 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Enables guests to have a registration capability, this is expecially
15
15
  useful on RHEL or SLES
@@ -18,42 +18,41 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - locales/en.yml
22
- - ides.sh
23
- - vagrant-registration.gemspec
21
+ - ".gitignore"
22
+ - CHANGELOG.md
23
+ - Gemfile
24
24
  - LICENSE.md
25
- - tests/shell-scripts/test-rhel-eco-ident/Vagrantfile.fedora
26
- - tests/shell-scripts/test-rhel-eco-ident/Vagrantfile.rhel
27
- - tests/shell-scripts/test-rhel-eco-ident/Vagrantfile.centos
28
- - tests/shell-scripts/test-rhel-eco-ident/test-identification.sh
29
- - dummy.box
30
25
  - README.md
26
+ - Rakefile
31
27
  - Vagrantfile
32
- - lib/vagrant-registration/plugin.rb
33
- - lib/vagrant-registration/errors.rb
34
- - lib/vagrant-registration/action/unregister.rb
28
+ - dummy.box
29
+ - lib/vagrant-registration.rb
30
+ - lib/vagrant-registration/action.rb
35
31
  - lib/vagrant-registration/action/register.rb
32
+ - lib/vagrant-registration/action/unregister.rb
36
33
  - lib/vagrant-registration/config.rb
37
- - lib/vagrant-registration/version.rb
38
34
  - lib/vagrant-registration/env.rb
39
- - lib/vagrant-registration/action.rb
40
- - lib/vagrant-registration.rb
41
- - CHANGELOG.md
42
- - Rakefile
43
- - plugins/guests/redhat/plugin.rb
44
- - plugins/guests/redhat/cap/container_probe_tool.rb
45
- - plugins/guests/redhat/cap/unregister.rb
46
- - plugins/guests/redhat/cap/register.rb
47
- - plugins/guests/redhat/cap/subscription_manager.rb
48
- - plugins/guests/fedora/plugin.rb
49
- - plugins/guests/fedora/guest.rb
50
- - plugins/guests/fedora/cap/flavor.rb
51
- - plugins/guests/fedora/cap/nfs_client.rb
52
- - plugins/guests/fedora/cap/configure_networks.rb
35
+ - lib/vagrant-registration/errors.rb
36
+ - lib/vagrant-registration/plugin.rb
37
+ - lib/vagrant-registration/version.rb
38
+ - locales/en.yml
53
39
  - plugins/guests/fedora/cap/change_host_name.rb
40
+ - plugins/guests/fedora/cap/configure_networks.rb
41
+ - plugins/guests/fedora/cap/flavor.rb
54
42
  - plugins/guests/fedora/cap/network_scripts_dir.rb
55
- - Gemfile
56
- - .gitignore
43
+ - plugins/guests/fedora/cap/nfs_client.rb
44
+ - plugins/guests/fedora/guest.rb
45
+ - plugins/guests/fedora/plugin.rb
46
+ - plugins/guests/redhat/cap/redhat_certification_tool.rb
47
+ - plugins/guests/redhat/cap/register.rb
48
+ - plugins/guests/redhat/cap/subscription_manager.rb
49
+ - plugins/guests/redhat/cap/unregister.rb
50
+ - plugins/guests/redhat/plugin.rb
51
+ - tests/shell-scripts/test-rhel-eco-ident/Vagrantfile.centos
52
+ - tests/shell-scripts/test-rhel-eco-ident/Vagrantfile.fedora
53
+ - tests/shell-scripts/test-rhel-eco-ident/Vagrantfile.rhel
54
+ - tests/shell-scripts/test-rhel-eco-ident/test-identification.sh
55
+ - vagrant-registration.gemspec
57
56
  homepage:
58
57
  licenses:
59
58
  - GPL-2.0
@@ -64,17 +63,17 @@ require_paths:
64
63
  - lib
65
64
  required_ruby_version: !ruby/object:Gem::Requirement
66
65
  requirements:
67
- - - '>='
66
+ - - ">="
68
67
  - !ruby/object:Gem::Version
69
68
  version: '0'
70
69
  required_rubygems_version: !ruby/object:Gem::Requirement
71
70
  requirements:
72
- - - '>='
71
+ - - ">="
73
72
  - !ruby/object:Gem::Version
74
73
  version: 1.3.6
75
74
  requirements: []
76
75
  rubyforge_project: vagrant-registration
77
- rubygems_version: 2.0.14
76
+ rubygems_version: 2.2.2
78
77
  signing_key:
79
78
  specification_version: 4
80
79
  summary: Enables guests to have a registration capability
data/ides.sh DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- yum update -y
4
-
@@ -1,11 +0,0 @@
1
- module VagrantPlugins
2
- module GuestRedHat
3
- module Cap
4
- class ContainerProbeTool
5
- def self.container_probe_tool(machine)
6
- machine.communicate.test("/usr/bin/container-probe-tool", sudo: true)
7
- end
8
- end
9
- end
10
- end
11
- end