simp-rspec-puppet-facts 1.4.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -2
  3. data/facts/1.7/centos-6-x86_64.facts +370 -90
  4. data/facts/1.7/centos-7-x86_64.facts +317 -37
  5. data/facts/1.7/redhat-6-x86_64.facts +370 -93
  6. data/facts/1.7/redhat-7-x86_64.facts +339 -59
  7. data/facts/2.0/centos-6-x86_64.facts +470 -124
  8. data/facts/2.0/centos-7-x86_64.facts +408 -60
  9. data/facts/2.0/redhat-6-x86_64.facts +487 -131
  10. data/facts/2.0/redhat-7-x86_64.facts +451 -97
  11. data/facts/2.1/centos-6-x86_64.facts +487 -138
  12. data/facts/2.1/centos-7-x86_64.facts +417 -66
  13. data/facts/2.1/redhat-6-x86_64.facts +583 -141
  14. data/facts/2.1/redhat-7-x86_64.facts +547 -107
  15. data/facts/2.2/centos-6-x86_64.facts +522 -173
  16. data/facts/2.2/centos-7-x86_64.facts +422 -71
  17. data/facts/2.2/redhat-6-x86_64.facts +605 -163
  18. data/facts/2.2/redhat-7-x86_64.facts +552 -112
  19. data/facts/2.3/centos-6-x86_64.facts +509 -160
  20. data/facts/2.3/centos-7-x86_64.facts +422 -71
  21. data/facts/2.3/redhat-6-x86_64.facts +601 -159
  22. data/facts/2.3/redhat-7-x86_64.facts +552 -112
  23. data/facts/2.4/centos-6-x86_64.facts +505 -156
  24. data/facts/2.4/centos-7-x86_64.facts +422 -71
  25. data/facts/2.4/redhat-6-x86_64.facts +593 -150
  26. data/facts/2.4/redhat-7-x86_64.facts +553 -112
  27. data/facts/2.5/--.facts +572 -0
  28. data/facts/2.5/centos-6-x86_64.facts +589 -0
  29. data/facts/2.5/centos-7-x86_64.facts +589 -0
  30. data/facts/2.5/redhat-6-x86_64.facts +678 -0
  31. data/facts/2.5/redhat-7-x86_64.facts +679 -0
  32. data/facts/3.0/centos-6-x86_64.facts +407 -100
  33. data/facts/3.0/centos-7-x86_64.facts +441 -119
  34. data/facts/3.0/redhat-6-x86_64.facts +554 -199
  35. data/facts/3.0/redhat-7-x86_64.facts +546 -202
  36. data/facts/3.3/centos-6-x86_64.facts +420 -104
  37. data/facts/3.3/centos-7-x86_64.facts +451 -124
  38. data/facts/3.3/redhat-6-x86_64.facts +556 -214
  39. data/facts/3.3/redhat-7-x86_64.facts +811 -0
  40. data/facts/3.4/centos-6-x86_64.facts +426 -108
  41. data/facts/3.4/centos-7-x86_64.facts +457 -128
  42. data/facts/3.4/redhat-6-x86_64.facts +562 -218
  43. data/facts/3.4/redhat-7-x86_64.facts +814 -0
  44. data/facts/3.5/centos-6-x86_64.facts +794 -0
  45. data/facts/3.5/centos-7-x86_64.facts +870 -0
  46. data/facts/3.5/redhat-6-x86_64.facts +822 -0
  47. data/facts/3.5/redhat-7-x86_64.facts +891 -0
  48. data/facts/3.6/centos-6-x86_64.facts +795 -0
  49. data/facts/3.6/centos-7-x86_64.facts +871 -0
  50. data/facts/3.6/redhat-6-x86_64.facts +823 -0
  51. data/facts/3.6/redhat-7-x86_64.facts +892 -0
  52. data/facts/3.7/centos-6-x86_64.facts +787 -0
  53. data/facts/3.7/centos-7-x86_64.facts +863 -0
  54. data/facts/3.7/redhat-6-x86_64.facts +815 -0
  55. data/facts/3.7/redhat-7-x86_64.facts +884 -0
  56. data/facts/Vagrantfile +149 -27
  57. data/facts/puppetfiles/Puppetfile.6.0.0-0 +395 -0
  58. data/facts/scripts/get_facts.rb +1 -1
  59. data/facts/scripts/get_facts_for_each_facter.sh +15 -5
  60. data/lib/simp/rspec-puppet-facts.rb +81 -13
  61. data/lib/simp/version.rb +1 -1
  62. data/spec/simp_rspec_puppet_facts_spec.rb +21 -18
  63. metadata +83 -43
@@ -2,7 +2,7 @@ require 'puppet'
2
2
  require 'json'
3
3
  require 'facter'
4
4
 
5
- ENV['FACTERLIB'].split(':').each{|x| Facter.search x }
5
+ ENV.fetch('FACTERLIB').split(':').each{|x| Facter.search x }
6
6
 
7
7
  Puppet.initialize_settings
8
8
  Facter.loadfacts
@@ -1,4 +1,8 @@
1
1
  #!/bin/bash
2
+ #
3
+ # This script record factsets for various versions of cfacter & facter into
4
+ # JSON files. It is run as the vagrant user
5
+ #
2
6
  operatingsystem=$( echo "$1" | cut -f1 -d' ' )
3
7
  operatingsystemmajrelease=$( echo "$1" | cut -f2 -d' ' )
4
8
 
@@ -17,9 +21,9 @@ export FACTERLIB=`ls -1d /vagrant/modules/*/lib/facter | tr '\n' ':'`
17
21
 
18
22
  which dnf > /dev/null 2>&1
19
23
  if [ $? -eq 0 ]; then
20
- rpm_cmd='dnf --best --allowerasing'
24
+ rpm_cmd='sudo dnf --best --allowerasing'
21
25
  else
22
- rpm_cmd='yum --skip-broken'
26
+ rpm_cmd='sudo yum --skip-broken'
23
27
  fi
24
28
 
25
29
  if [ "${operatingsystem}" != 'fedora' ]; then
@@ -31,16 +35,22 @@ else
31
35
  fi
32
36
 
33
37
  $rpm_cmd install -y --nogpgcheck "https://yum.puppetlabs.com/puppetlabs-release-pc1-${plabs_ver}-${operatingsystemmajrelease}.noarch.rpm"
38
+ $rpm_cmd install -y --nogpgcheck "https://yum.puppetlabs.com/puppetlabs-release-pc1-${plabs_ver}-${operatingsystemmajrelease}.noarch.rpm"
39
+ $rpm_cmd install -y https://yum.puppetlabs.com/puppet5/puppet5-release-${plabs_ver}-${operatingsystemmajrelease}.noarch.rpm
34
40
 
35
41
  # Prereqs
36
42
  $rpm_cmd install -y facter rubygem-bundler git augeas-devel \
37
43
  libicu-devel libxml2 libxml2-devel libxslt libxslt-devel \
38
- gcc gcc-c++ ruby-devel audit
44
+ gcc gcc-c++ ruby-devel audit bind-utils net-tools
39
45
 
40
46
  rpm -qi puppet > /dev/null && $rpm_cmd remove -y puppet
41
47
 
42
48
  # Capture data for (c)facter 3.X
43
- for puppet_agent_version in 1.2.2 1.2.7 1.5.3 1.6.0; do
49
+ # *LTS* +2016.4
50
+ # PE 2015.2.0 2016.2 2016.4.3 2016.5 2017.2 -----
51
+ # Puppet 4.2.1 4.5.2 4.7.1 4.8.2 4.10.4 5.0.1
52
+ # Facter 3.0 3.1 3.4.2 3.5.1 3.6.5 3.7.1
53
+ for puppet_agent_version in 1.2.2 1.5.3 1.7.2 1.8.3 1.10.4 5.0.1 ; do
44
54
  rpm -qi puppet-agent > /dev/null && $rpm_cmd remove -y puppet-agent
45
55
  $rpm_cmd install -y puppet-agent-$puppet_agent_version
46
56
  facter_version=$( facter --version | cut -c1-3 )
@@ -66,7 +76,7 @@ gem install bundler --no-ri --no-rdoc --no-format-executable
66
76
  bundle install --path vendor/bundler
67
77
 
68
78
  # Capture data for ruby-based facters
69
- for version in 1.7.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0; do
79
+ for version in 1.7.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 ; do
70
80
  FACTER_GEM_VERSION="~> ${version}" PUPPET_VERSION="~> 3.7" bundle update
71
81
  os_string="$(FACTER_GEM_VERSION="~> ${version}" PUPPET_VERSION="~> 3.7" bundle exec facter --version | cut -c1-3)/${operatingsystem}-${operatingsystemmajrelease}-${hardwaremodel}"
72
82
  echo
@@ -5,20 +5,63 @@ module Simp; end
5
5
  module Simp::RspecPuppetFacts
6
6
  require File.expand_path('version', File.dirname(__FILE__))
7
7
 
8
- SELINUX_MODES= [:enforcing, :disabled, :permissive]
8
+ SELINUX_MODES = [:enforcing, :disabled, :permissive]
9
+
10
+
11
+ def supported_os_strings( opts )
12
+ supported_os = opts.fetch(:supported_os, RspecPuppetFacts.meta_supported_os)
13
+ hardwaremodels = opts.fetch(:hardwaremodels, ['x86_64'])
14
+ os_strings = []
15
+ supported_os.each do |os|
16
+ os['operatingsystemrelease'].each do |rel|
17
+ hardwaremodels.each do |hw|
18
+ os_strings << [os['operatingsystem'],rel,hw].map{|x| x.downcase }.join('-')
19
+ end
20
+ end
21
+ end
22
+ os_strings
23
+ end
24
+
25
+ # Don't ask rspec-puppet-facts for operatingsystems we've already recorded
26
+ # because if it doesn't have them it will crash
27
+ def filter_opts( opts, simp_h, filter_type = :reject )
28
+ rfh_hw = opts.fetch(:hardwaremodels, ['x86_64'])
29
+ rfh_os = opts.fetch(:supported_os, RspecPuppetFacts.meta_supported_os).dup
30
+ _os = rfh_os.send(filter_type) do |os|
31
+ _name = os['operatingsystem']
32
+ _rels = os['operatingsystemrelease'].send(filter_type) do |rel|
33
+ _hw = rfh_hw.send(filter_type) do |hw|
34
+ simp_h.key? [_name,rel,hw].map{|x| x.downcase }.join('-')
35
+ end
36
+ !_hw.empty?
37
+ end
38
+ !_rels.empty?
39
+ end
40
+ _opts = opts.dup
41
+ _opts[:supported_os] = _os
42
+ _opts
43
+ end
9
44
 
10
45
  def on_supported_os( opts = {} )
11
- h = Simp::RspecPuppetFacts::Shim.on_supported_os( opts )
12
- selinux_mode = opts.fetch(:selinux_mode,:enforcing)
46
+ opts[:selinux_mode] ||= :enforcing
47
+ opts[:simp_fact_dir_path] ||= File.expand_path("../../facts/",
48
+ File.dirname(__FILE__))
13
49
 
14
- h.each do | os, facts |
15
- facts ||= Hash.new
50
+ simp_h = load_facts(opts[:simp_fact_dir_path])
51
+ strings = supported_os_strings(opts)
52
+ masked_opts = filter_opts(opts, simp_h, :reject)
53
+ selected_opts = filter_opts(opts, simp_h, :select)
54
+ rfh_h = Simp::RspecPuppetFacts::Shim.on_supported_os(masked_opts)
16
55
 
17
- facter_version=Facter.version[0..2]
18
- facts_file = File.expand_path("../../facts/#{facter_version}/#{os}.facts", File.dirname(__FILE__))
56
+ h = rfh_h.merge(simp_h).select{|k,v| supported_os_strings(opts).include? k}
57
+ h.each do | os, facts |
58
+ facter_ver=Facter.version[0..2]
59
+ facts_file = File.expand_path("../../facts/#{facter_ver}/#{os}.facts",
60
+ File.dirname(__FILE__))
19
61
  if File.file? facts_file
20
62
  captured_facts_raw = File.open(
21
- File.expand_path("../../facts/#{facter_version}/#{os}.facts", File.dirname(__FILE__))
63
+ File.expand_path("../../facts/#{facter_ver}/#{os}.facts",
64
+ File.dirname(__FILE__))
22
65
  ).read
23
66
  captured_facts = symbolize_keys JSON.parse( captured_facts_raw )
24
67
  captured_facts.keep_if{ |k,v| (captured_facts.keys-facts.keys).include? k }
@@ -27,15 +70,14 @@ module Simp::RspecPuppetFacts
27
70
  facts.merge! opts.fetch( :extra_facts, {} )
28
71
  facts.merge!({ :puppetversion => ::Puppet.version })
29
72
  facts.merge! lsb_facts( facts )
30
- facts.merge! selinux_facts( selinux_mode, facts )
73
+ facts.merge! selinux_facts( opts[:selinux_mode], facts )
31
74
  facts.merge! opts.fetch( :extra_facts_immutable, {} )
32
75
  end
33
76
 
34
- if ( ENV.key?('SIMP_FACTS_OS') &&
35
- !ENV['SIMP_FACTS_OS'].nil? &&
36
- ENV['SIMP_FACTS_OS'].strip != '' &&
77
+ if ( ENV.fetch('SIMP_FACTS_OS',nil) &&
78
+ !ENV['SIMP_FACTS_OS'].strip.empty? &&
37
79
  ENV['SIMP_FACTS_OS'] !~ /all/i )
38
- unless ENV['SIMP_FACTS_OS'].split(/[ ,]+/).include? os
80
+ unless ENV['SIMP_FACTS_OS'].strip.split(/[ ,]+/).include? os
39
81
  h.delete(os)
40
82
  end
41
83
  end
@@ -117,6 +159,32 @@ module Simp::RspecPuppetFacts
117
159
  }
118
160
  end
119
161
 
162
+
163
+ def load_facts( fact_dir_path )
164
+ facter_zy_version = Facter.version.split('.')[0..1].join('.')
165
+ fact_dir = File.join(fact_dir_path,facter_zy_version)
166
+
167
+ unless File.exists? fact_dir
168
+ _msg = "Can't find SIMP facts for Facter #{facter_zy_version}, skipping...
169
+
170
+ HINT: If this version of Facter has been released recently, try running
171
+
172
+ `FACTER_GEM_VERSION='~> X.Y.0' bundler update facter
173
+
174
+ Where 'X.Y' is the version of the last facter that worked"
175
+ fail(_msg)
176
+ end
177
+
178
+ simp_h = {}
179
+ fact_files = Dir.glob( File.join(fact_dir, '*.facts') ).sort
180
+ fact_files.each do |file|
181
+ key = File.basename(file).sub(/\.facts$/,'')
182
+ data = JSON.parse(File.read(file))
183
+ simp_h[key] = symbolize_keys(data)
184
+ end
185
+ simp_h
186
+ end
187
+
120
188
  class Shim
121
189
  require 'rspec-puppet-facts'
122
190
  extend ::RspecPuppetFacts
data/lib/simp/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Simp; end
2
2
  module Simp::RspecPuppetFacts
3
- VERSION = '1.4.1'
3
+ VERSION = '2.0.0'
4
4
  end
@@ -9,7 +9,7 @@ describe 'Simp::RspecPuppetFacts' do
9
9
  subject { on_supported_os() }
10
10
 
11
11
  context 'Without a metadata.json file' do
12
- it { expect { subject }.to raise_error(StandardError, /Can't find metadata.json/) }
12
+ it { expect { subject }.to raise_error(StandardError, /Can't find metadata\.json/) }
13
13
  end
14
14
 
15
15
  context 'With a metadata.json file' do
@@ -21,26 +21,29 @@ describe 'Simp::RspecPuppetFacts' do
21
21
  expect( on_supported_os().class ).to eq Hash
22
22
  end
23
23
  it 'should have 4 elements' do
24
- expect(subject.size).to eq 4
24
+ expect(subject.size).to be >= 4
25
25
  end
26
26
  it 'should return supported OS' do
27
- expect(subject.keys.sort).to eq [
28
- 'centos-6-x86_64',
29
- 'centos-7-x86_64',
30
- 'redhat-6-x86_64',
31
- 'redhat-7-x86_64',
32
- ]
27
+ expect(subject.keys.sort).to include 'centos-6-x86_64'
28
+ expect(subject.keys.sort).to include 'centos-7-x86_64'
29
+ expect(subject.keys.sort).to include 'redhat-6-x86_64'
30
+ expect(subject.keys.sort).to include 'redhat-7-x86_64'
33
31
  end
34
32
  it 'should return SIMP-specific OS facts' do
35
- expect(subject.map{ |os,data| {os =>
33
+ grub_version_facts = subject.map{ |os,data| {os =>
36
34
  data.select{ |x,v| x == :uid_min || x == :grub_version }}}
37
- ).to eq [
38
- {"centos-6-x86_64"=>{:uid_min=>"500", :grub_version=>"0.97" }},
39
- {"centos-7-x86_64"=>{:uid_min=>"1000", :grub_version=>"2.02~beta2"}},
40
- {"redhat-6-x86_64"=>{:uid_min=>"500", :grub_version=>"0.97" }},
41
- {"redhat-7-x86_64"=>{:uid_min=>"1000", :grub_version=>"2.02~beta2"}},
42
- ]
43
-
35
+ expect( grub_version_facts ).to include(
36
+ {"centos-6-x86_64"=>{:uid_min=>"500", :grub_version=>"0.97"}}
37
+ )
38
+ expect( grub_version_facts ).to include(
39
+ {"centos-7-x86_64"=>{:uid_min=>"1000", :grub_version=>"2.02~beta2"}}
40
+ )
41
+ expect( grub_version_facts ).to include(
42
+ {"redhat-6-x86_64"=>{:uid_min=>"500", :grub_version=>"0.97"}}
43
+ )
44
+ expect( grub_version_facts ).to include(
45
+ {"redhat-7-x86_64"=>{:uid_min=>"1000", :grub_version=>"2.02~beta2"}}
46
+ )
44
47
  end
45
48
  end
46
49
  end
@@ -106,7 +109,7 @@ describe 'Simp::RspecPuppetFacts' do
106
109
  {
107
110
  "operatingsystem" => "Debian",
108
111
  "operatingsystemrelease" => [
109
- "4",
112
+ "X",
110
113
  ],
111
114
  },
112
115
  ]
@@ -115,7 +118,7 @@ describe 'Simp::RspecPuppetFacts' do
115
118
  }
116
119
 
117
120
  it 'should output warning message' do
118
- expect { subject }.to output(/Can't find facts for 'debian-4-x86_64'/).to_stderr
121
+ expect { subject }.to output(/Can't find facts for 'debian-X-x86_64'/).to_stderr
119
122
  end
120
123
  end
121
124
  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.4.1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Tessmer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-08-31 00:00:00.000000000 Z
12
+ date: 2017-07-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec-puppet-facts
@@ -154,6 +154,11 @@ files:
154
154
  - facts/2.4/fedora-23-x86_64.facts
155
155
  - facts/2.4/redhat-6-x86_64.facts
156
156
  - facts/2.4/redhat-7-x86_64.facts
157
+ - facts/2.5/--.facts
158
+ - facts/2.5/centos-6-x86_64.facts
159
+ - facts/2.5/centos-7-x86_64.facts
160
+ - facts/2.5/redhat-6-x86_64.facts
161
+ - facts/2.5/redhat-7-x86_64.facts
157
162
  - facts/3.0/centos-6-x86_64.facts
158
163
  - facts/3.0/centos-7-x86_64.facts
159
164
  - facts/3.0/redhat-6-x86_64.facts
@@ -170,12 +175,27 @@ files:
170
175
  - facts/3.3/centos-7-x86_64.facts
171
176
  - facts/3.3/fedora-23-x86_64.facts
172
177
  - facts/3.3/redhat-6-x86_64.facts
178
+ - facts/3.3/redhat-7-x86_64.facts
173
179
  - facts/3.4/centos-6-x86_64.facts
174
180
  - facts/3.4/centos-7-x86_64.facts
175
181
  - facts/3.4/fedora-23-x86_64.facts
176
182
  - facts/3.4/redhat-6-x86_64.facts
183
+ - facts/3.4/redhat-7-x86_64.facts
184
+ - facts/3.5/centos-6-x86_64.facts
185
+ - facts/3.5/centos-7-x86_64.facts
186
+ - facts/3.5/redhat-6-x86_64.facts
187
+ - facts/3.5/redhat-7-x86_64.facts
188
+ - facts/3.6/centos-6-x86_64.facts
189
+ - facts/3.6/centos-7-x86_64.facts
190
+ - facts/3.6/redhat-6-x86_64.facts
191
+ - facts/3.6/redhat-7-x86_64.facts
192
+ - facts/3.7/centos-6-x86_64.facts
193
+ - facts/3.7/centos-7-x86_64.facts
194
+ - facts/3.7/redhat-6-x86_64.facts
195
+ - facts/3.7/redhat-7-x86_64.facts
177
196
  - facts/Gemfile
178
197
  - facts/Vagrantfile
198
+ - facts/puppetfiles/Puppetfile.6.0.0-0
179
199
  - facts/scripts/get_facts.rb
180
200
  - facts/scripts/get_facts_for_each_facter.sh
181
201
  - lib/simp-rspec-puppet-facts.rb
@@ -212,61 +232,81 @@ specification_version: 4
212
232
  summary: standard SIMP facts fixtures for Puppet
213
233
  test_files:
214
234
  - Rakefile
215
- - spec/fixtures/metadata.json
216
- - spec/fixtures/metadata.json_with_missing_operatingsystem_support
217
235
  - spec/simp_rspec_puppet_facts_spec.rb
236
+ - spec/fixtures/metadata.json_with_missing_operatingsystem_support
237
+ - spec/fixtures/metadata.json
218
238
  - 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
224
- - facts/2.0/redhat-6-x86_64.facts
239
+ - facts/scripts/get_facts_for_each_facter.sh
240
+ - facts/scripts/get_facts.rb
241
+ - facts/Vagrantfile
225
242
  - facts/2.0/centos-6-x86_64.facts
226
- - facts/2.0/redhat-7-x86_64.facts
243
+ - facts/2.0/redhat-6-x86_64.facts
227
244
  - facts/2.0/centos-7-x86_64.facts
245
+ - facts/2.0/redhat-7-x86_64.facts
228
246
  - facts/2.0/fedora-23-x86_64.facts
229
- - facts/2.1/redhat-6-x86_64.facts
247
+ - facts/3.0/centos-6-x86_64.facts
248
+ - facts/3.0/redhat-6-x86_64.facts
249
+ - facts/3.0/centos-7-x86_64.facts
250
+ - facts/3.0/redhat-7-x86_64.facts
230
251
  - facts/2.1/centos-6-x86_64.facts
231
- - facts/2.1/redhat-7-x86_64.facts
252
+ - facts/2.1/redhat-6-x86_64.facts
232
253
  - facts/2.1/centos-7-x86_64.facts
254
+ - facts/2.1/redhat-7-x86_64.facts
233
255
  - facts/2.1/fedora-23-x86_64.facts
234
- - facts/3.1/redhat-6-x86_64.facts
235
- - facts/3.1/centos-6-x86_64.facts
236
- - facts/3.1/redhat-7-x86_64.facts
237
- - facts/3.1/centos-7-x86_64.facts
238
- - facts/2.2/redhat-6-x86_64.facts
239
- - facts/2.2/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
256
  - facts/1.7/centos-6-x86_64.facts
245
- - facts/1.7/redhat-7-x86_64.facts
257
+ - facts/1.7/redhat-6-x86_64.facts
246
258
  - facts/1.7/centos-7-x86_64.facts
259
+ - facts/1.7/redhat-7-x86_64.facts
247
260
  - 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
259
- - facts/Gemfile
260
- - facts/2.3/redhat-6-x86_64.facts
261
261
  - facts/2.3/centos-6-x86_64.facts
262
- - facts/2.3/redhat-7-x86_64.facts
262
+ - facts/2.3/redhat-6-x86_64.facts
263
263
  - facts/2.3/centos-7-x86_64.facts
264
+ - facts/2.3/redhat-7-x86_64.facts
264
265
  - facts/2.3/fedora-23-x86_64.facts
265
- - facts/3.4/redhat-6-x86_64.facts
266
+ - facts/3.6/centos-6-x86_64.facts
267
+ - facts/3.6/redhat-6-x86_64.facts
268
+ - facts/3.6/centos-7-x86_64.facts
269
+ - facts/3.6/redhat-7-x86_64.facts
270
+ - facts/2.2/centos-6-x86_64.facts
271
+ - facts/2.2/redhat-6-x86_64.facts
272
+ - facts/2.2/centos-7-x86_64.facts
273
+ - facts/2.2/redhat-7-x86_64.facts
274
+ - facts/2.2/fedora-23-x86_64.facts
275
+ - facts/3.1/centos-6-x86_64.facts
276
+ - facts/3.1/redhat-6-x86_64.facts
277
+ - facts/3.1/centos-7-x86_64.facts
278
+ - facts/3.1/redhat-7-x86_64.facts
279
+ - facts/3.7/centos-6-x86_64.facts
280
+ - facts/3.7/redhat-6-x86_64.facts
281
+ - facts/3.7/centos-7-x86_64.facts
282
+ - facts/3.7/redhat-7-x86_64.facts
283
+ - facts/3.3/centos-6-x86_64.facts
284
+ - facts/3.3/redhat-6-x86_64.facts
285
+ - facts/3.3/centos-7-x86_64.facts
286
+ - facts/3.3/redhat-7-x86_64.facts
287
+ - facts/3.3/fedora-23-x86_64.facts
266
288
  - facts/3.4/centos-6-x86_64.facts
289
+ - facts/3.4/redhat-6-x86_64.facts
267
290
  - facts/3.4/centos-7-x86_64.facts
291
+ - facts/3.4/redhat-7-x86_64.facts
268
292
  - 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
293
+ - facts/puppetfiles/Puppetfile.6.0.0-0
294
+ - facts/3.5/centos-6-x86_64.facts
295
+ - facts/3.5/redhat-6-x86_64.facts
296
+ - facts/3.5/centos-7-x86_64.facts
297
+ - facts/3.5/redhat-7-x86_64.facts
298
+ - facts/2.4/centos-6-x86_64.facts
299
+ - facts/2.4/redhat-6-x86_64.facts
300
+ - facts/2.4/centos-7-x86_64.facts
301
+ - facts/2.4/redhat-7-x86_64.facts
302
+ - facts/2.4/fedora-23-x86_64.facts
303
+ - facts/2.5/--.facts
304
+ - facts/2.5/centos-6-x86_64.facts
305
+ - facts/2.5/redhat-6-x86_64.facts
306
+ - facts/2.5/centos-7-x86_64.facts
307
+ - facts/2.5/redhat-7-x86_64.facts
308
+ - facts/Gemfile
309
+ - facts/3.2/centos-6-x86_64.facts
310
+ - facts/3.2/redhat-6-x86_64.facts
311
+ - facts/3.2/centos-7-x86_64.facts
312
+ - facts/3.2/fedora-23-x86_64.facts