facter 2.5.1-universal-darwin → 2.5.4-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +17 -3
- data/Gemfile.lock +79 -0
- data/Rakefile +11 -44
- data/ext/project_data.yaml +2 -2
- data/lib/facter/ec2/rest.rb +1 -1
- data/lib/facter/operatingsystem/linux.rb +28 -1
- data/lib/facter/version.rb +1 -1
- data/lib/facter/virtual.rb +2 -0
- metadata +667 -670
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9eb0a1354ccaaf629e70d6720c17ab1834686d97
|
4
|
+
data.tar.gz: 1bf9399cece9b5f095681694aca57389e024ed35
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3612ffd072990366db0735723214045ecc4b8292ed00a34f7f9f0e90dd467ed8c97e566916e2ad938f1fa363c1c2094b3ea7dcecbcfa549073d1191865453262
|
7
|
+
data.tar.gz: dec0cf33a0e48e8bd600545c4c75f9b15effa65c01af9365dcc57ba6aa2e4a3e3a4aa5f0479862c6a3b9f27f9f6cdcd651b8b35e48f289491469fbb9fa9ff660
|
data/Gemfile
CHANGED
@@ -1,4 +1,14 @@
|
|
1
|
-
source ENV['GEM_SOURCE'] ||
|
1
|
+
source ENV['GEM_SOURCE'] || 'https://artifactory.delivery.puppetlabs.net/artifactory/api/gems/rubygems/'
|
2
|
+
|
3
|
+
def location_for(place, fake_version = nil)
|
4
|
+
if place =~ /^(git[:@][^#]*)#(.*)/
|
5
|
+
[fake_version, { :git => $1, :branch => $2, :require => false }].compact
|
6
|
+
elsif place =~ /^file:\/\/(.*)/
|
7
|
+
['>= 0', { :path => File.expand_path($1), :require => false }]
|
8
|
+
else
|
9
|
+
[place, { :require => false }]
|
10
|
+
end
|
11
|
+
end
|
2
12
|
|
3
13
|
# C Ruby (MRI) or Rubinius, but NOT Windows
|
4
14
|
platforms :ruby do
|
@@ -18,6 +28,8 @@ group :development, :test do
|
|
18
28
|
gem 'puppetlabs_spec_helper'
|
19
29
|
end
|
20
30
|
|
31
|
+
gem 'packaging', *location_for(ENV['PACKAGING_LOCATION'] || '~> 0.99') if RUBY_VERSION.to_f >= 2.3
|
32
|
+
|
21
33
|
require 'yaml'
|
22
34
|
data = YAML.load_file(File.join(File.dirname(__FILE__), 'ext', 'project_data.yaml'))
|
23
35
|
bundle_platforms = data['bundle_platforms']
|
@@ -39,10 +51,12 @@ mingw << :x64_mingw if Bundler::Dsl::VALID_PLATFORMS.include?(:x64_mingw)
|
|
39
51
|
platform(*mingw) do
|
40
52
|
# FFI dropped 1.9.3 support in 1.9.16, and 1.9.15 was an incomplete release.
|
41
53
|
# 1.9.18 is required to support Ruby 2.4
|
42
|
-
if RUBY_VERSION <
|
54
|
+
if RUBY_VERSION.to_f < 2.0
|
43
55
|
gem 'ffi', '<= 1.9.14', :require => false
|
44
|
-
|
56
|
+
elsif RUBY_VERSION.to_f < 2.6
|
45
57
|
gem 'ffi', '~> 1.9.18', :require => false
|
58
|
+
else
|
59
|
+
gem 'ffi', '~> 1.10', :require => false
|
46
60
|
end
|
47
61
|
end
|
48
62
|
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
facter (2.5.4)
|
5
|
+
redcarpet (<= 2.3.0)
|
6
|
+
watchr
|
7
|
+
yard
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://artifactory.delivery.puppetlabs.net/artifactory/api/gems/rubygems/
|
11
|
+
specs:
|
12
|
+
CFPropertyList (2.3.6)
|
13
|
+
addressable (2.3.8)
|
14
|
+
artifactory (3.0.0)
|
15
|
+
builder (3.2.3)
|
16
|
+
coderay (1.1.2)
|
17
|
+
diff-lcs (1.1.3)
|
18
|
+
json (1.8.6)
|
19
|
+
json-schema (2.6.2)
|
20
|
+
addressable (~> 2.3.8)
|
21
|
+
metaclass (0.0.4)
|
22
|
+
method_source (0.9.2)
|
23
|
+
mocha (0.10.5)
|
24
|
+
metaclass (~> 0.0.1)
|
25
|
+
packaging (0.99.0)
|
26
|
+
artifactory
|
27
|
+
rake
|
28
|
+
pry (0.12.2)
|
29
|
+
coderay (~> 1.1.0)
|
30
|
+
method_source (~> 0.9.0)
|
31
|
+
puppet-lint (2.3.6)
|
32
|
+
puppet-syntax (2.5.0)
|
33
|
+
rake
|
34
|
+
puppetlabs_spec_helper (1.1.1)
|
35
|
+
mocha
|
36
|
+
puppet-lint
|
37
|
+
puppet-syntax
|
38
|
+
rake
|
39
|
+
rspec-puppet
|
40
|
+
rake (10.1.1)
|
41
|
+
redcarpet (2.3.0)
|
42
|
+
rspec (2.11.0)
|
43
|
+
rspec-core (~> 2.11.0)
|
44
|
+
rspec-expectations (~> 2.11.0)
|
45
|
+
rspec-mocks (~> 2.11.0)
|
46
|
+
rspec-core (2.11.1)
|
47
|
+
rspec-expectations (2.11.3)
|
48
|
+
diff-lcs (~> 1.1.3)
|
49
|
+
rspec-mocks (2.11.3)
|
50
|
+
rspec-puppet (2.7.5)
|
51
|
+
rspec
|
52
|
+
watchr (0.7)
|
53
|
+
yard (0.9.20)
|
54
|
+
yarjuf (1.0.5)
|
55
|
+
builder
|
56
|
+
rspec (>= 2.0)
|
57
|
+
|
58
|
+
PLATFORMS
|
59
|
+
ruby
|
60
|
+
|
61
|
+
DEPENDENCIES
|
62
|
+
CFPropertyList (~> 2.2)
|
63
|
+
facter (>= 1.0.0)!
|
64
|
+
ffi (~> 1.9.18)
|
65
|
+
json (~> 1.7)
|
66
|
+
json-schema (~> 2.6.2)
|
67
|
+
mocha (~> 0.10.5)
|
68
|
+
packaging (~> 0.99)
|
69
|
+
pry
|
70
|
+
puppetlabs_spec_helper
|
71
|
+
rake (~> 10.1.0)
|
72
|
+
redcarpet (<= 2.3.0)
|
73
|
+
rspec (~> 2.11.0)
|
74
|
+
watchr
|
75
|
+
yard
|
76
|
+
yarjuf (~> 1.0)
|
77
|
+
|
78
|
+
BUNDLED WITH
|
79
|
+
1.17.1
|
data/Rakefile
CHANGED
@@ -1,66 +1,33 @@
|
|
1
|
-
# Rakefile for facter
|
2
|
-
|
3
1
|
# We need access to the Puppet.version method
|
4
2
|
$LOAD_PATH.unshift(File.expand_path("lib"))
|
5
3
|
require 'facter/version'
|
6
4
|
|
7
|
-
|
5
|
+
RAKE_ROOT = File.expand_path(File.dirname(__FILE__))
|
6
|
+
|
7
|
+
$LOAD_PATH << File.join(RAKE_ROOT, 'tasks')
|
8
8
|
|
9
9
|
require 'rake'
|
10
10
|
Dir['tasks/**/*.rake'].each { |t| load t }
|
11
11
|
|
12
|
-
|
13
|
-
load File.join(File.dirname(__FILE__), 'ext', 'packaging', 'packaging.rake')
|
14
|
-
rescue LoadError
|
15
|
-
end
|
16
|
-
|
17
|
-
['rubygems',
|
18
|
-
'rspec',
|
19
|
-
'rspec/core/rake_task',
|
20
|
-
'rcov',].each do |lib|
|
12
|
+
['rubygems', 'rspec', 'rspec/core/rake_task','rcov', 'packaging'].each do |lib|
|
21
13
|
begin
|
22
14
|
require lib
|
23
15
|
rescue LoadError
|
24
16
|
end
|
25
17
|
end
|
26
18
|
|
19
|
+
#load packaging tasks
|
20
|
+
Pkg::Util::RakeUtils.load_packaging_tasks if defined?(Pkg)
|
27
21
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
require 'yaml'
|
32
|
-
@build_defaults ||= YAML.load_file(build_defs_file)
|
33
|
-
rescue Exception => e
|
34
|
-
STDERR.puts "Unable to load yaml from #{build_defs_file}:"
|
35
|
-
STDERR.puts e
|
22
|
+
namespace :package do
|
23
|
+
task :bootstrap do
|
24
|
+
puts 'Bootstrap is no longer needed, using packaging-as-a-gem'
|
36
25
|
end
|
37
|
-
|
38
|
-
|
39
|
-
raise "Could not find packaging url in #{build_defs_file}" if @packaging_url.nil?
|
40
|
-
raise "Could not find packaging repo in #{build_defs_file}" if @packaging_repo.nil?
|
41
|
-
|
42
|
-
namespace :package do
|
43
|
-
desc "Bootstrap packaging automation, e.g. clone into packaging repo"
|
44
|
-
task :bootstrap do
|
45
|
-
if File.exist?("ext/#{@packaging_repo}")
|
46
|
-
puts "It looks like you already have ext/#{@packaging_repo}. If you don't like it, blow it away with package:implode."
|
47
|
-
else
|
48
|
-
cd 'ext' do
|
49
|
-
%x{git clone #{@packaging_url}}
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
desc "Remove all cloned packaging automation"
|
54
|
-
task :implode do
|
55
|
-
rm_rf "ext/#{@packaging_repo}"
|
56
|
-
end
|
26
|
+
task :implode do
|
27
|
+
puts 'Implode is no longer needed, using packaging-as-a-gem'
|
57
28
|
end
|
58
29
|
end
|
59
30
|
|
60
|
-
task :default do
|
61
|
-
sh %{rake -T}
|
62
|
-
end
|
63
|
-
|
64
31
|
if defined?(RSpec::Core::RakeTask)
|
65
32
|
desc "Run all specs"
|
66
33
|
RSpec::Core::RakeTask.new do |t|
|
data/ext/project_data.yaml
CHANGED
@@ -19,10 +19,10 @@ gem_platform_dependencies:
|
|
19
19
|
CFPropertyList: '~> 2.2'
|
20
20
|
x86-mingw32:
|
21
21
|
gem_runtime_dependencies:
|
22
|
-
ffi: '~> 1.9
|
22
|
+
ffi: '~> 1.9'
|
23
23
|
x64-mingw32:
|
24
24
|
gem_runtime_dependencies:
|
25
|
-
ffi: '~> 1.9
|
25
|
+
ffi: '~> 1.9'
|
26
26
|
bundle_platforms:
|
27
27
|
universal-darwin: ruby
|
28
28
|
x86-mingw32: mingw
|
data/lib/facter/ec2/rest.rb
CHANGED
@@ -25,7 +25,7 @@ module Facter
|
|
25
25
|
attempts = 0
|
26
26
|
|
27
27
|
begin
|
28
|
-
open(@baseurl, :proxy => nil, :read_timeout => timeout).read
|
28
|
+
open(@baseurl, :proxy => nil, :read_timeout => timeout, :open_timeout => timeout).read
|
29
29
|
able_to_connect = true
|
30
30
|
rescue OpenURI::HTTPError => e
|
31
31
|
if e.message.match /404 Not Found/i
|
@@ -37,6 +37,8 @@ module Facter
|
|
37
37
|
"Archlinux"
|
38
38
|
when "Mageia", "Mandriva", "Mandrake"
|
39
39
|
"Mandrake"
|
40
|
+
when "ALT Linux", "ALT Starter Kit", "ALT Workstation", "ALT Server"
|
41
|
+
"ALT"
|
40
42
|
else
|
41
43
|
Facter.value("kernel")
|
42
44
|
end
|
@@ -46,6 +48,8 @@ module Facter
|
|
46
48
|
case get_operatingsystem
|
47
49
|
when "Alpine"
|
48
50
|
get_alpine_release_with_release_file
|
51
|
+
when "ALT", "ALT Starter Kit", "ALT Workstation", "ALT Server"
|
52
|
+
get_alt_release_with_release_file
|
49
53
|
when "Amazon"
|
50
54
|
get_amazon_release_with_lsb
|
51
55
|
when "AristaEOS"
|
@@ -247,7 +251,6 @@ module Facter
|
|
247
251
|
"AristaEOS" => "/etc/Eos-release",
|
248
252
|
"Debian" => "/etc/debian_version",
|
249
253
|
"Gentoo" => "/etc/gentoo-release",
|
250
|
-
"Fedora" => "/etc/fedora-release",
|
251
254
|
"Mageia" => "/etc/mageia-release",
|
252
255
|
"Mandriva" => "/etc/mandriva-release",
|
253
256
|
"Mandrake" => "/etc/mandrake-release",
|
@@ -276,6 +279,10 @@ module Facter
|
|
276
279
|
else
|
277
280
|
operatingsystem = "OEL"
|
278
281
|
end
|
282
|
+
elsif FileTest.exists?("/etc/altlinux-release")
|
283
|
+
operatingsystem = get_alt_operatingsystem_name
|
284
|
+
elsif FileTest.exists?("/etc/fedora-release")
|
285
|
+
operatingsystem = "Fedora"
|
279
286
|
elsif FileTest.exists?("/etc/redhat-release")
|
280
287
|
operatingsystem = get_redhat_operatingsystem_name
|
281
288
|
elsif FileTest.exists?("/etc/SuSE-release")
|
@@ -314,6 +321,22 @@ module Facter
|
|
314
321
|
end
|
315
322
|
end
|
316
323
|
|
324
|
+
# Uses a regex search on /etc/altlinux-release to determine OS
|
325
|
+
#
|
326
|
+
# @return [String]
|
327
|
+
def get_alt_operatingsystem_name
|
328
|
+
txt = File.read("/etc/os-release")
|
329
|
+
matches = {
|
330
|
+
"ALT Starter Kit" => "^NAME=\"ALT( Linux)? starter kit",
|
331
|
+
"ALT Workstation" => "^NAME=\"ALT( Linux)? Workstation",
|
332
|
+
"ALT Server" => "^NAME=\"ALT( Linux)? Server",
|
333
|
+
}
|
334
|
+
match = regex_search_release_file_for_operatingsystem(matches, txt)
|
335
|
+
match = "ALT Linux" if match == nil
|
336
|
+
|
337
|
+
match
|
338
|
+
end
|
339
|
+
|
317
340
|
# Uses a regex search on /etc/SuSE-release to determine OS
|
318
341
|
#
|
319
342
|
# @return [String]
|
@@ -410,6 +433,10 @@ module Facter
|
|
410
433
|
end
|
411
434
|
end
|
412
435
|
|
436
|
+
def get_alt_release_with_release_file
|
437
|
+
regex_search_releasefile_for_release(/VERSION_ID=([0-9.]+)/m, "/etc/os-release")
|
438
|
+
end
|
439
|
+
|
413
440
|
def get_debian_release_with_release_file
|
414
441
|
if release = Facter::Util::FileRead.read('/etc/debian_version')
|
415
442
|
release.sub!(/\s*$/, '')
|
data/lib/facter/version.rb
CHANGED
data/lib/facter/virtual.rb
CHANGED
metadata
CHANGED
@@ -1,30 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: facter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
5
|
-
prerelease:
|
4
|
+
version: 2.5.4
|
6
5
|
platform: universal-darwin
|
7
6
|
authors:
|
8
7
|
- Puppet Labs
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2019-07-12 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: CFPropertyList
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- - ~>
|
17
|
+
- - "~>"
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '2.2'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- - ~>
|
24
|
+
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '2.2'
|
30
27
|
description: You can prove anything with facts!
|
@@ -34,850 +31,850 @@ executables:
|
|
34
31
|
extensions: []
|
35
32
|
extra_rdoc_files: []
|
36
33
|
files:
|
37
|
-
- CONTRIBUTING.md
|
38
|
-
- Rakefile
|
39
|
-
- LICENSE
|
40
34
|
- COMMITTERS.md
|
35
|
+
- CONTRIBUTING.md
|
41
36
|
- Gemfile
|
37
|
+
- Gemfile.lock
|
38
|
+
- LICENSE
|
42
39
|
- README.md
|
43
|
-
-
|
40
|
+
- Rakefile
|
44
41
|
- bin/facter
|
45
42
|
- etc/facter.conf
|
46
|
-
- ext/solaris/pkginfo
|
47
|
-
- ext/ips/rules
|
48
|
-
- ext/ips/transforms
|
49
|
-
- ext/ips/facter.p5m.erb
|
50
|
-
- ext/project_data.yaml
|
51
43
|
- ext/build_defaults.yaml
|
52
|
-
- ext/
|
44
|
+
- ext/debian/changelog.erb
|
53
45
|
- ext/debian/compat
|
54
|
-
- ext/debian/source/format
|
55
|
-
- ext/debian/rules
|
56
46
|
- ext/debian/control
|
47
|
+
- ext/debian/copyright
|
57
48
|
- ext/debian/docs
|
58
49
|
- ext/debian/lintian-overrides
|
59
|
-
- ext/debian/
|
60
|
-
- ext/debian/
|
61
|
-
- ext/
|
50
|
+
- ext/debian/rules
|
51
|
+
- ext/debian/source/format
|
52
|
+
- ext/facter-diff
|
53
|
+
- ext/ips/facter.p5m.erb
|
54
|
+
- ext/ips/rules
|
55
|
+
- ext/ips/transforms
|
62
56
|
- ext/osx/file_mapping.yaml
|
57
|
+
- ext/osx/preflight.erb
|
63
58
|
- ext/osx/prototype.plist.erb
|
59
|
+
- ext/project_data.yaml
|
64
60
|
- ext/redhat/facter.spec.erb
|
61
|
+
- ext/solaris/pkginfo
|
62
|
+
- install.rb
|
65
63
|
- lib/facter.rb
|
66
|
-
- lib/facter/
|
67
|
-
- lib/facter/
|
64
|
+
- lib/facter/Cfkey.rb
|
65
|
+
- lib/facter/application.rb
|
66
|
+
- lib/facter/architecture.rb
|
67
|
+
- lib/facter/augeasversion.rb
|
68
|
+
- lib/facter/blockdevices.rb
|
69
|
+
- lib/facter/core/aggregate.rb
|
70
|
+
- lib/facter/core/directed_graph.rb
|
71
|
+
- lib/facter/core/execution.rb
|
72
|
+
- lib/facter/core/execution/base.rb
|
73
|
+
- lib/facter/core/execution/posix.rb
|
74
|
+
- lib/facter/core/execution/windows.rb
|
75
|
+
- lib/facter/core/logging.rb
|
76
|
+
- lib/facter/core/resolvable.rb
|
77
|
+
- lib/facter/core/suitable.rb
|
78
|
+
- lib/facter/dhcp_servers.rb
|
79
|
+
- lib/facter/domain.rb
|
80
|
+
- lib/facter/ec2.rb
|
81
|
+
- lib/facter/ec2/rest.rb
|
82
|
+
- lib/facter/facterversion.rb
|
83
|
+
- lib/facter/filesystems.rb
|
84
|
+
- lib/facter/fqdn.rb
|
85
|
+
- lib/facter/gce.rb
|
86
|
+
- lib/facter/gce/metadata.rb
|
68
87
|
- lib/facter/gid.rb
|
69
|
-
- lib/facter/
|
70
|
-
- lib/facter/version.rb
|
88
|
+
- lib/facter/hardwareisa.rb
|
71
89
|
- lib/facter/hardwaremodel.rb
|
90
|
+
- lib/facter/hostname.rb
|
91
|
+
- lib/facter/id.rb
|
92
|
+
- lib/facter/interfaces.rb
|
93
|
+
- lib/facter/ipaddress.rb
|
94
|
+
- lib/facter/ipaddress6.rb
|
95
|
+
- lib/facter/iphostnumber.rb
|
96
|
+
- lib/facter/kernel.rb
|
97
|
+
- lib/facter/kernelmajversion.rb
|
72
98
|
- lib/facter/kernelrelease.rb
|
99
|
+
- lib/facter/kernelversion.rb
|
100
|
+
- lib/facter/ldom.rb
|
101
|
+
- lib/facter/lsbdistcodename.rb
|
102
|
+
- lib/facter/lsbdistdescription.rb
|
103
|
+
- lib/facter/lsbdistid.rb
|
104
|
+
- lib/facter/lsbdistrelease.rb
|
105
|
+
- lib/facter/lsbmajdistrelease.rb
|
106
|
+
- lib/facter/lsbminordistrelease.rb
|
107
|
+
- lib/facter/lsbrelease.rb
|
108
|
+
- lib/facter/macaddress.rb
|
109
|
+
- lib/facter/macosx.rb
|
110
|
+
- lib/facter/manufacturer.rb
|
111
|
+
- lib/facter/memory.rb
|
112
|
+
- lib/facter/netmask.rb
|
113
|
+
- lib/facter/network.rb
|
114
|
+
- lib/facter/operatingsystem.rb
|
115
|
+
- lib/facter/operatingsystem/base.rb
|
116
|
+
- lib/facter/operatingsystem/cumuluslinux.rb
|
117
|
+
- lib/facter/operatingsystem/implementation.rb
|
118
|
+
- lib/facter/operatingsystem/linux.rb
|
119
|
+
- lib/facter/operatingsystem/osreleaselinux.rb
|
120
|
+
- lib/facter/operatingsystem/sunos.rb
|
121
|
+
- lib/facter/operatingsystem/vmkernel.rb
|
122
|
+
- lib/facter/operatingsystem/windows.rb
|
123
|
+
- lib/facter/operatingsystemmajrelease.rb
|
124
|
+
- lib/facter/operatingsystemrelease.rb
|
125
|
+
- lib/facter/os.rb
|
126
|
+
- lib/facter/osfamily.rb
|
127
|
+
- lib/facter/partitions.rb
|
128
|
+
- lib/facter/path.rb
|
129
|
+
- lib/facter/physicalprocessorcount.rb
|
130
|
+
- lib/facter/processor.rb
|
131
|
+
- lib/facter/processors.rb
|
132
|
+
- lib/facter/processors/os.rb
|
133
|
+
- lib/facter/ps.rb
|
73
134
|
- lib/facter/puppetversion.rb
|
74
|
-
- lib/facter/
|
135
|
+
- lib/facter/rackspace.rb
|
75
136
|
- lib/facter/rubyplatform.rb
|
76
|
-
- lib/facter/
|
77
|
-
- lib/facter/
|
137
|
+
- lib/facter/rubysitedir.rb
|
138
|
+
- lib/facter/rubyversion.rb
|
139
|
+
- lib/facter/selinux.rb
|
140
|
+
- lib/facter/ssh.rb
|
78
141
|
- lib/facter/system32.rb
|
79
|
-
- lib/facter/
|
80
|
-
- lib/facter/
|
81
|
-
- lib/facter/
|
142
|
+
- lib/facter/system_uptime.rb
|
143
|
+
- lib/facter/timezone.rb
|
144
|
+
- lib/facter/uniqueid.rb
|
145
|
+
- lib/facter/uptime.rb
|
146
|
+
- lib/facter/uptime_days.rb
|
147
|
+
- lib/facter/uptime_hours.rb
|
148
|
+
- lib/facter/uptime_seconds.rb
|
149
|
+
- lib/facter/util/architecture.rb
|
150
|
+
- lib/facter/util/collection.rb
|
151
|
+
- lib/facter/util/composite_loader.rb
|
152
|
+
- lib/facter/util/config.rb
|
153
|
+
- lib/facter/util/confine.rb
|
82
154
|
- lib/facter/util/dhcp_servers.rb
|
155
|
+
- lib/facter/util/directory_loader.rb
|
156
|
+
- lib/facter/util/ec2.rb
|
157
|
+
- lib/facter/util/fact.rb
|
158
|
+
- lib/facter/util/file_read.rb
|
83
159
|
- lib/facter/util/formatter.rb
|
84
|
-
- lib/facter/util/
|
160
|
+
- lib/facter/util/ip.rb
|
161
|
+
- lib/facter/util/ip/windows.rb
|
85
162
|
- lib/facter/util/loader.rb
|
86
|
-
- lib/facter/util/plist.rb
|
87
163
|
- lib/facter/util/macaddress.rb
|
88
|
-
- lib/facter/util/
|
89
|
-
- lib/facter/util/
|
164
|
+
- lib/facter/util/macosx.rb
|
165
|
+
- lib/facter/util/manufacturer.rb
|
166
|
+
- lib/facter/util/memory.rb
|
167
|
+
- lib/facter/util/netmask.rb
|
168
|
+
- lib/facter/util/normalization.rb
|
169
|
+
- lib/facter/util/nothing_loader.rb
|
90
170
|
- lib/facter/util/operatingsystem.rb
|
91
171
|
- lib/facter/util/parser.rb
|
172
|
+
- lib/facter/util/partitions.rb
|
173
|
+
- lib/facter/util/partitions/linux.rb
|
174
|
+
- lib/facter/util/partitions/openbsd.rb
|
175
|
+
- lib/facter/util/plist.rb
|
176
|
+
- lib/facter/util/plist/generator.rb
|
177
|
+
- lib/facter/util/plist/parser.rb
|
92
178
|
- lib/facter/util/posix.rb
|
93
|
-
- lib/facter/util/
|
179
|
+
- lib/facter/util/processor.rb
|
94
180
|
- lib/facter/util/registry.rb
|
95
|
-
- lib/facter/util/uptime.rb
|
96
181
|
- lib/facter/util/resolution.rb
|
182
|
+
- lib/facter/util/solaris_zones.rb
|
183
|
+
- lib/facter/util/unix_root.rb
|
184
|
+
- lib/facter/util/uptime.rb
|
185
|
+
- lib/facter/util/values.rb
|
97
186
|
- lib/facter/util/virtual.rb
|
98
|
-
- lib/facter/util/config.rb
|
99
|
-
- lib/facter/util/netmask.rb
|
100
187
|
- lib/facter/util/vlans.rb
|
101
|
-
- lib/facter/util/
|
102
|
-
- lib/facter/util/
|
103
|
-
- lib/facter/util/
|
104
|
-
- lib/facter/util/nothing_loader.rb
|
105
|
-
- lib/facter/util/xendomains.rb
|
106
|
-
- lib/facter/util/collection.rb
|
107
|
-
- lib/facter/util/architecture.rb
|
108
|
-
- lib/facter/util/normalization.rb
|
109
|
-
- lib/facter/util/confine.rb
|
110
|
-
- lib/facter/util/plist/parser.rb
|
111
|
-
- lib/facter/util/plist/generator.rb
|
112
|
-
- lib/facter/util/solaris_zones.rb
|
113
|
-
- lib/facter/util/memory.rb
|
114
|
-
- lib/facter/util/fact.rb
|
115
|
-
- lib/facter/util/wmi.rb
|
116
|
-
- lib/facter/util/directory_loader.rb
|
117
|
-
- lib/facter/util/ec2.rb
|
118
|
-
- lib/facter/util/file_read.rb
|
119
|
-
- lib/facter/util/ip.rb
|
120
|
-
- lib/facter/util/composite_loader.rb
|
188
|
+
- lib/facter/util/windows.rb
|
189
|
+
- lib/facter/util/windows/api_types.rb
|
190
|
+
- lib/facter/util/windows/dir.rb
|
121
191
|
- lib/facter/util/windows/error.rb
|
122
192
|
- lib/facter/util/windows/process.rb
|
123
|
-
- lib/facter/util/windows/api_types.rb
|
124
193
|
- lib/facter/util/windows/user.rb
|
125
|
-
- lib/facter/util/
|
126
|
-
- lib/facter/util/
|
127
|
-
- lib/facter/util/
|
128
|
-
- lib/facter/
|
129
|
-
- lib/facter/ec2/rest.rb
|
130
|
-
- lib/facter/macaddress.rb
|
131
|
-
- lib/facter/rubyversion.rb
|
132
|
-
- lib/facter/hostname.rb
|
133
|
-
- lib/facter/operatingsystem.rb
|
134
|
-
- lib/facter/lsbdistrelease.rb
|
135
|
-
- lib/facter/timezone.rb
|
136
|
-
- lib/facter/facterversion.rb
|
137
|
-
- lib/facter/core/suitable.rb
|
138
|
-
- lib/facter/core/resolvable.rb
|
139
|
-
- lib/facter/core/directed_graph.rb
|
140
|
-
- lib/facter/core/execution/windows.rb
|
141
|
-
- lib/facter/core/execution/posix.rb
|
142
|
-
- lib/facter/core/execution/base.rb
|
143
|
-
- lib/facter/core/execution.rb
|
144
|
-
- lib/facter/core/aggregate.rb
|
145
|
-
- lib/facter/core/logging.rb
|
146
|
-
- lib/facter/processors/os.rb
|
147
|
-
- lib/facter/processors.rb
|
148
|
-
- lib/facter/zfs_version.rb
|
149
|
-
- lib/facter/uptime_seconds.rb
|
150
|
-
- lib/facter/uptime.rb
|
151
|
-
- lib/facter/ps.rb
|
152
|
-
- lib/facter/operatingsystemmajrelease.rb
|
153
|
-
- lib/facter/kernelversion.rb
|
194
|
+
- lib/facter/util/windows_root.rb
|
195
|
+
- lib/facter/util/wmi.rb
|
196
|
+
- lib/facter/util/xendomains.rb
|
197
|
+
- lib/facter/version.rb
|
154
198
|
- lib/facter/virtual.rb
|
155
|
-
- lib/facter/lsbdistdescription.rb
|
156
|
-
- lib/facter/lsbrelease.rb
|
157
|
-
- lib/facter/fqdn.rb
|
158
|
-
- lib/facter/selinux.rb
|
159
|
-
- lib/facter/gce.rb
|
160
|
-
- lib/facter/netmask.rb
|
161
|
-
- lib/facter/interfaces.rb
|
162
199
|
- lib/facter/vlans.rb
|
163
|
-
- lib/facter/macosx.rb
|
164
|
-
- lib/facter/Cfkey.rb
|
165
|
-
- lib/facter/application.rb
|
166
|
-
- lib/facter/ipaddress6.rb
|
167
|
-
- lib/facter/id.rb
|
168
|
-
- lib/facter/lsbdistcodename.rb
|
169
|
-
- lib/facter/zpool_version.rb
|
170
200
|
- lib/facter/xendomains.rb
|
171
|
-
- lib/facter/
|
172
|
-
- lib/facter/architecture.rb
|
173
|
-
- lib/facter/ldom.rb
|
174
|
-
- lib/facter/operatingsystemrelease.rb
|
201
|
+
- lib/facter/zfs_version.rb
|
175
202
|
- lib/facter/zonename.rb
|
176
|
-
- lib/facter/
|
177
|
-
- lib/facter/
|
178
|
-
-
|
179
|
-
-
|
180
|
-
- lib/facter/lsbminordistrelease.rb
|
181
|
-
- lib/facter/iphostnumber.rb
|
182
|
-
- lib/facter/uptime_days.rb
|
183
|
-
- lib/facter/ipaddress.rb
|
184
|
-
- lib/facter/memory.rb
|
185
|
-
- lib/facter/filesystems.rb
|
186
|
-
- lib/facter/hardwareisa.rb
|
187
|
-
- lib/facter/gce/metadata.rb
|
188
|
-
- lib/facter/uniqueid.rb
|
189
|
-
- lib/facter/ssh.rb
|
190
|
-
- lib/facter/ec2.rb
|
191
|
-
- lib/facter/kernel.rb
|
192
|
-
- lib/facter/uptime_hours.rb
|
193
|
-
- lib/facter/rackspace.rb
|
194
|
-
- lib/facter/physicalprocessorcount.rb
|
195
|
-
- lib/facter/manufacturer.rb
|
196
|
-
- lib/facter/processor.rb
|
197
|
-
- lib/facter/operatingsystem/windows.rb
|
198
|
-
- lib/facter/operatingsystem/sunos.rb
|
199
|
-
- lib/facter/operatingsystem/implementation.rb
|
200
|
-
- lib/facter/operatingsystem/vmkernel.rb
|
201
|
-
- lib/facter/operatingsystem/cumuluslinux.rb
|
202
|
-
- lib/facter/operatingsystem/linux.rb
|
203
|
-
- lib/facter/operatingsystem/osreleaselinux.rb
|
204
|
-
- lib/facter/operatingsystem/base.rb
|
205
|
-
- lib/facter/kernelmajversion.rb
|
206
|
-
- lib/facter/domain.rb
|
207
|
-
- spec/lib/facter_spec/windows_network.rb
|
208
|
-
- spec/lib/facter_spec/cpuinfo.rb
|
203
|
+
- lib/facter/zones.rb
|
204
|
+
- lib/facter/zpool_version.rb
|
205
|
+
- spec/fixtures/cpuinfo/amd64dual
|
206
|
+
- spec/fixtures/cpuinfo/amd64dual-grep
|
209
207
|
- spec/fixtures/cpuinfo/amd64quad
|
210
|
-
- spec/fixtures/cpuinfo/
|
211
|
-
- spec/fixtures/cpuinfo/ppc64
|
208
|
+
- spec/fixtures/cpuinfo/amd64solo
|
212
209
|
- spec/fixtures/cpuinfo/amd64tri
|
210
|
+
- spec/fixtures/cpuinfo/amd64twentyfour
|
213
211
|
- spec/fixtures/cpuinfo/amd64twentyfour-grep
|
214
|
-
- spec/fixtures/cpuinfo/
|
215
|
-
- spec/fixtures/cpuinfo/ppc64le
|
212
|
+
- spec/fixtures/cpuinfo/bbg3-armel
|
216
213
|
- spec/fixtures/cpuinfo/beaglexm-armel
|
217
|
-
- spec/fixtures/cpuinfo/
|
214
|
+
- spec/fixtures/cpuinfo/panda-armel
|
215
|
+
- spec/fixtures/cpuinfo/ppc64
|
216
|
+
- spec/fixtures/cpuinfo/ppc64le
|
218
217
|
- spec/fixtures/cpuinfo/sparc
|
219
|
-
- spec/fixtures/cpuinfo/amd64dual
|
220
|
-
- spec/fixtures/cpuinfo/two_singlecore-grep
|
221
|
-
- spec/fixtures/cpuinfo/amd64dual-grep
|
222
|
-
- spec/fixtures/cpuinfo/bbg3-armel
|
223
218
|
- spec/fixtures/cpuinfo/two_multicore-grep
|
224
|
-
- spec/fixtures/
|
225
|
-
- spec/fixtures/virtual/proc_1_cgroup/not_in_a_container
|
226
|
-
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container_with_systemd_slices
|
227
|
-
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container
|
228
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
229
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
230
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
231
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
232
|
-
- spec/fixtures/hpux/unistd.h
|
233
|
-
- spec/fixtures/hpux/sched.models
|
234
|
-
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
235
|
-
- spec/fixtures/hpux/machinfo/superdome2-16s
|
219
|
+
- spec/fixtures/cpuinfo/two_singlecore-grep
|
236
220
|
- spec/fixtures/hpux/machinfo/hppa-rp4440
|
237
|
-
- spec/fixtures/hpux/machinfo/ia64-
|
221
|
+
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
238
222
|
- spec/fixtures/hpux/machinfo/ia64-rx6600
|
223
|
+
- spec/fixtures/hpux/machinfo/ia64-rx8640
|
239
224
|
- spec/fixtures/hpux/machinfo/superdome-server-SD32B
|
240
|
-
- spec/fixtures/
|
241
|
-
- spec/fixtures/
|
225
|
+
- spec/fixtures/hpux/machinfo/superdome2-16s
|
226
|
+
- spec/fixtures/hpux/sched.models
|
227
|
+
- spec/fixtures/hpux/unistd.h
|
228
|
+
- spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces
|
229
|
+
- spec/fixtures/ifconfig/centos_5_5
|
230
|
+
- spec/fixtures/ifconfig/centos_5_5_eth0
|
231
|
+
- spec/fixtures/ifconfig/darwin_10_3_0
|
232
|
+
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
233
|
+
- spec/fixtures/ifconfig/darwin_10_6_4
|
234
|
+
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
235
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
236
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
237
|
+
- spec/fixtures/ifconfig/darwin_9_8_0
|
238
|
+
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
239
|
+
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
240
|
+
- spec/fixtures/ifconfig/fedora_10
|
241
|
+
- spec/fixtures/ifconfig/fedora_10_eth0
|
242
|
+
- spec/fixtures/ifconfig/fedora_13
|
243
|
+
- spec/fixtures/ifconfig/fedora_13_eth0
|
244
|
+
- spec/fixtures/ifconfig/fedora_8
|
245
|
+
- spec/fixtures/ifconfig/fedora_8_eth0
|
246
|
+
- spec/fixtures/ifconfig/freebsd_6_0
|
247
|
+
- spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt
|
248
|
+
- spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt
|
249
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
250
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80
|
251
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6
|
252
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
253
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
254
|
+
- spec/fixtures/ifconfig/linux_ifconfig_venet
|
255
|
+
- spec/fixtures/ifconfig/open_solaris_10
|
256
|
+
- spec/fixtures/ifconfig/open_solaris_b132
|
257
|
+
- spec/fixtures/ifconfig/openbsd_bridge_rules
|
258
|
+
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
259
|
+
- spec/fixtures/ifconfig/ubuntu_7_04
|
260
|
+
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
261
|
+
- spec/fixtures/ldom/ldom_v1
|
262
|
+
- spec/fixtures/netstat/centos_5_5
|
263
|
+
- spec/fixtures/netstat/darwin_10_3_0
|
264
|
+
- spec/fixtures/netstat/darwin_10_6_4
|
265
|
+
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
266
|
+
- spec/fixtures/netstat/darwin_9_8_0
|
267
|
+
- spec/fixtures/netstat/fedora_10
|
268
|
+
- spec/fixtures/netstat/open_solaris_10
|
269
|
+
- spec/fixtures/netstat/open_solaris_b132
|
270
|
+
- spec/fixtures/netstat/ubuntu_7_04
|
242
271
|
- spec/fixtures/processorcount/solaris-psrinfo
|
243
|
-
- spec/fixtures/
|
244
|
-
- spec/fixtures/
|
245
|
-
- spec/fixtures/unit/
|
272
|
+
- spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info
|
273
|
+
- spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info
|
274
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_devices
|
275
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected
|
276
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp
|
277
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_static
|
278
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp
|
279
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static
|
280
|
+
- spec/fixtures/unit/dhcp_servers/route
|
281
|
+
- spec/fixtures/unit/dhcp_servers/route_nogw
|
282
|
+
- spec/fixtures/unit/ec2/rest/meta-data/root
|
283
|
+
- spec/fixtures/unit/filesystems/linux
|
284
|
+
- spec/fixtures/unit/gce/metadata/metadata.json
|
285
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
286
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
287
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
288
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60_v6.txt
|
289
|
+
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
290
|
+
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
291
|
+
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
292
|
+
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
293
|
+
- spec/fixtures/unit/kernelrelease/openbsd-5.3
|
294
|
+
- spec/fixtures/unit/kernelrelease/openbsd-5.3-current
|
295
|
+
- spec/fixtures/unit/memory/aix-svmon
|
296
|
+
- spec/fixtures/unit/memory/aix-swap_l
|
297
|
+
- spec/fixtures/unit/memory/darwin-swapinfo-multiple
|
298
|
+
- spec/fixtures/unit/memory/darwin-swapinfo-single
|
299
|
+
- spec/fixtures/unit/memory/darwin-vm_stat
|
300
|
+
- spec/fixtures/unit/memory/dragonfly-vmstat
|
301
|
+
- spec/fixtures/unit/memory/freebsd-vmstat
|
302
|
+
- spec/fixtures/unit/memory/linux-proc_meminfo
|
303
|
+
- spec/fixtures/unit/memory/openbsd-vmstat
|
304
|
+
- spec/fixtures/unit/memory/smartos_zone_swap_l-single
|
305
|
+
- spec/fixtures/unit/memory/solaris-prtconf
|
306
|
+
- spec/fixtures/unit/memory/solaris-swap_l-multiple
|
307
|
+
- spec/fixtures/unit/memory/solaris-swap_l-single
|
308
|
+
- spec/fixtures/unit/memory/solaris-vmstat
|
246
309
|
- spec/fixtures/unit/netmask/darwin_10_8_5.txt
|
247
|
-
- spec/fixtures/unit/
|
310
|
+
- spec/fixtures/unit/netmask/ifconfig_aix_7.txt
|
311
|
+
- spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt
|
312
|
+
- spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt
|
313
|
+
- spec/fixtures/unit/processors/os/darwin-system-profiler
|
248
314
|
- spec/fixtures/unit/selinux/selinux_sestatus
|
249
|
-
- spec/fixtures/unit/
|
250
|
-
- spec/fixtures/unit/
|
251
|
-
- spec/fixtures/unit/util/
|
252
|
-
- spec/fixtures/unit/util/
|
315
|
+
- spec/fixtures/unit/selinux/selinux_sestatus2
|
316
|
+
- spec/fixtures/unit/util/dhcp_servers/route
|
317
|
+
- spec/fixtures/unit/util/dhcp_servers/route_nogw
|
318
|
+
- spec/fixtures/unit/util/ec2/centos-arp-ec2.out
|
253
319
|
- spec/fixtures/unit/util/ec2/linux-arp-ec2.out
|
320
|
+
- spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out
|
254
321
|
- spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out
|
255
|
-
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
256
322
|
- spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out
|
257
|
-
- spec/fixtures/unit/util/ec2/
|
258
|
-
- spec/fixtures/unit/util/
|
259
|
-
- spec/fixtures/unit/util/processor/x86-pentium2
|
260
|
-
- spec/fixtures/unit/util/processor/solaris-sun4u
|
261
|
-
- spec/fixtures/unit/util/processor/solaris-i86pc
|
262
|
-
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
263
|
-
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
264
|
-
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
265
|
-
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
266
|
-
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
267
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
268
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
269
|
-
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
270
|
-
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
271
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
323
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
324
|
+
- spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig
|
272
325
|
- spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
|
273
|
-
- spec/fixtures/unit/util/ip/
|
274
|
-
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
275
|
-
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
276
|
-
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
277
|
-
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
326
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces
|
278
327
|
- spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface
|
328
|
+
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
279
329
|
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0
|
280
|
-
- spec/fixtures/unit/util/ip/
|
281
|
-
- spec/fixtures/unit/util/ip/
|
282
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
283
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
330
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
331
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
284
332
|
- spec/fixtures/unit/util/ip/hpux_1111_lanscan
|
285
|
-
- spec/fixtures/unit/util/ip/
|
286
|
-
- spec/fixtures/unit/util/ip/
|
287
|
-
- spec/fixtures/unit/util/ip/
|
333
|
+
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
334
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
335
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
336
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
337
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
338
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
339
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
340
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
341
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0
|
288
342
|
- spec/fixtures/unit/util/ip/hpux_1131_lanscan
|
289
|
-
- spec/fixtures/unit/util/ip/
|
290
|
-
- spec/fixtures/unit/util/ip/
|
343
|
+
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
344
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1
|
291
345
|
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4
|
346
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1
|
292
347
|
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0
|
348
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan
|
349
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
293
350
|
- spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0
|
294
|
-
- spec/fixtures/unit/util/ip/
|
295
|
-
- spec/fixtures/unit/util/ip/
|
296
|
-
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
297
|
-
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
351
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_eth0
|
352
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
298
353
|
- spec/fixtures/unit/util/ip/linux_get_single_interface_lo
|
299
|
-
- spec/fixtures/unit/util/
|
300
|
-
- spec/fixtures/unit/util/
|
354
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
355
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_ib0
|
356
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
|
357
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
358
|
+
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
359
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface
|
360
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
301
361
|
- spec/fixtures/unit/util/manufacturer/freebsd_dmidecode
|
302
|
-
- spec/fixtures/unit/util/manufacturer/smartos_smbios
|
303
|
-
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
304
362
|
- spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode
|
305
363
|
- spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces
|
364
|
+
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
365
|
+
- spec/fixtures/unit/util/manufacturer/smartos_smbios
|
306
366
|
- spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag
|
307
367
|
- spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag
|
368
|
+
- spec/fixtures/unit/util/operatingsystem/coreos.txt
|
369
|
+
- spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt
|
370
|
+
- spec/fixtures/unit/util/operatingsystem/redhat-7.txt
|
371
|
+
- spec/fixtures/unit/util/operatingsystem/sabayon.txt
|
372
|
+
- spec/fixtures/unit/util/operatingsystem/wheezy.txt
|
308
373
|
- spec/fixtures/unit/util/partitions/partitions/mount
|
374
|
+
- spec/fixtures/unit/util/processor/solaris-i86pc
|
375
|
+
- spec/fixtures/unit/util/processor/solaris-sun4u
|
376
|
+
- spec/fixtures/unit/util/processor/x86-pentium2
|
377
|
+
- spec/fixtures/unit/util/uptime/kstat_boot_time
|
309
378
|
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin
|
310
379
|
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd
|
311
380
|
- spec/fixtures/unit/util/uptime/ubuntu_proc_uptime
|
312
|
-
- spec/fixtures/unit/util/
|
381
|
+
- spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
|
382
|
+
- spec/fixtures/unit/util/virtual/solaris10_proc_self_status1
|
383
|
+
- spec/fixtures/unit/util/vlans/centos-5-no-vlans
|
384
|
+
- spec/fixtures/unit/util/vlans/linux_vlan_config
|
313
385
|
- spec/fixtures/unit/util/xendomains/xendomains
|
314
|
-
- spec/fixtures/unit/
|
315
|
-
- spec/fixtures/unit/
|
316
|
-
- spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt
|
317
|
-
- spec/fixtures/unit/util/operatingsystem/sabayon.txt
|
318
|
-
- spec/fixtures/unit/util/operatingsystem/wheezy.txt
|
319
|
-
- spec/fixtures/unit/util/operatingsystem/coreos.txt
|
320
|
-
- spec/fixtures/unit/util/operatingsystem/redhat-7.txt
|
321
|
-
- spec/fixtures/unit/ec2/rest/meta-data/root
|
322
|
-
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
323
|
-
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
324
|
-
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
325
|
-
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
326
|
-
- spec/fixtures/unit/processors/os/darwin-system-profiler
|
327
|
-
- spec/fixtures/unit/zfs_version/zfs_new
|
328
|
-
- spec/fixtures/unit/zfs_version/solaris_11
|
386
|
+
- spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt
|
387
|
+
- spec/fixtures/unit/zfs_version/freebsd_8.2
|
329
388
|
- spec/fixtures/unit/zfs_version/freebsd_9.0
|
330
389
|
- spec/fixtures/unit/zfs_version/linux-fuse_0.6.9
|
390
|
+
- spec/fixtures/unit/zfs_version/solaris_10
|
391
|
+
- spec/fixtures/unit/zfs_version/solaris_11
|
392
|
+
- spec/fixtures/unit/zfs_version/zfs_new
|
331
393
|
- spec/fixtures/unit/zfs_version/zfs_old
|
332
394
|
- spec/fixtures/unit/zfs_version/zfsonlinux_0.6.1
|
333
|
-
- spec/fixtures/unit/
|
334
|
-
- spec/fixtures/unit/zfs_version/solaris_10
|
335
|
-
- spec/fixtures/unit/kernelrelease/openbsd-5.3-current
|
336
|
-
- spec/fixtures/unit/kernelrelease/openbsd-5.3
|
337
|
-
- spec/fixtures/unit/memory/solaris-vmstat
|
338
|
-
- spec/fixtures/unit/memory/dragonfly-vmstat
|
339
|
-
- spec/fixtures/unit/memory/solaris-prtconf
|
340
|
-
- spec/fixtures/unit/memory/solaris-swap_l-multiple
|
341
|
-
- spec/fixtures/unit/memory/aix-swap_l
|
342
|
-
- spec/fixtures/unit/memory/solaris-swap_l-single
|
343
|
-
- spec/fixtures/unit/memory/smartos_zone_swap_l-single
|
344
|
-
- spec/fixtures/unit/memory/linux-proc_meminfo
|
345
|
-
- spec/fixtures/unit/memory/darwin-swapinfo-multiple
|
346
|
-
- spec/fixtures/unit/memory/darwin-vm_stat
|
347
|
-
- spec/fixtures/unit/memory/aix-svmon
|
348
|
-
- spec/fixtures/unit/memory/freebsd-vmstat
|
349
|
-
- spec/fixtures/unit/memory/darwin-swapinfo-single
|
350
|
-
- spec/fixtures/unit/memory/openbsd-vmstat
|
351
|
-
- spec/fixtures/unit/gce/metadata/metadata.json
|
352
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_static
|
353
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp
|
354
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_devices
|
355
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected
|
356
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp
|
357
|
-
- spec/fixtures/unit/dhcp_servers/route
|
358
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static
|
359
|
-
- spec/fixtures/unit/dhcp_servers/route_nogw
|
360
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
361
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
362
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
363
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60_v6.txt
|
364
|
-
- spec/fixtures/unit/zpool_version/solaris_11
|
395
|
+
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
365
396
|
- spec/fixtures/unit/zpool_version/freebsd_9.0
|
366
397
|
- spec/fixtures/unit/zpool_version/linux-fuse_0.6.9
|
367
|
-
- spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1
|
368
|
-
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
369
398
|
- spec/fixtures/unit/zpool_version/solaris_10
|
370
|
-
- spec/fixtures/
|
371
|
-
- spec/fixtures/
|
372
|
-
- spec/fixtures/
|
373
|
-
- spec/fixtures/
|
374
|
-
- spec/fixtures/
|
375
|
-
- spec/fixtures/
|
376
|
-
- spec/fixtures/
|
377
|
-
- spec/fixtures/
|
378
|
-
- spec/fixtures/
|
379
|
-
- spec/fixtures/
|
380
|
-
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
381
|
-
- spec/fixtures/ifconfig/centos_5_5
|
382
|
-
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
383
|
-
- spec/fixtures/ifconfig/fedora_13
|
384
|
-
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
385
|
-
- spec/fixtures/ifconfig/fedora_13_eth0
|
386
|
-
- spec/fixtures/ifconfig/darwin_9_8_0
|
387
|
-
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
388
|
-
- spec/fixtures/ifconfig/ubuntu_7_04
|
389
|
-
- spec/fixtures/ifconfig/darwin_10_6_4
|
390
|
-
- spec/fixtures/ifconfig/fedora_10_eth0
|
391
|
-
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
392
|
-
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
393
|
-
- spec/fixtures/ifconfig/open_solaris_10
|
394
|
-
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
395
|
-
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
396
|
-
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
397
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
398
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6
|
399
|
-
- spec/fixtures/ifconfig/fedora_8_eth0
|
400
|
-
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
401
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80
|
402
|
-
- spec/fixtures/ifconfig/fedora_10
|
403
|
-
- spec/fixtures/netstat/open_solaris_b132
|
404
|
-
- spec/fixtures/netstat/darwin_10_3_0
|
405
|
-
- spec/fixtures/netstat/centos_5_5
|
406
|
-
- spec/fixtures/netstat/darwin_9_8_0
|
407
|
-
- spec/fixtures/netstat/ubuntu_7_04
|
408
|
-
- spec/fixtures/netstat/darwin_10_6_4
|
409
|
-
- spec/fixtures/netstat/open_solaris_10
|
410
|
-
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
411
|
-
- spec/fixtures/netstat/fedora_10
|
412
|
-
- spec/fixtures/ldom/ldom_v1
|
413
|
-
- spec/puppetlabs_spec_helper.rb
|
414
|
-
- spec/integration/util/windows/user_spec.rb
|
399
|
+
- spec/fixtures/unit/zpool_version/solaris_11
|
400
|
+
- spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1
|
401
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_container
|
402
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container
|
403
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container_with_systemd_slices
|
404
|
+
- spec/fixtures/virtual/proc_1_cgroup/not_in_a_container
|
405
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
406
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
407
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
408
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
415
409
|
- spec/integration/facter_spec.rb
|
410
|
+
- spec/integration/util/windows/user_spec.rb
|
411
|
+
- spec/lib/facter_spec/cpuinfo.rb
|
412
|
+
- spec/lib/facter_spec/windows_network.rb
|
413
|
+
- spec/puppetlabs_spec/files.rb
|
416
414
|
- spec/puppetlabs_spec/fixtures.rb
|
417
415
|
- spec/puppetlabs_spec/matchers.rb
|
418
|
-
- spec/puppetlabs_spec/files.rb
|
419
416
|
- spec/puppetlabs_spec/verbose.rb
|
417
|
+
- spec/puppetlabs_spec_helper.rb
|
420
418
|
- spec/schema/validate_facter_schema.rb
|
419
|
+
- spec/shared_contexts/platform.rb
|
421
420
|
- spec/shared_formats/parses.rb
|
422
|
-
- spec/
|
423
|
-
- spec/unit/fqdn_spec.rb
|
424
|
-
- spec/unit/uniqueid_spec.rb
|
421
|
+
- spec/spec_helper.rb
|
425
422
|
- spec/unit/application_spec.rb
|
426
|
-
- spec/unit/kernelmajversion_spec.rb
|
427
423
|
- spec/unit/architecture_spec.rb
|
428
424
|
- spec/unit/blockdevices_spec.rb
|
429
|
-
- spec/unit/
|
430
|
-
- spec/unit/rubyplatform_spec.rb
|
431
|
-
- spec/unit/util/file_read_spec.rb
|
432
|
-
- spec/unit/util/normalization_spec.rb
|
433
|
-
- spec/unit/util/partitions_spec.rb
|
434
|
-
- spec/unit/util/confine_spec.rb
|
435
|
-
- spec/unit/util/manufacturer_spec.rb
|
436
|
-
- spec/unit/util/vlans_spec.rb
|
437
|
-
- spec/unit/util/collection_spec.rb
|
438
|
-
- spec/unit/util/formatter_spec.rb
|
439
|
-
- spec/unit/util/ip/windows_spec.rb
|
440
|
-
- spec/unit/util/posix_spec.rb
|
441
|
-
- spec/unit/util/fact_spec.rb
|
442
|
-
- spec/unit/util/config_spec.rb
|
443
|
-
- spec/unit/util/resolution_spec.rb
|
444
|
-
- spec/unit/util/virtual_spec.rb
|
445
|
-
- spec/unit/util/macosx_spec.rb
|
446
|
-
- spec/unit/util/directory_loader_spec.rb
|
447
|
-
- spec/unit/util/parser_spec.rb
|
448
|
-
- spec/unit/util/partitions/partitions_spec.rb
|
449
|
-
- spec/unit/util/values_spec.rb
|
450
|
-
- spec/unit/util/ip_spec.rb
|
451
|
-
- spec/unit/util/registry_spec.rb
|
452
|
-
- spec/unit/util/solaris_zones_spec.rb
|
453
|
-
- spec/unit/util/dhcp_servers_spec.rb
|
454
|
-
- spec/unit/util/uptime_spec.rb
|
455
|
-
- spec/unit/util/xendomains_spec.rb
|
456
|
-
- spec/unit/util/processor_spec.rb
|
457
|
-
- spec/unit/util/wmi_spec.rb
|
458
|
-
- spec/unit/util/macaddress_spec.rb
|
459
|
-
- spec/unit/util/ec2_spec.rb
|
460
|
-
- spec/unit/util/operatingsystem_spec.rb
|
461
|
-
- spec/unit/util/loader_spec.rb
|
462
|
-
- spec/unit/ec2/rest_spec.rb
|
463
|
-
- spec/unit/operatingsystemmajrelease_spec.rb
|
464
|
-
- spec/unit/operatingsystemrelease_spec.rb
|
465
|
-
- spec/unit/partitions_spec.rb
|
466
|
-
- spec/unit/ps_spec.rb
|
467
|
-
- spec/unit/filesystems_spec.rb
|
468
|
-
- spec/unit/lsbdistrelease_spec.rb
|
469
|
-
- spec/unit/manufacturer_spec.rb
|
470
|
-
- spec/unit/id_spec.rb
|
471
|
-
- spec/unit/core/logging_spec.rb
|
425
|
+
- spec/unit/core/aggregate_spec.rb
|
472
426
|
- spec/unit/core/directed_graph_spec.rb
|
473
|
-
- spec/unit/core/execution/windows_spec.rb
|
474
427
|
- spec/unit/core/execution/base_spec.rb
|
475
428
|
- spec/unit/core/execution/posix_spec.rb
|
476
|
-
- spec/unit/core/
|
477
|
-
- spec/unit/core/resolvable_spec.rb
|
478
|
-
- spec/unit/core/aggregate_spec.rb
|
429
|
+
- spec/unit/core/execution/windows_spec.rb
|
479
430
|
- spec/unit/core/execution_spec.rb
|
480
|
-
- spec/unit/
|
481
|
-
- spec/unit/
|
482
|
-
- spec/unit/
|
483
|
-
- spec/unit/system_uptime_spec.rb
|
484
|
-
- spec/unit/hardwareisa_spec.rb
|
485
|
-
- spec/unit/lsbminordistrelease_spec.rb
|
486
|
-
- spec/unit/virtual_spec.rb
|
487
|
-
- spec/unit/zpool_version_spec.rb
|
488
|
-
- spec/unit/zones_spec.rb
|
489
|
-
- spec/unit/ipaddress6_spec.rb
|
490
|
-
- spec/unit/selinux_spec.rb
|
491
|
-
- spec/unit/lsbdistdescription_spec.rb
|
492
|
-
- spec/unit/kernelversion_spec.rb
|
493
|
-
- spec/unit/lsbdistcodename_spec.rb
|
494
|
-
- spec/unit/interfaces_spec.rb
|
495
|
-
- spec/unit/kernel_spec.rb
|
496
|
-
- spec/unit/memory_spec.rb
|
497
|
-
- spec/unit/ldom_spec.rb
|
498
|
-
- spec/unit/zfs_version_spec.rb
|
499
|
-
- spec/unit/hardwaremodel_spec.rb
|
500
|
-
- spec/unit/version_spec.rb
|
501
|
-
- spec/unit/gce_spec.rb
|
502
|
-
- spec/unit/netmask_spec.rb
|
503
|
-
- spec/unit/kernelrelease_spec.rb
|
504
|
-
- spec/unit/lsbrelease_spec.rb
|
431
|
+
- spec/unit/core/logging_spec.rb
|
432
|
+
- spec/unit/core/resolvable_spec.rb
|
433
|
+
- spec/unit/core/suitable_spec.rb
|
505
434
|
- spec/unit/dhcp_servers_spec.rb
|
506
|
-
- spec/unit/
|
507
|
-
- spec/unit/
|
508
|
-
- spec/unit/
|
509
|
-
- spec/unit/rackspace_spec.rb
|
510
|
-
- spec/unit/processor_spec.rb
|
435
|
+
- spec/unit/domain_spec.rb
|
436
|
+
- spec/unit/ec2/rest_spec.rb
|
437
|
+
- spec/unit/ec2_spec.rb
|
511
438
|
- spec/unit/facter_spec.rb
|
439
|
+
- spec/unit/filesystems_spec.rb
|
440
|
+
- spec/unit/fqdn_spec.rb
|
441
|
+
- spec/unit/gce/metadata_spec.rb
|
442
|
+
- spec/unit/gce_spec.rb
|
512
443
|
- spec/unit/gid_spec.rb
|
513
|
-
- spec/unit/
|
444
|
+
- spec/unit/hardwareisa_spec.rb
|
445
|
+
- spec/unit/hardwaremodel_spec.rb
|
514
446
|
- spec/unit/hostname_spec.rb
|
515
|
-
- spec/unit/
|
447
|
+
- spec/unit/id_spec.rb
|
448
|
+
- spec/unit/interfaces_spec.rb
|
449
|
+
- spec/unit/ipaddress6_spec.rb
|
450
|
+
- spec/unit/ipaddress_spec.rb
|
451
|
+
- spec/unit/kernel_spec.rb
|
452
|
+
- spec/unit/kernelmajversion_spec.rb
|
453
|
+
- spec/unit/kernelrelease_spec.rb
|
454
|
+
- spec/unit/kernelversion_spec.rb
|
455
|
+
- spec/unit/ldom_spec.rb
|
456
|
+
- spec/unit/lsbdistcodename_spec.rb
|
457
|
+
- spec/unit/lsbdistdescription_spec.rb
|
516
458
|
- spec/unit/lsbdistid_spec.rb
|
459
|
+
- spec/unit/lsbdistrelease_spec.rb
|
460
|
+
- spec/unit/lsbmajdistrelease_spec.rb
|
461
|
+
- spec/unit/lsbminordistrelease_spec.rb
|
462
|
+
- spec/unit/lsbrelease_spec.rb
|
517
463
|
- spec/unit/macaddress_spec.rb
|
518
|
-
- spec/unit/
|
519
|
-
- spec/unit/
|
520
|
-
- spec/unit/
|
521
|
-
- spec/unit/operatingsystem/windows_spec.rb
|
464
|
+
- spec/unit/manufacturer_spec.rb
|
465
|
+
- spec/unit/memory_spec.rb
|
466
|
+
- spec/unit/netmask_spec.rb
|
522
467
|
- spec/unit/operatingsystem/base_spec.rb
|
523
|
-
- spec/unit/operatingsystem/linux_spec.rb
|
524
468
|
- spec/unit/operatingsystem/cumuluslinux_spec.rb
|
469
|
+
- spec/unit/operatingsystem/implementation_spec.rb
|
470
|
+
- spec/unit/operatingsystem/linux_spec.rb
|
525
471
|
- spec/unit/operatingsystem/sunos_spec.rb
|
526
472
|
- spec/unit/operatingsystem/vmkernel_spec.rb
|
527
|
-
- spec/unit/operatingsystem/
|
528
|
-
- spec/unit/
|
473
|
+
- spec/unit/operatingsystem/windows_spec.rb
|
474
|
+
- spec/unit/operatingsystem_spec.rb
|
475
|
+
- spec/unit/operatingsystemmajrelease_spec.rb
|
476
|
+
- spec/unit/operatingsystemrelease_spec.rb
|
477
|
+
- spec/unit/os_spec.rb
|
529
478
|
- spec/unit/osfamily_spec.rb
|
530
|
-
- spec/
|
479
|
+
- spec/unit/partitions_spec.rb
|
480
|
+
- spec/unit/physicalprocessorcount_spec.rb
|
481
|
+
- spec/unit/processor_spec.rb
|
482
|
+
- spec/unit/processors/os_spec.rb
|
483
|
+
- spec/unit/processors_spec.rb
|
484
|
+
- spec/unit/ps_spec.rb
|
485
|
+
- spec/unit/rackspace_spec.rb
|
486
|
+
- spec/unit/rubyplatform_spec.rb
|
487
|
+
- spec/unit/selinux_spec.rb
|
488
|
+
- spec/unit/ssh_spec.rb
|
489
|
+
- spec/unit/system32_spec.rb
|
490
|
+
- spec/unit/system_uptime_spec.rb
|
491
|
+
- spec/unit/uniqueid_spec.rb
|
492
|
+
- spec/unit/uptime_spec.rb
|
493
|
+
- spec/unit/util/collection_spec.rb
|
494
|
+
- spec/unit/util/config_spec.rb
|
495
|
+
- spec/unit/util/confine_spec.rb
|
496
|
+
- spec/unit/util/dhcp_servers_spec.rb
|
497
|
+
- spec/unit/util/directory_loader_spec.rb
|
498
|
+
- spec/unit/util/ec2_spec.rb
|
499
|
+
- spec/unit/util/fact_spec.rb
|
500
|
+
- spec/unit/util/file_read_spec.rb
|
501
|
+
- spec/unit/util/formatter_spec.rb
|
502
|
+
- spec/unit/util/ip/windows_spec.rb
|
503
|
+
- spec/unit/util/ip_spec.rb
|
504
|
+
- spec/unit/util/loader_spec.rb
|
505
|
+
- spec/unit/util/macaddress_spec.rb
|
506
|
+
- spec/unit/util/macosx_spec.rb
|
507
|
+
- spec/unit/util/manufacturer_spec.rb
|
508
|
+
- spec/unit/util/normalization_spec.rb
|
509
|
+
- spec/unit/util/operatingsystem_spec.rb
|
510
|
+
- spec/unit/util/parser_spec.rb
|
511
|
+
- spec/unit/util/partitions/partitions_spec.rb
|
512
|
+
- spec/unit/util/partitions_spec.rb
|
513
|
+
- spec/unit/util/posix_spec.rb
|
514
|
+
- spec/unit/util/processor_spec.rb
|
515
|
+
- spec/unit/util/registry_spec.rb
|
516
|
+
- spec/unit/util/resolution_spec.rb
|
517
|
+
- spec/unit/util/solaris_zones_spec.rb
|
518
|
+
- spec/unit/util/uptime_spec.rb
|
519
|
+
- spec/unit/util/values_spec.rb
|
520
|
+
- spec/unit/util/virtual_spec.rb
|
521
|
+
- spec/unit/util/vlans_spec.rb
|
522
|
+
- spec/unit/util/wmi_spec.rb
|
523
|
+
- spec/unit/util/xendomains_spec.rb
|
524
|
+
- spec/unit/version_spec.rb
|
525
|
+
- spec/unit/virtual_spec.rb
|
526
|
+
- spec/unit/zfs_version_spec.rb
|
527
|
+
- spec/unit/zonename_spec.rb
|
528
|
+
- spec/unit/zones_spec.rb
|
529
|
+
- spec/unit/zpool_version_spec.rb
|
531
530
|
- spec/watchr.rb
|
532
|
-
- spec/shared_contexts/platform.rb
|
533
531
|
homepage: https://github.com/puppetlabs/facter
|
534
532
|
licenses: []
|
533
|
+
metadata: {}
|
535
534
|
post_install_message:
|
536
535
|
rdoc_options: []
|
537
536
|
require_paths:
|
538
537
|
- lib
|
539
538
|
required_ruby_version: !ruby/object:Gem::Requirement
|
540
|
-
none: false
|
541
539
|
requirements:
|
542
|
-
- -
|
540
|
+
- - ">="
|
543
541
|
- !ruby/object:Gem::Version
|
544
542
|
version: '0'
|
545
543
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
546
|
-
none: false
|
547
544
|
requirements:
|
548
|
-
- -
|
545
|
+
- - ">="
|
549
546
|
- !ruby/object:Gem::Version
|
550
547
|
version: '0'
|
551
548
|
requirements: []
|
552
549
|
rubyforge_project:
|
553
|
-
rubygems_version:
|
550
|
+
rubygems_version: 2.6.14
|
554
551
|
signing_key:
|
555
|
-
specification_version:
|
552
|
+
specification_version: 4
|
556
553
|
summary: Facter, a system inventory tool
|
557
554
|
test_files:
|
558
|
-
- spec/
|
559
|
-
- spec/
|
555
|
+
- spec/fixtures/cpuinfo/amd64dual
|
556
|
+
- spec/fixtures/cpuinfo/amd64dual-grep
|
560
557
|
- spec/fixtures/cpuinfo/amd64quad
|
561
|
-
- spec/fixtures/cpuinfo/panda-armel
|
562
|
-
- spec/fixtures/cpuinfo/ppc64
|
563
|
-
- spec/fixtures/cpuinfo/amd64tri
|
564
|
-
- spec/fixtures/cpuinfo/amd64twentyfour-grep
|
565
558
|
- spec/fixtures/cpuinfo/amd64solo
|
566
|
-
- spec/fixtures/cpuinfo/
|
567
|
-
- spec/fixtures/cpuinfo/beaglexm-armel
|
559
|
+
- spec/fixtures/cpuinfo/amd64tri
|
568
560
|
- spec/fixtures/cpuinfo/amd64twentyfour
|
569
|
-
- spec/fixtures/cpuinfo/
|
570
|
-
- spec/fixtures/cpuinfo/amd64dual
|
571
|
-
- spec/fixtures/cpuinfo/two_singlecore-grep
|
572
|
-
- spec/fixtures/cpuinfo/amd64dual-grep
|
561
|
+
- spec/fixtures/cpuinfo/amd64twentyfour-grep
|
573
562
|
- spec/fixtures/cpuinfo/bbg3-armel
|
563
|
+
- spec/fixtures/cpuinfo/beaglexm-armel
|
564
|
+
- spec/fixtures/cpuinfo/panda-armel
|
565
|
+
- spec/fixtures/cpuinfo/ppc64
|
566
|
+
- spec/fixtures/cpuinfo/ppc64le
|
567
|
+
- spec/fixtures/cpuinfo/sparc
|
574
568
|
- spec/fixtures/cpuinfo/two_multicore-grep
|
575
|
-
- spec/fixtures/
|
576
|
-
- spec/fixtures/virtual/proc_1_cgroup/not_in_a_container
|
577
|
-
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container_with_systemd_slices
|
578
|
-
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container
|
579
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
580
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
581
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
582
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
583
|
-
- spec/fixtures/hpux/unistd.h
|
584
|
-
- spec/fixtures/hpux/sched.models
|
585
|
-
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
586
|
-
- spec/fixtures/hpux/machinfo/superdome2-16s
|
569
|
+
- spec/fixtures/cpuinfo/two_singlecore-grep
|
587
570
|
- spec/fixtures/hpux/machinfo/hppa-rp4440
|
588
|
-
- spec/fixtures/hpux/machinfo/ia64-
|
571
|
+
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
589
572
|
- spec/fixtures/hpux/machinfo/ia64-rx6600
|
573
|
+
- spec/fixtures/hpux/machinfo/ia64-rx8640
|
590
574
|
- spec/fixtures/hpux/machinfo/superdome-server-SD32B
|
591
|
-
- spec/fixtures/
|
592
|
-
- spec/fixtures/
|
575
|
+
- spec/fixtures/hpux/machinfo/superdome2-16s
|
576
|
+
- spec/fixtures/hpux/sched.models
|
577
|
+
- spec/fixtures/hpux/unistd.h
|
578
|
+
- spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces
|
579
|
+
- spec/fixtures/ifconfig/centos_5_5
|
580
|
+
- spec/fixtures/ifconfig/centos_5_5_eth0
|
581
|
+
- spec/fixtures/ifconfig/darwin_10_3_0
|
582
|
+
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
583
|
+
- spec/fixtures/ifconfig/darwin_10_6_4
|
584
|
+
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
585
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
586
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
587
|
+
- spec/fixtures/ifconfig/darwin_9_8_0
|
588
|
+
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
589
|
+
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
590
|
+
- spec/fixtures/ifconfig/fedora_10
|
591
|
+
- spec/fixtures/ifconfig/fedora_10_eth0
|
592
|
+
- spec/fixtures/ifconfig/fedora_13
|
593
|
+
- spec/fixtures/ifconfig/fedora_13_eth0
|
594
|
+
- spec/fixtures/ifconfig/fedora_8
|
595
|
+
- spec/fixtures/ifconfig/fedora_8_eth0
|
596
|
+
- spec/fixtures/ifconfig/freebsd_6_0
|
597
|
+
- spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt
|
598
|
+
- spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt
|
599
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
600
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80
|
601
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6
|
602
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
603
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
604
|
+
- spec/fixtures/ifconfig/linux_ifconfig_venet
|
605
|
+
- spec/fixtures/ifconfig/open_solaris_10
|
606
|
+
- spec/fixtures/ifconfig/open_solaris_b132
|
607
|
+
- spec/fixtures/ifconfig/openbsd_bridge_rules
|
608
|
+
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
609
|
+
- spec/fixtures/ifconfig/ubuntu_7_04
|
610
|
+
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
611
|
+
- spec/fixtures/ldom/ldom_v1
|
612
|
+
- spec/fixtures/netstat/centos_5_5
|
613
|
+
- spec/fixtures/netstat/darwin_10_3_0
|
614
|
+
- spec/fixtures/netstat/darwin_10_6_4
|
615
|
+
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
616
|
+
- spec/fixtures/netstat/darwin_9_8_0
|
617
|
+
- spec/fixtures/netstat/fedora_10
|
618
|
+
- spec/fixtures/netstat/open_solaris_10
|
619
|
+
- spec/fixtures/netstat/open_solaris_b132
|
620
|
+
- spec/fixtures/netstat/ubuntu_7_04
|
593
621
|
- spec/fixtures/processorcount/solaris-psrinfo
|
594
|
-
- spec/fixtures/
|
595
|
-
- spec/fixtures/
|
596
|
-
- spec/fixtures/unit/
|
622
|
+
- spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info
|
623
|
+
- spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info
|
624
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_devices
|
625
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected
|
626
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp
|
627
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_static
|
628
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp
|
629
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static
|
630
|
+
- spec/fixtures/unit/dhcp_servers/route
|
631
|
+
- spec/fixtures/unit/dhcp_servers/route_nogw
|
632
|
+
- spec/fixtures/unit/ec2/rest/meta-data/root
|
633
|
+
- spec/fixtures/unit/filesystems/linux
|
634
|
+
- spec/fixtures/unit/gce/metadata/metadata.json
|
635
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
636
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
637
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
638
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60_v6.txt
|
639
|
+
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
640
|
+
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
641
|
+
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
642
|
+
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
643
|
+
- spec/fixtures/unit/kernelrelease/openbsd-5.3
|
644
|
+
- spec/fixtures/unit/kernelrelease/openbsd-5.3-current
|
645
|
+
- spec/fixtures/unit/memory/aix-svmon
|
646
|
+
- spec/fixtures/unit/memory/aix-swap_l
|
647
|
+
- spec/fixtures/unit/memory/darwin-swapinfo-multiple
|
648
|
+
- spec/fixtures/unit/memory/darwin-swapinfo-single
|
649
|
+
- spec/fixtures/unit/memory/darwin-vm_stat
|
650
|
+
- spec/fixtures/unit/memory/dragonfly-vmstat
|
651
|
+
- spec/fixtures/unit/memory/freebsd-vmstat
|
652
|
+
- spec/fixtures/unit/memory/linux-proc_meminfo
|
653
|
+
- spec/fixtures/unit/memory/openbsd-vmstat
|
654
|
+
- spec/fixtures/unit/memory/smartos_zone_swap_l-single
|
655
|
+
- spec/fixtures/unit/memory/solaris-prtconf
|
656
|
+
- spec/fixtures/unit/memory/solaris-swap_l-multiple
|
657
|
+
- spec/fixtures/unit/memory/solaris-swap_l-single
|
658
|
+
- spec/fixtures/unit/memory/solaris-vmstat
|
597
659
|
- spec/fixtures/unit/netmask/darwin_10_8_5.txt
|
598
|
-
- spec/fixtures/unit/
|
660
|
+
- spec/fixtures/unit/netmask/ifconfig_aix_7.txt
|
661
|
+
- spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt
|
662
|
+
- spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt
|
663
|
+
- spec/fixtures/unit/processors/os/darwin-system-profiler
|
599
664
|
- spec/fixtures/unit/selinux/selinux_sestatus
|
600
|
-
- spec/fixtures/unit/
|
601
|
-
- spec/fixtures/unit/
|
602
|
-
- spec/fixtures/unit/util/
|
603
|
-
- spec/fixtures/unit/util/
|
665
|
+
- spec/fixtures/unit/selinux/selinux_sestatus2
|
666
|
+
- spec/fixtures/unit/util/dhcp_servers/route
|
667
|
+
- spec/fixtures/unit/util/dhcp_servers/route_nogw
|
668
|
+
- spec/fixtures/unit/util/ec2/centos-arp-ec2.out
|
604
669
|
- spec/fixtures/unit/util/ec2/linux-arp-ec2.out
|
670
|
+
- spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out
|
605
671
|
- spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out
|
606
|
-
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
607
672
|
- spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out
|
608
|
-
- spec/fixtures/unit/util/ec2/
|
609
|
-
- spec/fixtures/unit/util/
|
610
|
-
- spec/fixtures/unit/util/processor/x86-pentium2
|
611
|
-
- spec/fixtures/unit/util/processor/solaris-sun4u
|
612
|
-
- spec/fixtures/unit/util/processor/solaris-i86pc
|
613
|
-
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
614
|
-
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
615
|
-
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
616
|
-
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
617
|
-
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
618
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
619
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
620
|
-
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
621
|
-
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
622
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
673
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
674
|
+
- spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig
|
623
675
|
- spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
|
624
|
-
- spec/fixtures/unit/util/ip/
|
625
|
-
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
626
|
-
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
627
|
-
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
628
|
-
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
676
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces
|
629
677
|
- spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface
|
678
|
+
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
630
679
|
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0
|
631
|
-
- spec/fixtures/unit/util/ip/
|
632
|
-
- spec/fixtures/unit/util/ip/
|
633
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
634
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
680
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
681
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
635
682
|
- spec/fixtures/unit/util/ip/hpux_1111_lanscan
|
636
|
-
- spec/fixtures/unit/util/ip/
|
637
|
-
- spec/fixtures/unit/util/ip/
|
638
|
-
- spec/fixtures/unit/util/ip/
|
683
|
+
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
684
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
685
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
686
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
687
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
688
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
689
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
690
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
691
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0
|
639
692
|
- spec/fixtures/unit/util/ip/hpux_1131_lanscan
|
640
|
-
- spec/fixtures/unit/util/ip/
|
641
|
-
- spec/fixtures/unit/util/ip/
|
693
|
+
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
694
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1
|
642
695
|
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4
|
696
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1
|
643
697
|
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0
|
698
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan
|
699
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
644
700
|
- spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0
|
645
|
-
- spec/fixtures/unit/util/ip/
|
646
|
-
- spec/fixtures/unit/util/ip/
|
647
|
-
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
648
|
-
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
701
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_eth0
|
702
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
649
703
|
- spec/fixtures/unit/util/ip/linux_get_single_interface_lo
|
650
|
-
- spec/fixtures/unit/util/
|
651
|
-
- spec/fixtures/unit/util/
|
704
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
705
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_ib0
|
706
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
|
707
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
708
|
+
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
709
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface
|
710
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
652
711
|
- spec/fixtures/unit/util/manufacturer/freebsd_dmidecode
|
653
|
-
- spec/fixtures/unit/util/manufacturer/smartos_smbios
|
654
|
-
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
655
712
|
- spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode
|
656
713
|
- spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces
|
714
|
+
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
715
|
+
- spec/fixtures/unit/util/manufacturer/smartos_smbios
|
657
716
|
- spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag
|
658
717
|
- spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag
|
718
|
+
- spec/fixtures/unit/util/operatingsystem/coreos.txt
|
719
|
+
- spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt
|
720
|
+
- spec/fixtures/unit/util/operatingsystem/redhat-7.txt
|
721
|
+
- spec/fixtures/unit/util/operatingsystem/sabayon.txt
|
722
|
+
- spec/fixtures/unit/util/operatingsystem/wheezy.txt
|
659
723
|
- spec/fixtures/unit/util/partitions/partitions/mount
|
724
|
+
- spec/fixtures/unit/util/processor/solaris-i86pc
|
725
|
+
- spec/fixtures/unit/util/processor/solaris-sun4u
|
726
|
+
- spec/fixtures/unit/util/processor/x86-pentium2
|
727
|
+
- spec/fixtures/unit/util/uptime/kstat_boot_time
|
660
728
|
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin
|
661
729
|
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd
|
662
730
|
- spec/fixtures/unit/util/uptime/ubuntu_proc_uptime
|
663
|
-
- spec/fixtures/unit/util/
|
731
|
+
- spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
|
732
|
+
- spec/fixtures/unit/util/virtual/solaris10_proc_self_status1
|
733
|
+
- spec/fixtures/unit/util/vlans/centos-5-no-vlans
|
734
|
+
- spec/fixtures/unit/util/vlans/linux_vlan_config
|
664
735
|
- spec/fixtures/unit/util/xendomains/xendomains
|
665
|
-
- spec/fixtures/unit/
|
666
|
-
- spec/fixtures/unit/
|
667
|
-
- spec/fixtures/unit/
|
668
|
-
- spec/fixtures/unit/
|
669
|
-
- spec/fixtures/unit/
|
670
|
-
- spec/fixtures/unit/
|
671
|
-
- spec/fixtures/unit/
|
672
|
-
- spec/fixtures/unit/
|
673
|
-
- spec/fixtures/unit/
|
674
|
-
- spec/fixtures/unit/
|
675
|
-
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
676
|
-
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
677
|
-
- spec/fixtures/unit/processors/os/darwin-system-profiler
|
678
|
-
- spec/fixtures/unit/zfs_version/zfs_new
|
679
|
-
- spec/fixtures/unit/zfs_version/solaris_11
|
680
|
-
- spec/fixtures/unit/zfs_version/freebsd_9.0
|
681
|
-
- spec/fixtures/unit/zfs_version/linux-fuse_0.6.9
|
682
|
-
- spec/fixtures/unit/zfs_version/zfs_old
|
683
|
-
- spec/fixtures/unit/zfs_version/zfsonlinux_0.6.1
|
684
|
-
- spec/fixtures/unit/zfs_version/freebsd_8.2
|
685
|
-
- spec/fixtures/unit/zfs_version/solaris_10
|
686
|
-
- spec/fixtures/unit/kernelrelease/openbsd-5.3-current
|
687
|
-
- spec/fixtures/unit/kernelrelease/openbsd-5.3
|
688
|
-
- spec/fixtures/unit/memory/solaris-vmstat
|
689
|
-
- spec/fixtures/unit/memory/dragonfly-vmstat
|
690
|
-
- spec/fixtures/unit/memory/solaris-prtconf
|
691
|
-
- spec/fixtures/unit/memory/solaris-swap_l-multiple
|
692
|
-
- spec/fixtures/unit/memory/aix-swap_l
|
693
|
-
- spec/fixtures/unit/memory/solaris-swap_l-single
|
694
|
-
- spec/fixtures/unit/memory/smartos_zone_swap_l-single
|
695
|
-
- spec/fixtures/unit/memory/linux-proc_meminfo
|
696
|
-
- spec/fixtures/unit/memory/darwin-swapinfo-multiple
|
697
|
-
- spec/fixtures/unit/memory/darwin-vm_stat
|
698
|
-
- spec/fixtures/unit/memory/aix-svmon
|
699
|
-
- spec/fixtures/unit/memory/freebsd-vmstat
|
700
|
-
- spec/fixtures/unit/memory/darwin-swapinfo-single
|
701
|
-
- spec/fixtures/unit/memory/openbsd-vmstat
|
702
|
-
- spec/fixtures/unit/gce/metadata/metadata.json
|
703
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_static
|
704
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp
|
705
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_devices
|
706
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected
|
707
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp
|
708
|
-
- spec/fixtures/unit/dhcp_servers/route
|
709
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static
|
710
|
-
- spec/fixtures/unit/dhcp_servers/route_nogw
|
711
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
712
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
713
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
714
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60_v6.txt
|
715
|
-
- spec/fixtures/unit/zpool_version/solaris_11
|
736
|
+
- spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt
|
737
|
+
- spec/fixtures/unit/zfs_version/freebsd_8.2
|
738
|
+
- spec/fixtures/unit/zfs_version/freebsd_9.0
|
739
|
+
- spec/fixtures/unit/zfs_version/linux-fuse_0.6.9
|
740
|
+
- spec/fixtures/unit/zfs_version/solaris_10
|
741
|
+
- spec/fixtures/unit/zfs_version/solaris_11
|
742
|
+
- spec/fixtures/unit/zfs_version/zfs_new
|
743
|
+
- spec/fixtures/unit/zfs_version/zfs_old
|
744
|
+
- spec/fixtures/unit/zfs_version/zfsonlinux_0.6.1
|
745
|
+
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
716
746
|
- spec/fixtures/unit/zpool_version/freebsd_9.0
|
717
747
|
- spec/fixtures/unit/zpool_version/linux-fuse_0.6.9
|
718
|
-
- spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1
|
719
|
-
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
720
748
|
- spec/fixtures/unit/zpool_version/solaris_10
|
721
|
-
- spec/fixtures/
|
722
|
-
- spec/fixtures/
|
723
|
-
- spec/fixtures/
|
724
|
-
- spec/fixtures/
|
725
|
-
- spec/fixtures/
|
726
|
-
- spec/fixtures/
|
727
|
-
- spec/fixtures/
|
728
|
-
- spec/fixtures/
|
729
|
-
- spec/fixtures/
|
730
|
-
- spec/fixtures/
|
731
|
-
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
732
|
-
- spec/fixtures/ifconfig/centos_5_5
|
733
|
-
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
734
|
-
- spec/fixtures/ifconfig/fedora_13
|
735
|
-
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
736
|
-
- spec/fixtures/ifconfig/fedora_13_eth0
|
737
|
-
- spec/fixtures/ifconfig/darwin_9_8_0
|
738
|
-
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
739
|
-
- spec/fixtures/ifconfig/ubuntu_7_04
|
740
|
-
- spec/fixtures/ifconfig/darwin_10_6_4
|
741
|
-
- spec/fixtures/ifconfig/fedora_10_eth0
|
742
|
-
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
743
|
-
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
744
|
-
- spec/fixtures/ifconfig/open_solaris_10
|
745
|
-
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
746
|
-
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
747
|
-
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
748
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
749
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6
|
750
|
-
- spec/fixtures/ifconfig/fedora_8_eth0
|
751
|
-
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
752
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80
|
753
|
-
- spec/fixtures/ifconfig/fedora_10
|
754
|
-
- spec/fixtures/netstat/open_solaris_b132
|
755
|
-
- spec/fixtures/netstat/darwin_10_3_0
|
756
|
-
- spec/fixtures/netstat/centos_5_5
|
757
|
-
- spec/fixtures/netstat/darwin_9_8_0
|
758
|
-
- spec/fixtures/netstat/ubuntu_7_04
|
759
|
-
- spec/fixtures/netstat/darwin_10_6_4
|
760
|
-
- spec/fixtures/netstat/open_solaris_10
|
761
|
-
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
762
|
-
- spec/fixtures/netstat/fedora_10
|
763
|
-
- spec/fixtures/ldom/ldom_v1
|
764
|
-
- spec/puppetlabs_spec_helper.rb
|
765
|
-
- spec/integration/util/windows/user_spec.rb
|
749
|
+
- spec/fixtures/unit/zpool_version/solaris_11
|
750
|
+
- spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1
|
751
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_container
|
752
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container
|
753
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container_with_systemd_slices
|
754
|
+
- spec/fixtures/virtual/proc_1_cgroup/not_in_a_container
|
755
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
756
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
757
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
758
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
766
759
|
- spec/integration/facter_spec.rb
|
760
|
+
- spec/integration/util/windows/user_spec.rb
|
761
|
+
- spec/lib/facter_spec/cpuinfo.rb
|
762
|
+
- spec/lib/facter_spec/windows_network.rb
|
763
|
+
- spec/puppetlabs_spec/files.rb
|
767
764
|
- spec/puppetlabs_spec/fixtures.rb
|
768
765
|
- spec/puppetlabs_spec/matchers.rb
|
769
|
-
- spec/puppetlabs_spec/files.rb
|
770
766
|
- spec/puppetlabs_spec/verbose.rb
|
767
|
+
- spec/puppetlabs_spec_helper.rb
|
771
768
|
- spec/schema/validate_facter_schema.rb
|
769
|
+
- spec/shared_contexts/platform.rb
|
772
770
|
- spec/shared_formats/parses.rb
|
773
|
-
- spec/
|
774
|
-
- spec/unit/fqdn_spec.rb
|
775
|
-
- spec/unit/uniqueid_spec.rb
|
771
|
+
- spec/spec_helper.rb
|
776
772
|
- spec/unit/application_spec.rb
|
777
|
-
- spec/unit/kernelmajversion_spec.rb
|
778
773
|
- spec/unit/architecture_spec.rb
|
779
774
|
- spec/unit/blockdevices_spec.rb
|
780
|
-
- spec/unit/
|
781
|
-
- spec/unit/rubyplatform_spec.rb
|
782
|
-
- spec/unit/util/file_read_spec.rb
|
783
|
-
- spec/unit/util/normalization_spec.rb
|
784
|
-
- spec/unit/util/partitions_spec.rb
|
785
|
-
- spec/unit/util/confine_spec.rb
|
786
|
-
- spec/unit/util/manufacturer_spec.rb
|
787
|
-
- spec/unit/util/vlans_spec.rb
|
788
|
-
- spec/unit/util/collection_spec.rb
|
789
|
-
- spec/unit/util/formatter_spec.rb
|
790
|
-
- spec/unit/util/ip/windows_spec.rb
|
791
|
-
- spec/unit/util/posix_spec.rb
|
792
|
-
- spec/unit/util/fact_spec.rb
|
793
|
-
- spec/unit/util/config_spec.rb
|
794
|
-
- spec/unit/util/resolution_spec.rb
|
795
|
-
- spec/unit/util/virtual_spec.rb
|
796
|
-
- spec/unit/util/macosx_spec.rb
|
797
|
-
- spec/unit/util/directory_loader_spec.rb
|
798
|
-
- spec/unit/util/parser_spec.rb
|
799
|
-
- spec/unit/util/partitions/partitions_spec.rb
|
800
|
-
- spec/unit/util/values_spec.rb
|
801
|
-
- spec/unit/util/ip_spec.rb
|
802
|
-
- spec/unit/util/registry_spec.rb
|
803
|
-
- spec/unit/util/solaris_zones_spec.rb
|
804
|
-
- spec/unit/util/dhcp_servers_spec.rb
|
805
|
-
- spec/unit/util/uptime_spec.rb
|
806
|
-
- spec/unit/util/xendomains_spec.rb
|
807
|
-
- spec/unit/util/processor_spec.rb
|
808
|
-
- spec/unit/util/wmi_spec.rb
|
809
|
-
- spec/unit/util/macaddress_spec.rb
|
810
|
-
- spec/unit/util/ec2_spec.rb
|
811
|
-
- spec/unit/util/operatingsystem_spec.rb
|
812
|
-
- spec/unit/util/loader_spec.rb
|
813
|
-
- spec/unit/ec2/rest_spec.rb
|
814
|
-
- spec/unit/operatingsystemmajrelease_spec.rb
|
815
|
-
- spec/unit/operatingsystemrelease_spec.rb
|
816
|
-
- spec/unit/partitions_spec.rb
|
817
|
-
- spec/unit/ps_spec.rb
|
818
|
-
- spec/unit/filesystems_spec.rb
|
819
|
-
- spec/unit/lsbdistrelease_spec.rb
|
820
|
-
- spec/unit/manufacturer_spec.rb
|
821
|
-
- spec/unit/id_spec.rb
|
822
|
-
- spec/unit/core/logging_spec.rb
|
775
|
+
- spec/unit/core/aggregate_spec.rb
|
823
776
|
- spec/unit/core/directed_graph_spec.rb
|
824
|
-
- spec/unit/core/execution/windows_spec.rb
|
825
777
|
- spec/unit/core/execution/base_spec.rb
|
826
778
|
- spec/unit/core/execution/posix_spec.rb
|
827
|
-
- spec/unit/core/
|
828
|
-
- spec/unit/core/resolvable_spec.rb
|
829
|
-
- spec/unit/core/aggregate_spec.rb
|
779
|
+
- spec/unit/core/execution/windows_spec.rb
|
830
780
|
- spec/unit/core/execution_spec.rb
|
831
|
-
- spec/unit/
|
832
|
-
- spec/unit/
|
833
|
-
- spec/unit/
|
834
|
-
- spec/unit/system_uptime_spec.rb
|
835
|
-
- spec/unit/hardwareisa_spec.rb
|
836
|
-
- spec/unit/lsbminordistrelease_spec.rb
|
837
|
-
- spec/unit/virtual_spec.rb
|
838
|
-
- spec/unit/zpool_version_spec.rb
|
839
|
-
- spec/unit/zones_spec.rb
|
840
|
-
- spec/unit/ipaddress6_spec.rb
|
841
|
-
- spec/unit/selinux_spec.rb
|
842
|
-
- spec/unit/lsbdistdescription_spec.rb
|
843
|
-
- spec/unit/kernelversion_spec.rb
|
844
|
-
- spec/unit/lsbdistcodename_spec.rb
|
845
|
-
- spec/unit/interfaces_spec.rb
|
846
|
-
- spec/unit/kernel_spec.rb
|
847
|
-
- spec/unit/memory_spec.rb
|
848
|
-
- spec/unit/ldom_spec.rb
|
849
|
-
- spec/unit/zfs_version_spec.rb
|
850
|
-
- spec/unit/hardwaremodel_spec.rb
|
851
|
-
- spec/unit/version_spec.rb
|
852
|
-
- spec/unit/gce_spec.rb
|
853
|
-
- spec/unit/netmask_spec.rb
|
854
|
-
- spec/unit/kernelrelease_spec.rb
|
855
|
-
- spec/unit/lsbrelease_spec.rb
|
781
|
+
- spec/unit/core/logging_spec.rb
|
782
|
+
- spec/unit/core/resolvable_spec.rb
|
783
|
+
- spec/unit/core/suitable_spec.rb
|
856
784
|
- spec/unit/dhcp_servers_spec.rb
|
857
|
-
- spec/unit/
|
858
|
-
- spec/unit/
|
859
|
-
- spec/unit/
|
860
|
-
- spec/unit/rackspace_spec.rb
|
861
|
-
- spec/unit/processor_spec.rb
|
785
|
+
- spec/unit/domain_spec.rb
|
786
|
+
- spec/unit/ec2/rest_spec.rb
|
787
|
+
- spec/unit/ec2_spec.rb
|
862
788
|
- spec/unit/facter_spec.rb
|
789
|
+
- spec/unit/filesystems_spec.rb
|
790
|
+
- spec/unit/fqdn_spec.rb
|
791
|
+
- spec/unit/gce/metadata_spec.rb
|
792
|
+
- spec/unit/gce_spec.rb
|
863
793
|
- spec/unit/gid_spec.rb
|
864
|
-
- spec/unit/
|
794
|
+
- spec/unit/hardwareisa_spec.rb
|
795
|
+
- spec/unit/hardwaremodel_spec.rb
|
865
796
|
- spec/unit/hostname_spec.rb
|
866
|
-
- spec/unit/
|
797
|
+
- spec/unit/id_spec.rb
|
798
|
+
- spec/unit/interfaces_spec.rb
|
799
|
+
- spec/unit/ipaddress6_spec.rb
|
800
|
+
- spec/unit/ipaddress_spec.rb
|
801
|
+
- spec/unit/kernel_spec.rb
|
802
|
+
- spec/unit/kernelmajversion_spec.rb
|
803
|
+
- spec/unit/kernelrelease_spec.rb
|
804
|
+
- spec/unit/kernelversion_spec.rb
|
805
|
+
- spec/unit/ldom_spec.rb
|
806
|
+
- spec/unit/lsbdistcodename_spec.rb
|
807
|
+
- spec/unit/lsbdistdescription_spec.rb
|
867
808
|
- spec/unit/lsbdistid_spec.rb
|
809
|
+
- spec/unit/lsbdistrelease_spec.rb
|
810
|
+
- spec/unit/lsbmajdistrelease_spec.rb
|
811
|
+
- spec/unit/lsbminordistrelease_spec.rb
|
812
|
+
- spec/unit/lsbrelease_spec.rb
|
868
813
|
- spec/unit/macaddress_spec.rb
|
869
|
-
- spec/unit/
|
870
|
-
- spec/unit/
|
871
|
-
- spec/unit/
|
872
|
-
- spec/unit/operatingsystem/windows_spec.rb
|
814
|
+
- spec/unit/manufacturer_spec.rb
|
815
|
+
- spec/unit/memory_spec.rb
|
816
|
+
- spec/unit/netmask_spec.rb
|
873
817
|
- spec/unit/operatingsystem/base_spec.rb
|
874
|
-
- spec/unit/operatingsystem/linux_spec.rb
|
875
818
|
- spec/unit/operatingsystem/cumuluslinux_spec.rb
|
819
|
+
- spec/unit/operatingsystem/implementation_spec.rb
|
820
|
+
- spec/unit/operatingsystem/linux_spec.rb
|
876
821
|
- spec/unit/operatingsystem/sunos_spec.rb
|
877
822
|
- spec/unit/operatingsystem/vmkernel_spec.rb
|
878
|
-
- spec/unit/operatingsystem/
|
879
|
-
- spec/unit/
|
823
|
+
- spec/unit/operatingsystem/windows_spec.rb
|
824
|
+
- spec/unit/operatingsystem_spec.rb
|
825
|
+
- spec/unit/operatingsystemmajrelease_spec.rb
|
826
|
+
- spec/unit/operatingsystemrelease_spec.rb
|
827
|
+
- spec/unit/os_spec.rb
|
880
828
|
- spec/unit/osfamily_spec.rb
|
881
|
-
- spec/
|
829
|
+
- spec/unit/partitions_spec.rb
|
830
|
+
- spec/unit/physicalprocessorcount_spec.rb
|
831
|
+
- spec/unit/processor_spec.rb
|
832
|
+
- spec/unit/processors/os_spec.rb
|
833
|
+
- spec/unit/processors_spec.rb
|
834
|
+
- spec/unit/ps_spec.rb
|
835
|
+
- spec/unit/rackspace_spec.rb
|
836
|
+
- spec/unit/rubyplatform_spec.rb
|
837
|
+
- spec/unit/selinux_spec.rb
|
838
|
+
- spec/unit/ssh_spec.rb
|
839
|
+
- spec/unit/system32_spec.rb
|
840
|
+
- spec/unit/system_uptime_spec.rb
|
841
|
+
- spec/unit/uniqueid_spec.rb
|
842
|
+
- spec/unit/uptime_spec.rb
|
843
|
+
- spec/unit/util/collection_spec.rb
|
844
|
+
- spec/unit/util/config_spec.rb
|
845
|
+
- spec/unit/util/confine_spec.rb
|
846
|
+
- spec/unit/util/dhcp_servers_spec.rb
|
847
|
+
- spec/unit/util/directory_loader_spec.rb
|
848
|
+
- spec/unit/util/ec2_spec.rb
|
849
|
+
- spec/unit/util/fact_spec.rb
|
850
|
+
- spec/unit/util/file_read_spec.rb
|
851
|
+
- spec/unit/util/formatter_spec.rb
|
852
|
+
- spec/unit/util/ip/windows_spec.rb
|
853
|
+
- spec/unit/util/ip_spec.rb
|
854
|
+
- spec/unit/util/loader_spec.rb
|
855
|
+
- spec/unit/util/macaddress_spec.rb
|
856
|
+
- spec/unit/util/macosx_spec.rb
|
857
|
+
- spec/unit/util/manufacturer_spec.rb
|
858
|
+
- spec/unit/util/normalization_spec.rb
|
859
|
+
- spec/unit/util/operatingsystem_spec.rb
|
860
|
+
- spec/unit/util/parser_spec.rb
|
861
|
+
- spec/unit/util/partitions/partitions_spec.rb
|
862
|
+
- spec/unit/util/partitions_spec.rb
|
863
|
+
- spec/unit/util/posix_spec.rb
|
864
|
+
- spec/unit/util/processor_spec.rb
|
865
|
+
- spec/unit/util/registry_spec.rb
|
866
|
+
- spec/unit/util/resolution_spec.rb
|
867
|
+
- spec/unit/util/solaris_zones_spec.rb
|
868
|
+
- spec/unit/util/uptime_spec.rb
|
869
|
+
- spec/unit/util/values_spec.rb
|
870
|
+
- spec/unit/util/virtual_spec.rb
|
871
|
+
- spec/unit/util/vlans_spec.rb
|
872
|
+
- spec/unit/util/wmi_spec.rb
|
873
|
+
- spec/unit/util/xendomains_spec.rb
|
874
|
+
- spec/unit/version_spec.rb
|
875
|
+
- spec/unit/virtual_spec.rb
|
876
|
+
- spec/unit/zfs_version_spec.rb
|
877
|
+
- spec/unit/zonename_spec.rb
|
878
|
+
- spec/unit/zones_spec.rb
|
879
|
+
- spec/unit/zpool_version_spec.rb
|
882
880
|
- spec/watchr.rb
|
883
|
-
- spec/shared_contexts/platform.rb
|