simp-rspec-puppet-facts 1.3.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/facts/1.7/centos-6-x86_64.facts +11 -11
  3. data/facts/1.7/centos-7-x86_64.facts +12 -12
  4. data/facts/1.7/fedora-23-x86_64.facts +106 -0
  5. data/facts/1.7/redhat-6-x86_64.facts +10 -10
  6. data/facts/2.0/centos-6-x86_64.facts +16 -13
  7. data/facts/2.0/centos-7-x86_64.facts +15 -14
  8. data/facts/2.0/fedora-23-x86_64.facts +202 -0
  9. data/facts/2.0/redhat-6-x86_64.facts +14 -12
  10. data/facts/2.1/centos-6-x86_64.facts +16 -13
  11. data/facts/2.1/centos-7-x86_64.facts +15 -14
  12. data/facts/2.1/fedora-23-x86_64.facts +220 -0
  13. data/facts/2.1/redhat-6-x86_64.facts +14 -12
  14. data/facts/2.2/centos-6-x86_64.facts +17 -14
  15. data/facts/2.2/centos-7-x86_64.facts +16 -15
  16. data/facts/2.2/fedora-23-x86_64.facts +242 -0
  17. data/facts/2.2/redhat-6-x86_64.facts +16 -14
  18. data/facts/2.3/centos-6-x86_64.facts +19 -16
  19. data/facts/2.3/centos-7-x86_64.facts +16 -15
  20. data/facts/2.3/fedora-23-x86_64.facts +243 -0
  21. data/facts/2.3/redhat-6-x86_64.facts +16 -14
  22. data/facts/2.4/centos-6-x86_64.facts +19 -16
  23. data/facts/2.4/centos-7-x86_64.facts +16 -15
  24. data/facts/2.4/fedora-23-x86_64.facts +243 -0
  25. data/facts/2.4/redhat-6-x86_64.facts +16 -14
  26. data/facts/3.0/centos-6-x86_64.facts +28 -26
  27. data/facts/3.0/centos-7-x86_64.facts +33 -31
  28. data/facts/3.0/redhat-6-x86_64.facts +24 -22
  29. data/facts/3.1/centos-6-x86_64.facts +28 -26
  30. data/facts/3.1/centos-7-x86_64.facts +33 -31
  31. data/facts/3.1/redhat-6-x86_64.facts +22 -20
  32. data/facts/3.2/centos-6-x86_64.facts +456 -0
  33. data/facts/3.2/centos-7-x86_64.facts +460 -0
  34. data/facts/3.2/fedora-23-x86_64.facts +496 -0
  35. data/facts/3.2/redhat-6-x86_64.facts +460 -0
  36. data/facts/3.3/centos-6-x86_64.facts +459 -0
  37. data/facts/3.3/centos-7-x86_64.facts +463 -0
  38. data/facts/3.3/fedora-23-x86_64.facts +499 -0
  39. data/facts/3.3/redhat-6-x86_64.facts +461 -0
  40. data/facts/3.4/centos-6-x86_64.facts +460 -0
  41. data/facts/3.4/centos-7-x86_64.facts +464 -0
  42. data/facts/3.4/fedora-23-x86_64.facts +500 -0
  43. data/facts/3.4/redhat-6-x86_64.facts +462 -0
  44. data/facts/Vagrantfile +14 -4
  45. data/facts/scripts/get_facts.rb +2 -1
  46. data/facts/scripts/get_facts_for_each_facter.sh +56 -19
  47. data/lib/simp/rspec-puppet-facts.rb +2 -0
  48. data/lib/simp/version.rb +1 -1
  49. metadata +87 -52
data/facts/Vagrantfile CHANGED
@@ -10,25 +10,35 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
10
10
  config.vm.define "redhat-6-x86_64" do |host|
11
11
  host.vm.box = "anandbitra/redhat-6.5"
12
12
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
13
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "6"
13
+ host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'redhat 6'"
14
14
  host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
15
15
  end
16
+
16
17
  config.vm.define "redhat-7-x86_64" do |host|
17
18
  host.vm.box = "mrlesmithjr/rhel-7"
18
19
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
19
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "7"
20
+ host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'redhat 7'"
20
21
  host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
21
22
  end
23
+
22
24
  config.vm.define "centos-6-x86_64" do |host|
23
25
  host.vm.box = "puppetlabs/centos-6.6-64-nocm"
24
26
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
25
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "6"
27
+ host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'centos 6'"
26
28
  host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
27
29
  end
30
+
28
31
  config.vm.define "centos-7-x86_64" do |host|
29
32
  host.vm.box = "puppetlabs/centos-7.0-64-nocm"
30
33
  host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
31
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "7"
34
+ host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'centos 7'"
35
+ host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
36
+ end
37
+
38
+ config.vm.define "fedora-23-x86_64" do |host|
39
+ host.vm.box = "box-cutter/fedora23"
40
+ host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
41
+ host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'fedora 23'"
32
42
  host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
33
43
  end
34
44
  end
@@ -5,4 +5,5 @@ require 'facter'
5
5
  ENV['FACTERLIB'].split(':').each{|x| Facter.search x }
6
6
 
7
7
  Puppet.initialize_settings
8
- jj JSON.parse Facter.collection.to_h.to_json
8
+ Facter.loadfacts
9
+ jj JSON.parse Facter.collection.to_hash.to_json
@@ -1,43 +1,80 @@
1
1
  #!/bin/bash
2
- operatingsystemmajrelease=$1
2
+ operatingsystem=$( echo "$1" | cut -f1 -d' ' )
3
+ operatingsystemmajrelease=$( echo "$1" | cut -f2 -d' ' )
4
+
5
+ if [ -z "$operatingsystem" ] || [ -z "$operatingsystemmajrelease" ]; then
6
+ echo "You must pass an operating system and version to $0"
7
+ exit 1
8
+ fi
9
+
10
+ if [ "$operatingsystem" == "$operatingsystemmajrelease" ]; then
11
+ echo "Your OS is the same as your version and this does not make sense"
12
+ exit 1
13
+ fi
14
+
3
15
  export PATH=/opt/puppetlabs/bin:$PATH
4
16
  export FACTERLIB=`ls -1d /vagrant/modules/*/lib/facter | tr '\n' ':'`
5
17
 
6
- wget "https://yum.puppetlabs.com/puppetlabs-release-pc1-el-${operatingsystemmajrelease}.noarch.rpm" -O /tmp/puppetlabs-release-pc1.rpm
7
- rpm -ivh /tmp/puppetlabs-release-pc1.rpm
18
+ which dnf > /dev/null 2>&1
19
+ if [ $? -eq 0 ]; then
20
+ rpm_cmd='dnf --best --allowerasing'
21
+ else
22
+ rpm_cmd='yum --skip-broken'
23
+ fi
24
+
25
+ if [ "${operatingsystem}" != 'fedora' ]; then
26
+ plabs_ver='el'
27
+
28
+ $rpm_cmd install -y --nogpgcheck https://dl.fedoraproject.org/pub/epel/epel-release-latest-${operatingsystemmajrelease}.noarch.rpm
29
+ else
30
+ plabs_ver=$operatingsystem
31
+ fi
8
32
 
9
- # Because `yum install epel-release -y` doesn't work for RedHat:
10
- wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-${operatingsystemmajrelease}.noarch.rpm
11
- rpm -Uvh epel-release-latest-${operatingsystemmajrelease}*.rpm
33
+ $rpm_cmd install -y --nogpgcheck "https://yum.puppetlabs.com/puppetlabs-release-pc1-${plabs_ver}-${operatingsystemmajrelease}.noarch.rpm"
12
34
 
35
+ # Prereqs
36
+ $rpm_cmd install -y facter rubygem-bundler git augeas-devel \
37
+ libicu-devel libxml2 libxml2-devel libxslt libxslt-devel \
38
+ gcc gcc-c++ ruby-devel audit
39
+
40
+ rpm -qi puppet > /dev/null && $rpm_cmd remove -y puppet
13
41
 
14
42
  # Capture data for (c)facter 3.X
15
- for puppet_agent_version in 1.2.2 1.2.7; do
16
- yum install -y puppet-agent-${puppet_agent_version} rubygems git ruby-devel
17
- output_dir="/vagrant/$(facter --version | cut -c1-3)"
18
- output_file="$(facter operatingsystem | tr '[:upper:]' '[:lower:]')-$(facter operatingsystemmajrelease)-$(facter hardwaremodel).facts"
43
+ for puppet_agent_version in 1.2.2 1.2.7 1.5.3 1.6.0; do
44
+ rpm -qi puppet-agent > /dev/null && $rpm_cmd remove -y puppet-agent
45
+ $rpm_cmd install -y puppet-agent-$puppet_agent_version
46
+ facter_version=$( facter --version | cut -c1-3 )
47
+ output_dir="/vagrant/${facter_version}"
48
+ echo
49
+ echo "---------------- facter: '${facter_version}' puppet agent version: '${puppet_agent_version}'"
50
+ echo
51
+ output_file="$( facter operatingsystem | tr '[:upper:]' '[:lower:]' )-$( facter operatingsystemmajrelease )-$( facter hardwaremodel ).facts"
19
52
  mkdir -p $output_dir
20
53
  puppet facts | tee "${output_dir}/${output_file}"
21
54
  done
22
55
 
23
- operatingsystem=$(facter operatingsystem | tr '[:upper:]' '[:lower:]')
24
- operatingsystemmajrelease=$(facter operatingsystemmajrelease)
25
- hardwaremodel=$(facter hardwaremodel)
56
+ operatingsystem=$( facter operatingsystem | tr '[:upper:]' '[:lower:]' )
57
+ operatingsystemmajrelease=$( facter operatingsystemmajrelease )
58
+ hardwaremodel=$( facter hardwaremodel )
59
+
60
+ rpm -qi puppet-agent > /dev/null && $rpm_cmd remove -y puppet-agent
61
+
62
+ export PUPPET_VERSION="~> 3.7"
26
63
 
27
- PATH=/opt/puppetlabs/puppet/bin:$PATH
64
+ #PATH=/opt/puppetlabs/puppet/bin:$PATH
28
65
  gem install bundler --no-ri --no-rdoc --no-format-executable
29
66
  bundle install --path vendor/bundler
30
67
 
31
68
  # Capture data for ruby-based facters
32
69
  for version in 1.7.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0; do
33
- FACTER_GEM_VERSION="~> ${version}" bundle update
34
- os_string="$(bundle exec facter --version | cut -c1-3)/${operatingsystem}-${operatingsystemmajrelease}-${hardwaremodel}"
70
+ FACTER_GEM_VERSION="~> ${version}" PUPPET_VERSION="~> 3.7" bundle update
71
+ os_string="$(FACTER_GEM_VERSION="~> ${version}" PUPPET_VERSION="~> 3.7" bundle exec facter --version | cut -c1-3)/${operatingsystem}-${operatingsystemmajrelease}-${hardwaremodel}"
35
72
  echo
36
73
  echo
37
- echo ============== ${os_string} ================
74
+ echo ============== ${os_string} ================
38
75
  echo
39
76
  echo
40
77
  output_file="/vagrant/${os_string}.facts"
41
- mkdir -p $(dirname $output_file)
42
- FACTER_GEM_VERSION="~> ${version}" bundle exec ruby /vagrant/scripts/get_facts.rb | tee $output_file
78
+ mkdir -p $( dirname $output_file )
79
+ FACTER_GEM_VERSION="~> ${version}" PUPPET_VERSION="~> 3.7" bundle exec ruby /vagrant/scripts/get_facts.rb | tee $output_file
43
80
  done
@@ -12,6 +12,8 @@ module Simp::RspecPuppetFacts
12
12
  selinux_mode = opts.fetch(:selinux_mode,:enforcing)
13
13
 
14
14
  h.each do | os, facts |
15
+ facts ||= Hash.new
16
+
15
17
  facter_version=Facter.version[0..2]
16
18
  facts_file = File.expand_path("../../facts/#{facter_version}/#{os}.facts", File.dirname(__FILE__))
17
19
  if File.file? facts_file
data/lib/simp/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Simp; end
2
2
  module Simp::RspecPuppetFacts
3
- VERSION = '1.3.0'
3
+ VERSION = '1.4.1'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simp-rspec-puppet-facts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Tessmer
@@ -9,110 +9,110 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-05-10 00:00:00.000000000 Z
12
+ date: 2016-08-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec-puppet-facts
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ~>
18
+ - - "~>"
19
19
  - !ruby/object:Gem::Version
20
20
  version: '0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: rake
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ~>
32
+ - - "~>"
33
33
  - !ruby/object:Gem::Version
34
34
  version: '10'
35
35
  type: :development
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ~>
39
+ - - "~>"
40
40
  - !ruby/object:Gem::Version
41
41
  version: '10'
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: rspec
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ~>
46
+ - - "~>"
47
47
  - !ruby/object:Gem::Version
48
48
  version: '3.2'
49
49
  type: :development
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ~>
53
+ - - "~>"
54
54
  - !ruby/object:Gem::Version
55
55
  version: '3.2'
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: json
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ~>
60
+ - - "~>"
61
61
  - !ruby/object:Gem::Version
62
62
  version: '1'
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ~>
67
+ - - "~>"
68
68
  - !ruby/object:Gem::Version
69
69
  version: '1'
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: facter
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - '>='
74
+ - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: 1.5.0
77
- - - <
77
+ - - "<"
78
78
  - !ruby/object:Gem::Version
79
79
  version: '3.0'
80
80
  type: :runtime
81
81
  prerelease: false
82
82
  version_requirements: !ruby/object:Gem::Requirement
83
83
  requirements:
84
- - - '>='
84
+ - - ">="
85
85
  - !ruby/object:Gem::Version
86
86
  version: 1.5.0
87
- - - <
87
+ - - "<"
88
88
  - !ruby/object:Gem::Version
89
89
  version: '3.0'
90
90
  - !ruby/object:Gem::Dependency
91
91
  name: pry
92
92
  requirement: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ~>
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  type: :development
98
98
  prerelease: false
99
99
  version_requirements: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ~>
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0'
104
104
  - !ruby/object:Gem::Dependency
105
105
  name: tins
106
106
  requirement: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - <
108
+ - - "<"
109
109
  - !ruby/object:Gem::Version
110
110
  version: '1.7'
111
111
  type: :development
112
112
  prerelease: false
113
113
  version_requirements: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - <
115
+ - - "<"
116
116
  - !ruby/object:Gem::Version
117
117
  version: '1.7'
118
118
  description: shim that injects SIMP-related facts into rspec-puppet-facts
@@ -126,26 +126,32 @@ files:
126
126
  - Rakefile
127
127
  - facts/1.7/centos-6-x86_64.facts
128
128
  - facts/1.7/centos-7-x86_64.facts
129
+ - facts/1.7/fedora-23-x86_64.facts
129
130
  - facts/1.7/redhat-6-x86_64.facts
130
131
  - facts/1.7/redhat-7-x86_64.facts
131
132
  - facts/2.0/centos-6-x86_64.facts
132
133
  - facts/2.0/centos-7-x86_64.facts
134
+ - facts/2.0/fedora-23-x86_64.facts
133
135
  - facts/2.0/redhat-6-x86_64.facts
134
136
  - facts/2.0/redhat-7-x86_64.facts
135
137
  - facts/2.1/centos-6-x86_64.facts
136
138
  - facts/2.1/centos-7-x86_64.facts
139
+ - facts/2.1/fedora-23-x86_64.facts
137
140
  - facts/2.1/redhat-6-x86_64.facts
138
141
  - facts/2.1/redhat-7-x86_64.facts
139
142
  - facts/2.2/centos-6-x86_64.facts
140
143
  - facts/2.2/centos-7-x86_64.facts
144
+ - facts/2.2/fedora-23-x86_64.facts
141
145
  - facts/2.2/redhat-6-x86_64.facts
142
146
  - facts/2.2/redhat-7-x86_64.facts
143
147
  - facts/2.3/centos-6-x86_64.facts
144
148
  - facts/2.3/centos-7-x86_64.facts
149
+ - facts/2.3/fedora-23-x86_64.facts
145
150
  - facts/2.3/redhat-6-x86_64.facts
146
151
  - facts/2.3/redhat-7-x86_64.facts
147
152
  - facts/2.4/centos-6-x86_64.facts
148
153
  - facts/2.4/centos-7-x86_64.facts
154
+ - facts/2.4/fedora-23-x86_64.facts
149
155
  - facts/2.4/redhat-6-x86_64.facts
150
156
  - facts/2.4/redhat-7-x86_64.facts
151
157
  - facts/3.0/centos-6-x86_64.facts
@@ -156,6 +162,18 @@ files:
156
162
  - facts/3.1/centos-7-x86_64.facts
157
163
  - facts/3.1/redhat-6-x86_64.facts
158
164
  - facts/3.1/redhat-7-x86_64.facts
165
+ - facts/3.2/centos-6-x86_64.facts
166
+ - facts/3.2/centos-7-x86_64.facts
167
+ - facts/3.2/fedora-23-x86_64.facts
168
+ - facts/3.2/redhat-6-x86_64.facts
169
+ - facts/3.3/centos-6-x86_64.facts
170
+ - facts/3.3/centos-7-x86_64.facts
171
+ - facts/3.3/fedora-23-x86_64.facts
172
+ - facts/3.3/redhat-6-x86_64.facts
173
+ - facts/3.4/centos-6-x86_64.facts
174
+ - facts/3.4/centos-7-x86_64.facts
175
+ - facts/3.4/fedora-23-x86_64.facts
176
+ - facts/3.4/redhat-6-x86_64.facts
159
177
  - facts/Gemfile
160
178
  - facts/Vagrantfile
161
179
  - facts/scripts/get_facts.rb
@@ -177,12 +195,12 @@ require_paths:
177
195
  - lib
178
196
  required_ruby_version: !ruby/object:Gem::Requirement
179
197
  requirements:
180
- - - '>='
198
+ - - ">="
181
199
  - !ruby/object:Gem::Version
182
200
  version: '0'
183
201
  required_rubygems_version: !ruby/object:Gem::Requirement
184
202
  requirements:
185
- - - '>='
203
+ - - ">="
186
204
  - !ruby/object:Gem::Version
187
205
  version: '0'
188
206
  requirements:
@@ -194,44 +212,61 @@ specification_version: 4
194
212
  summary: standard SIMP facts fixtures for Puppet
195
213
  test_files:
196
214
  - Rakefile
197
- - spec/fixtures/metadata.json_with_missing_operatingsystem_support
198
215
  - spec/fixtures/metadata.json
199
- - spec/spec_helper.rb
216
+ - spec/fixtures/metadata.json_with_missing_operatingsystem_support
200
217
  - spec/simp_rspec_puppet_facts_spec.rb
201
- - facts/2.1/redhat-7-x86_64.facts
202
- - facts/2.1/redhat-6-x86_64.facts
203
- - facts/2.1/centos-7-x86_64.facts
204
- - facts/2.1/centos-6-x86_64.facts
205
- - facts/2.0/redhat-7-x86_64.facts
218
+ - spec/spec_helper.rb
219
+ - facts/2.4/redhat-6-x86_64.facts
220
+ - facts/2.4/centos-6-x86_64.facts
221
+ - facts/2.4/redhat-7-x86_64.facts
222
+ - facts/2.4/centos-7-x86_64.facts
223
+ - facts/2.4/fedora-23-x86_64.facts
206
224
  - facts/2.0/redhat-6-x86_64.facts
207
- - facts/2.0/centos-7-x86_64.facts
208
225
  - facts/2.0/centos-6-x86_64.facts
209
- - facts/1.7/redhat-7-x86_64.facts
210
- - facts/1.7/redhat-6-x86_64.facts
211
- - facts/1.7/centos-7-x86_64.facts
212
- - facts/1.7/centos-6-x86_64.facts
213
- - facts/3.0/redhat-7-x86_64.facts
214
- - facts/3.0/redhat-6-x86_64.facts
215
- - facts/3.0/centos-7-x86_64.facts
216
- - facts/3.0/centos-6-x86_64.facts
217
- - facts/Vagrantfile
218
- - facts/3.1/redhat-7-x86_64.facts
226
+ - facts/2.0/redhat-7-x86_64.facts
227
+ - facts/2.0/centos-7-x86_64.facts
228
+ - facts/2.0/fedora-23-x86_64.facts
229
+ - facts/2.1/redhat-6-x86_64.facts
230
+ - facts/2.1/centos-6-x86_64.facts
231
+ - facts/2.1/redhat-7-x86_64.facts
232
+ - facts/2.1/centos-7-x86_64.facts
233
+ - facts/2.1/fedora-23-x86_64.facts
219
234
  - facts/3.1/redhat-6-x86_64.facts
220
- - facts/3.1/centos-7-x86_64.facts
221
235
  - facts/3.1/centos-6-x86_64.facts
222
- - facts/2.3/redhat-7-x86_64.facts
223
- - facts/2.3/redhat-6-x86_64.facts
224
- - facts/2.3/centos-7-x86_64.facts
225
- - facts/2.3/centos-6-x86_64.facts
226
- - facts/scripts/get_facts_for_each_facter.sh
227
- - facts/scripts/get_facts.rb
228
- - facts/2.2/redhat-7-x86_64.facts
236
+ - facts/3.1/redhat-7-x86_64.facts
237
+ - facts/3.1/centos-7-x86_64.facts
229
238
  - facts/2.2/redhat-6-x86_64.facts
230
- - facts/2.2/centos-7-x86_64.facts
231
239
  - facts/2.2/centos-6-x86_64.facts
232
- - facts/2.4/redhat-7-x86_64.facts
233
- - facts/2.4/redhat-6-x86_64.facts
234
- - facts/2.4/centos-7-x86_64.facts
235
- - facts/2.4/centos-6-x86_64.facts
240
+ - facts/2.2/redhat-7-x86_64.facts
241
+ - facts/2.2/centos-7-x86_64.facts
242
+ - facts/2.2/fedora-23-x86_64.facts
243
+ - facts/1.7/redhat-6-x86_64.facts
244
+ - facts/1.7/centos-6-x86_64.facts
245
+ - facts/1.7/redhat-7-x86_64.facts
246
+ - facts/1.7/centos-7-x86_64.facts
247
+ - facts/1.7/fedora-23-x86_64.facts
248
+ - facts/scripts/get_facts_for_each_facter.sh
249
+ - facts/scripts/get_facts.rb
250
+ - facts/3.3/redhat-6-x86_64.facts
251
+ - facts/3.3/centos-6-x86_64.facts
252
+ - facts/3.3/centos-7-x86_64.facts
253
+ - facts/3.3/fedora-23-x86_64.facts
254
+ - facts/3.2/redhat-6-x86_64.facts
255
+ - facts/3.2/centos-6-x86_64.facts
256
+ - facts/3.2/centos-7-x86_64.facts
257
+ - facts/3.2/fedora-23-x86_64.facts
258
+ - facts/Vagrantfile
236
259
  - facts/Gemfile
237
- has_rdoc:
260
+ - facts/2.3/redhat-6-x86_64.facts
261
+ - facts/2.3/centos-6-x86_64.facts
262
+ - facts/2.3/redhat-7-x86_64.facts
263
+ - facts/2.3/centos-7-x86_64.facts
264
+ - facts/2.3/fedora-23-x86_64.facts
265
+ - facts/3.4/redhat-6-x86_64.facts
266
+ - facts/3.4/centos-6-x86_64.facts
267
+ - facts/3.4/centos-7-x86_64.facts
268
+ - facts/3.4/fedora-23-x86_64.facts
269
+ - facts/3.0/redhat-6-x86_64.facts
270
+ - facts/3.0/centos-6-x86_64.facts
271
+ - facts/3.0/redhat-7-x86_64.facts
272
+ - facts/3.0/centos-7-x86_64.facts