facter 2.4.0-universal-darwin → 2.4.1-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 +1 -0
- data/lib/facter/ec2/rest.rb +6 -0
- data/lib/facter/version.rb +1 -1
- data/lib/facter/virtual.rb +1 -1
- data/spec/unit/ec2/rest_spec.rb +17 -0
- data/spec/unit/virtual_spec.rb +5 -0
- metadata +641 -645
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 30acd09106d801cdecda5edcbb98d499c65e4558
|
4
|
+
data.tar.gz: 15653d2d70688cbf68ca4d01ae6c72f741ecb68c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d89abeea827c826709c72f0bc2ee6e591c8dc18e0596db25ad7108fd61bf7d4d109b1b8d58e4e38d498ed4d6f2cb7cd5597cd5dc273b95a8baae0123d56d1f48
|
7
|
+
data.tar.gz: d8a42ea3cee6b239710a51bc160f77eac024b6a90333e01c23bd6fd60e2bb0cd5932190aff51195cc8999334fd082b17b8b489023653fbb02c9f2dee1e0f5bb0
|
data/Gemfile
CHANGED
data/lib/facter/ec2/rest.rb
CHANGED
@@ -13,6 +13,11 @@ module Facter
|
|
13
13
|
Errno::ETIMEDOUT,
|
14
14
|
]
|
15
15
|
|
16
|
+
# Contains metadata keys that should not be collected
|
17
|
+
FILTERED_KEYS = [
|
18
|
+
'security-credentials/'
|
19
|
+
].freeze
|
20
|
+
|
16
21
|
class Base
|
17
22
|
def reachable?(retry_limit = 3)
|
18
23
|
timeout = 0.2
|
@@ -56,6 +61,7 @@ module Facter
|
|
56
61
|
|
57
62
|
keys = fetch_endpoint(path)
|
58
63
|
keys.each do |key|
|
64
|
+
next if FILTERED_KEYS.include? key
|
59
65
|
if key.match(%r[/$])
|
60
66
|
# If a metadata key is suffixed with '/' then it's a general metadata
|
61
67
|
# resource, so we have to recursively look up all the keys in the given
|
data/lib/facter/version.rb
CHANGED
data/lib/facter/virtual.rb
CHANGED
@@ -149,7 +149,7 @@ Facter.add("virtual") do
|
|
149
149
|
next "xenhvm" if lines.any? {|l| l =~ /XenSource/ }
|
150
150
|
next "hyperv" if lines.any? {|l| l =~ /Microsoft Corporation Hyper-V/ }
|
151
151
|
next "gce" if lines.any? {|l| l =~ /Class 8007: Google, Inc/ }
|
152
|
-
next "kvm" if lines.any? {|l| l =~ /virtio/ }
|
152
|
+
next "kvm" if lines.any? {|l| l =~ /virtio/i }
|
153
153
|
end
|
154
154
|
|
155
155
|
# Parse dmidecode
|
data/spec/unit/ec2/rest_spec.rb
CHANGED
@@ -114,6 +114,23 @@ describe Facter::EC2::Metadata do
|
|
114
114
|
end
|
115
115
|
end
|
116
116
|
|
117
|
+
it 'filters out IAM security credentials' do
|
118
|
+
subject.expects(:fetch_endpoint).with('').returns(['iam/'])
|
119
|
+
subject.expects(:fetch_endpoint).with('iam/').returns(['foo', 'security-credentials/', 'bar/'])
|
120
|
+
subject.expects(:fetch_endpoint).with('iam/foo').returns(['baz'])
|
121
|
+
subject.expects(:fetch_endpoint).with('iam/bar/').returns(['baz'])
|
122
|
+
subject.expects(:fetch_endpoint).with('iam/bar/baz').returns(['foo'])
|
123
|
+
output = subject.fetch
|
124
|
+
expect(output).to eq({
|
125
|
+
'iam' => {
|
126
|
+
'foo' => 'baz',
|
127
|
+
'bar' => {
|
128
|
+
'baz' => 'foo'
|
129
|
+
}
|
130
|
+
}
|
131
|
+
})
|
132
|
+
end
|
133
|
+
|
117
134
|
it_behaves_like "an ec2 rest querier"
|
118
135
|
end
|
119
136
|
|
data/spec/unit/virtual_spec.rb
CHANGED
@@ -210,6 +210,11 @@ describe "Virtual fact" do
|
|
210
210
|
Facter.fact(:virtual).value.should == "hyperv"
|
211
211
|
end
|
212
212
|
|
213
|
+
it "should be kvm with virtio device lspci 2>/dev/null" do
|
214
|
+
Facter::Util::Virtual.expects(:lspci).returns("00:03.0 Ethernet controller: Red Hat, Inc Virtio network device")
|
215
|
+
Facter.fact(:virtual).value.should == "kvm"
|
216
|
+
end
|
217
|
+
|
213
218
|
context "In a Linux Container (LXC)" do
|
214
219
|
before :each do
|
215
220
|
Facter.fact(:kernel).stubs(:value).returns("Linux")
|
metadata
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: facter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
5
|
-
prerelease:
|
4
|
+
version: 2.4.1
|
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: 2015-
|
11
|
+
date: 2015-02-10 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
|
@@ -22,7 +20,6 @@ dependencies:
|
|
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
|
@@ -34,831 +31,830 @@ 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
|
+
- LICENSE
|
42
38
|
- README.md
|
39
|
+
- Rakefile
|
43
40
|
- install.rb
|
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
|
65
62
|
- lib/facter.rb
|
66
|
-
- lib/facter/
|
67
|
-
- lib/facter/
|
63
|
+
- lib/facter/Cfkey.rb
|
64
|
+
- lib/facter/application.rb
|
65
|
+
- lib/facter/architecture.rb
|
66
|
+
- lib/facter/augeasversion.rb
|
67
|
+
- lib/facter/blockdevices.rb
|
68
|
+
- lib/facter/core/aggregate.rb
|
69
|
+
- lib/facter/core/directed_graph.rb
|
70
|
+
- lib/facter/core/execution.rb
|
71
|
+
- lib/facter/core/execution/base.rb
|
72
|
+
- lib/facter/core/execution/posix.rb
|
73
|
+
- lib/facter/core/execution/windows.rb
|
74
|
+
- lib/facter/core/logging.rb
|
75
|
+
- lib/facter/core/resolvable.rb
|
76
|
+
- lib/facter/core/suitable.rb
|
77
|
+
- lib/facter/dhcp_servers.rb
|
78
|
+
- lib/facter/domain.rb
|
79
|
+
- lib/facter/ec2.rb
|
80
|
+
- lib/facter/ec2/rest.rb
|
81
|
+
- lib/facter/facterversion.rb
|
82
|
+
- lib/facter/filesystems.rb
|
83
|
+
- lib/facter/fqdn.rb
|
84
|
+
- lib/facter/gce.rb
|
85
|
+
- lib/facter/gce/metadata.rb
|
68
86
|
- lib/facter/gid.rb
|
69
|
-
- lib/facter/
|
70
|
-
- lib/facter/version.rb
|
87
|
+
- lib/facter/hardwareisa.rb
|
71
88
|
- lib/facter/hardwaremodel.rb
|
89
|
+
- lib/facter/hostname.rb
|
90
|
+
- lib/facter/id.rb
|
91
|
+
- lib/facter/interfaces.rb
|
92
|
+
- lib/facter/ipaddress.rb
|
93
|
+
- lib/facter/ipaddress6.rb
|
94
|
+
- lib/facter/iphostnumber.rb
|
95
|
+
- lib/facter/kernel.rb
|
96
|
+
- lib/facter/kernelmajversion.rb
|
72
97
|
- lib/facter/kernelrelease.rb
|
98
|
+
- lib/facter/kernelversion.rb
|
99
|
+
- lib/facter/ldom.rb
|
100
|
+
- lib/facter/lsbdistcodename.rb
|
101
|
+
- lib/facter/lsbdistdescription.rb
|
102
|
+
- lib/facter/lsbdistid.rb
|
103
|
+
- lib/facter/lsbdistrelease.rb
|
104
|
+
- lib/facter/lsbmajdistrelease.rb
|
105
|
+
- lib/facter/lsbminordistrelease.rb
|
106
|
+
- lib/facter/lsbrelease.rb
|
107
|
+
- lib/facter/macaddress.rb
|
108
|
+
- lib/facter/macosx.rb
|
109
|
+
- lib/facter/manufacturer.rb
|
110
|
+
- lib/facter/memory.rb
|
111
|
+
- lib/facter/netmask.rb
|
112
|
+
- lib/facter/network.rb
|
113
|
+
- lib/facter/operatingsystem.rb
|
114
|
+
- lib/facter/operatingsystem/base.rb
|
115
|
+
- lib/facter/operatingsystem/cumuluslinux.rb
|
116
|
+
- lib/facter/operatingsystem/implementation.rb
|
117
|
+
- lib/facter/operatingsystem/linux.rb
|
118
|
+
- lib/facter/operatingsystem/sunos.rb
|
119
|
+
- lib/facter/operatingsystem/vmkernel.rb
|
120
|
+
- lib/facter/operatingsystem/windows.rb
|
121
|
+
- lib/facter/operatingsystemmajrelease.rb
|
122
|
+
- lib/facter/operatingsystemrelease.rb
|
123
|
+
- lib/facter/os.rb
|
124
|
+
- lib/facter/osfamily.rb
|
125
|
+
- lib/facter/partitions.rb
|
126
|
+
- lib/facter/path.rb
|
127
|
+
- lib/facter/physicalprocessorcount.rb
|
128
|
+
- lib/facter/processor.rb
|
129
|
+
- lib/facter/processors.rb
|
130
|
+
- lib/facter/processors/os.rb
|
131
|
+
- lib/facter/ps.rb
|
73
132
|
- lib/facter/puppetversion.rb
|
74
|
-
- lib/facter/
|
133
|
+
- lib/facter/rackspace.rb
|
75
134
|
- lib/facter/rubyplatform.rb
|
76
|
-
- lib/facter/
|
77
|
-
- lib/facter/
|
135
|
+
- lib/facter/rubysitedir.rb
|
136
|
+
- lib/facter/rubyversion.rb
|
137
|
+
- lib/facter/selinux.rb
|
138
|
+
- lib/facter/ssh.rb
|
78
139
|
- lib/facter/system32.rb
|
79
|
-
- lib/facter/
|
80
|
-
- lib/facter/
|
81
|
-
- lib/facter/
|
140
|
+
- lib/facter/system_uptime.rb
|
141
|
+
- lib/facter/timezone.rb
|
142
|
+
- lib/facter/uniqueid.rb
|
143
|
+
- lib/facter/uptime.rb
|
144
|
+
- lib/facter/uptime_days.rb
|
145
|
+
- lib/facter/uptime_hours.rb
|
146
|
+
- lib/facter/uptime_seconds.rb
|
147
|
+
- lib/facter/util/architecture.rb
|
148
|
+
- lib/facter/util/collection.rb
|
149
|
+
- lib/facter/util/composite_loader.rb
|
150
|
+
- lib/facter/util/config.rb
|
151
|
+
- lib/facter/util/confine.rb
|
82
152
|
- lib/facter/util/dhcp_servers.rb
|
153
|
+
- lib/facter/util/directory_loader.rb
|
154
|
+
- lib/facter/util/ec2.rb
|
155
|
+
- lib/facter/util/fact.rb
|
156
|
+
- lib/facter/util/file_read.rb
|
83
157
|
- lib/facter/util/formatter.rb
|
84
|
-
- lib/facter/util/
|
158
|
+
- lib/facter/util/ip.rb
|
159
|
+
- lib/facter/util/ip/windows.rb
|
85
160
|
- lib/facter/util/loader.rb
|
86
|
-
- lib/facter/util/plist.rb
|
87
161
|
- lib/facter/util/macaddress.rb
|
88
|
-
- lib/facter/util/
|
162
|
+
- lib/facter/util/macosx.rb
|
163
|
+
- lib/facter/util/manufacturer.rb
|
164
|
+
- lib/facter/util/memory.rb
|
165
|
+
- lib/facter/util/netmask.rb
|
166
|
+
- lib/facter/util/normalization.rb
|
167
|
+
- lib/facter/util/nothing_loader.rb
|
89
168
|
- lib/facter/util/operatingsystem.rb
|
90
169
|
- lib/facter/util/parser.rb
|
170
|
+
- lib/facter/util/partitions.rb
|
171
|
+
- lib/facter/util/partitions/linux.rb
|
172
|
+
- lib/facter/util/partitions/openbsd.rb
|
173
|
+
- lib/facter/util/plist.rb
|
174
|
+
- lib/facter/util/plist/generator.rb
|
175
|
+
- lib/facter/util/plist/parser.rb
|
91
176
|
- lib/facter/util/posix.rb
|
92
|
-
- lib/facter/util/
|
177
|
+
- lib/facter/util/processor.rb
|
93
178
|
- lib/facter/util/registry.rb
|
94
|
-
- lib/facter/util/uptime.rb
|
95
179
|
- lib/facter/util/resolution.rb
|
180
|
+
- lib/facter/util/solaris_zones.rb
|
181
|
+
- lib/facter/util/unix_root.rb
|
182
|
+
- lib/facter/util/uptime.rb
|
183
|
+
- lib/facter/util/values.rb
|
96
184
|
- lib/facter/util/virtual.rb
|
97
|
-
- lib/facter/util/config.rb
|
98
|
-
- lib/facter/util/netmask.rb
|
99
185
|
- lib/facter/util/vlans.rb
|
100
|
-
- lib/facter/util/
|
101
|
-
- lib/facter/util/partitions/openbsd.rb
|
102
|
-
- lib/facter/util/partitions/linux.rb
|
103
|
-
- lib/facter/util/nothing_loader.rb
|
104
|
-
- lib/facter/util/xendomains.rb
|
105
|
-
- lib/facter/util/collection.rb
|
106
|
-
- lib/facter/util/architecture.rb
|
107
|
-
- lib/facter/util/normalization.rb
|
108
|
-
- lib/facter/util/confine.rb
|
109
|
-
- lib/facter/util/plist/parser.rb
|
110
|
-
- lib/facter/util/plist/generator.rb
|
111
|
-
- lib/facter/util/solaris_zones.rb
|
112
|
-
- lib/facter/util/memory.rb
|
113
|
-
- lib/facter/util/fact.rb
|
186
|
+
- lib/facter/util/windows_root.rb
|
114
187
|
- lib/facter/util/wmi.rb
|
115
|
-
- lib/facter/util/
|
116
|
-
- lib/facter/
|
117
|
-
- lib/facter/util/file_read.rb
|
118
|
-
- lib/facter/util/ip.rb
|
119
|
-
- lib/facter/util/composite_loader.rb
|
120
|
-
- lib/facter/util/manufacturer.rb
|
121
|
-
- lib/facter/util/processor.rb
|
122
|
-
- lib/facter/util/unix_root.rb
|
123
|
-
- lib/facter/ec2/rest.rb
|
124
|
-
- lib/facter/macaddress.rb
|
125
|
-
- lib/facter/rubyversion.rb
|
126
|
-
- lib/facter/hostname.rb
|
127
|
-
- lib/facter/operatingsystem.rb
|
128
|
-
- lib/facter/lsbdistrelease.rb
|
129
|
-
- lib/facter/timezone.rb
|
130
|
-
- lib/facter/facterversion.rb
|
131
|
-
- lib/facter/core/suitable.rb
|
132
|
-
- lib/facter/core/resolvable.rb
|
133
|
-
- lib/facter/core/directed_graph.rb
|
134
|
-
- lib/facter/core/execution/windows.rb
|
135
|
-
- lib/facter/core/execution/posix.rb
|
136
|
-
- lib/facter/core/execution/base.rb
|
137
|
-
- lib/facter/core/execution.rb
|
138
|
-
- lib/facter/core/aggregate.rb
|
139
|
-
- lib/facter/core/logging.rb
|
140
|
-
- lib/facter/processors/os.rb
|
141
|
-
- lib/facter/processors.rb
|
142
|
-
- lib/facter/zfs_version.rb
|
143
|
-
- lib/facter/uptime_seconds.rb
|
144
|
-
- lib/facter/uptime.rb
|
145
|
-
- lib/facter/ps.rb
|
146
|
-
- lib/facter/operatingsystemmajrelease.rb
|
147
|
-
- lib/facter/kernelversion.rb
|
188
|
+
- lib/facter/util/xendomains.rb
|
189
|
+
- lib/facter/version.rb
|
148
190
|
- lib/facter/virtual.rb
|
149
|
-
- lib/facter/lsbdistdescription.rb
|
150
|
-
- lib/facter/lsbrelease.rb
|
151
|
-
- lib/facter/fqdn.rb
|
152
|
-
- lib/facter/selinux.rb
|
153
|
-
- lib/facter/gce.rb
|
154
|
-
- lib/facter/netmask.rb
|
155
|
-
- lib/facter/interfaces.rb
|
156
191
|
- lib/facter/vlans.rb
|
157
|
-
- lib/facter/macosx.rb
|
158
|
-
- lib/facter/Cfkey.rb
|
159
|
-
- lib/facter/application.rb
|
160
|
-
- lib/facter/ipaddress6.rb
|
161
|
-
- lib/facter/id.rb
|
162
|
-
- lib/facter/lsbdistcodename.rb
|
163
|
-
- lib/facter/zpool_version.rb
|
164
192
|
- lib/facter/xendomains.rb
|
165
|
-
- lib/facter/
|
166
|
-
- lib/facter/architecture.rb
|
167
|
-
- lib/facter/ldom.rb
|
168
|
-
- lib/facter/operatingsystemrelease.rb
|
193
|
+
- lib/facter/zfs_version.rb
|
169
194
|
- lib/facter/zonename.rb
|
170
|
-
- lib/facter/
|
171
|
-
- lib/facter/
|
172
|
-
-
|
173
|
-
-
|
174
|
-
- lib/facter/lsbminordistrelease.rb
|
175
|
-
- lib/facter/iphostnumber.rb
|
176
|
-
- lib/facter/uptime_days.rb
|
177
|
-
- lib/facter/ipaddress.rb
|
178
|
-
- lib/facter/memory.rb
|
179
|
-
- lib/facter/filesystems.rb
|
180
|
-
- lib/facter/hardwareisa.rb
|
181
|
-
- lib/facter/gce/metadata.rb
|
182
|
-
- lib/facter/uniqueid.rb
|
183
|
-
- lib/facter/ssh.rb
|
184
|
-
- lib/facter/ec2.rb
|
185
|
-
- lib/facter/kernel.rb
|
186
|
-
- lib/facter/uptime_hours.rb
|
187
|
-
- lib/facter/rackspace.rb
|
188
|
-
- lib/facter/physicalprocessorcount.rb
|
189
|
-
- lib/facter/manufacturer.rb
|
190
|
-
- lib/facter/processor.rb
|
191
|
-
- lib/facter/operatingsystem/windows.rb
|
192
|
-
- lib/facter/operatingsystem/sunos.rb
|
193
|
-
- lib/facter/operatingsystem/implementation.rb
|
194
|
-
- lib/facter/operatingsystem/vmkernel.rb
|
195
|
-
- lib/facter/operatingsystem/cumuluslinux.rb
|
196
|
-
- lib/facter/operatingsystem/linux.rb
|
197
|
-
- lib/facter/operatingsystem/base.rb
|
198
|
-
- lib/facter/kernelmajversion.rb
|
199
|
-
- lib/facter/domain.rb
|
200
|
-
- spec/lib/facter_spec/windows_network.rb
|
201
|
-
- spec/lib/facter_spec/cpuinfo.rb
|
195
|
+
- lib/facter/zones.rb
|
196
|
+
- lib/facter/zpool_version.rb
|
197
|
+
- spec/fixtures/cpuinfo/amd64dual
|
198
|
+
- spec/fixtures/cpuinfo/amd64dual-grep
|
202
199
|
- spec/fixtures/cpuinfo/amd64quad
|
203
|
-
- spec/fixtures/cpuinfo/
|
204
|
-
- spec/fixtures/cpuinfo/ppc64
|
200
|
+
- spec/fixtures/cpuinfo/amd64solo
|
205
201
|
- spec/fixtures/cpuinfo/amd64tri
|
202
|
+
- spec/fixtures/cpuinfo/amd64twentyfour
|
206
203
|
- spec/fixtures/cpuinfo/amd64twentyfour-grep
|
207
|
-
- spec/fixtures/cpuinfo/
|
204
|
+
- spec/fixtures/cpuinfo/bbg3-armel
|
208
205
|
- spec/fixtures/cpuinfo/beaglexm-armel
|
209
|
-
- spec/fixtures/cpuinfo/
|
206
|
+
- spec/fixtures/cpuinfo/panda-armel
|
207
|
+
- spec/fixtures/cpuinfo/ppc64
|
210
208
|
- spec/fixtures/cpuinfo/sparc
|
211
|
-
- spec/fixtures/cpuinfo/amd64dual
|
212
|
-
- spec/fixtures/cpuinfo/two_singlecore-grep
|
213
|
-
- spec/fixtures/cpuinfo/amd64dual-grep
|
214
|
-
- spec/fixtures/cpuinfo/bbg3-armel
|
215
209
|
- spec/fixtures/cpuinfo/two_multicore-grep
|
216
|
-
- spec/fixtures/
|
217
|
-
- spec/fixtures/virtual/proc_1_cgroup/not_in_a_container
|
218
|
-
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container
|
219
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
220
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
221
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
222
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
223
|
-
- spec/fixtures/hpux/unistd.h
|
224
|
-
- spec/fixtures/hpux/sched.models
|
225
|
-
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
226
|
-
- spec/fixtures/hpux/machinfo/superdome2-16s
|
210
|
+
- spec/fixtures/cpuinfo/two_singlecore-grep
|
227
211
|
- spec/fixtures/hpux/machinfo/hppa-rp4440
|
228
|
-
- spec/fixtures/hpux/machinfo/ia64-
|
212
|
+
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
229
213
|
- spec/fixtures/hpux/machinfo/ia64-rx6600
|
214
|
+
- spec/fixtures/hpux/machinfo/ia64-rx8640
|
230
215
|
- spec/fixtures/hpux/machinfo/superdome-server-SD32B
|
231
|
-
- spec/fixtures/
|
232
|
-
- spec/fixtures/
|
216
|
+
- spec/fixtures/hpux/machinfo/superdome2-16s
|
217
|
+
- spec/fixtures/hpux/sched.models
|
218
|
+
- spec/fixtures/hpux/unistd.h
|
219
|
+
- spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces
|
220
|
+
- spec/fixtures/ifconfig/centos_5_5
|
221
|
+
- spec/fixtures/ifconfig/centos_5_5_eth0
|
222
|
+
- spec/fixtures/ifconfig/darwin_10_3_0
|
223
|
+
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
224
|
+
- spec/fixtures/ifconfig/darwin_10_6_4
|
225
|
+
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
226
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
227
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
228
|
+
- spec/fixtures/ifconfig/darwin_9_8_0
|
229
|
+
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
230
|
+
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
231
|
+
- spec/fixtures/ifconfig/fedora_10
|
232
|
+
- spec/fixtures/ifconfig/fedora_10_eth0
|
233
|
+
- spec/fixtures/ifconfig/fedora_13
|
234
|
+
- spec/fixtures/ifconfig/fedora_13_eth0
|
235
|
+
- spec/fixtures/ifconfig/fedora_8
|
236
|
+
- spec/fixtures/ifconfig/fedora_8_eth0
|
237
|
+
- spec/fixtures/ifconfig/freebsd_6_0
|
238
|
+
- spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt
|
239
|
+
- spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt
|
240
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
241
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80
|
242
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6
|
243
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
244
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
245
|
+
- spec/fixtures/ifconfig/linux_ifconfig_venet
|
246
|
+
- spec/fixtures/ifconfig/open_solaris_10
|
247
|
+
- spec/fixtures/ifconfig/open_solaris_b132
|
248
|
+
- spec/fixtures/ifconfig/openbsd_bridge_rules
|
249
|
+
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
250
|
+
- spec/fixtures/ifconfig/ubuntu_7_04
|
251
|
+
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
252
|
+
- spec/fixtures/ldom/ldom_v1
|
253
|
+
- spec/fixtures/netstat/centos_5_5
|
254
|
+
- spec/fixtures/netstat/darwin_10_3_0
|
255
|
+
- spec/fixtures/netstat/darwin_10_6_4
|
256
|
+
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
257
|
+
- spec/fixtures/netstat/darwin_9_8_0
|
258
|
+
- spec/fixtures/netstat/fedora_10
|
259
|
+
- spec/fixtures/netstat/open_solaris_10
|
260
|
+
- spec/fixtures/netstat/open_solaris_b132
|
261
|
+
- spec/fixtures/netstat/ubuntu_7_04
|
233
262
|
- spec/fixtures/processorcount/solaris-psrinfo
|
234
|
-
- spec/fixtures/
|
235
|
-
- spec/fixtures/
|
236
|
-
- spec/fixtures/unit/
|
263
|
+
- spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info
|
264
|
+
- spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info
|
265
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_devices
|
266
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected
|
267
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp
|
268
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_static
|
269
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp
|
270
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static
|
271
|
+
- spec/fixtures/unit/dhcp_servers/route
|
272
|
+
- spec/fixtures/unit/dhcp_servers/route_nogw
|
273
|
+
- spec/fixtures/unit/ec2/rest/meta-data/root
|
274
|
+
- spec/fixtures/unit/filesystems/linux
|
275
|
+
- spec/fixtures/unit/gce/metadata/metadata.json
|
276
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
277
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
278
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
279
|
+
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
280
|
+
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
281
|
+
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
282
|
+
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
283
|
+
- spec/fixtures/unit/kernelrelease/openbsd-5.3
|
284
|
+
- spec/fixtures/unit/kernelrelease/openbsd-5.3-current
|
285
|
+
- spec/fixtures/unit/memory/aix-svmon
|
286
|
+
- spec/fixtures/unit/memory/aix-swap_l
|
287
|
+
- spec/fixtures/unit/memory/darwin-swapinfo-multiple
|
288
|
+
- spec/fixtures/unit/memory/darwin-swapinfo-single
|
289
|
+
- spec/fixtures/unit/memory/darwin-vm_stat
|
290
|
+
- spec/fixtures/unit/memory/dragonfly-vmstat
|
291
|
+
- spec/fixtures/unit/memory/freebsd-vmstat
|
292
|
+
- spec/fixtures/unit/memory/linux-proc_meminfo
|
293
|
+
- spec/fixtures/unit/memory/openbsd-vmstat
|
294
|
+
- spec/fixtures/unit/memory/smartos_zone_swap_l-single
|
295
|
+
- spec/fixtures/unit/memory/solaris-prtconf
|
296
|
+
- spec/fixtures/unit/memory/solaris-swap_l-multiple
|
297
|
+
- spec/fixtures/unit/memory/solaris-swap_l-single
|
298
|
+
- spec/fixtures/unit/memory/solaris-vmstat
|
237
299
|
- spec/fixtures/unit/netmask/darwin_10_8_5.txt
|
300
|
+
- spec/fixtures/unit/netmask/ifconfig_aix_7.txt
|
301
|
+
- spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt
|
302
|
+
- spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt
|
303
|
+
- spec/fixtures/unit/processors/os/darwin-system-profiler
|
238
304
|
- spec/fixtures/unit/selinux/selinux_sestatus
|
239
|
-
- spec/fixtures/unit/
|
240
|
-
- spec/fixtures/unit/
|
241
|
-
- spec/fixtures/unit/util/
|
242
|
-
- spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
|
305
|
+
- spec/fixtures/unit/util/dhcp_servers/route
|
306
|
+
- spec/fixtures/unit/util/dhcp_servers/route_nogw
|
307
|
+
- spec/fixtures/unit/util/ec2/centos-arp-ec2.out
|
243
308
|
- spec/fixtures/unit/util/ec2/linux-arp-ec2.out
|
309
|
+
- spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out
|
244
310
|
- spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out
|
245
|
-
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
246
311
|
- spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out
|
247
|
-
- spec/fixtures/unit/util/ec2/
|
248
|
-
- spec/fixtures/unit/util/
|
249
|
-
- spec/fixtures/unit/util/processor/x86-pentium2
|
250
|
-
- spec/fixtures/unit/util/processor/solaris-sun4u
|
251
|
-
- spec/fixtures/unit/util/processor/solaris-i86pc
|
252
|
-
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
253
|
-
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
254
|
-
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
255
|
-
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
256
|
-
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
257
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
258
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
259
|
-
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
260
|
-
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
261
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
312
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
313
|
+
- spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig
|
262
314
|
- spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
|
263
|
-
- spec/fixtures/unit/util/ip/
|
264
|
-
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
265
|
-
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
266
|
-
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
267
|
-
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
315
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces
|
268
316
|
- spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface
|
317
|
+
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
269
318
|
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0
|
270
|
-
- spec/fixtures/unit/util/ip/
|
271
|
-
- spec/fixtures/unit/util/ip/
|
272
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
273
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
319
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
320
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
274
321
|
- spec/fixtures/unit/util/ip/hpux_1111_lanscan
|
275
|
-
- spec/fixtures/unit/util/ip/
|
276
|
-
- spec/fixtures/unit/util/ip/
|
277
|
-
- spec/fixtures/unit/util/ip/
|
322
|
+
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
323
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
324
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
325
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
326
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
327
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
328
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
329
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
330
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0
|
278
331
|
- spec/fixtures/unit/util/ip/hpux_1131_lanscan
|
279
|
-
- spec/fixtures/unit/util/ip/
|
280
|
-
- spec/fixtures/unit/util/ip/
|
332
|
+
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
333
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1
|
281
334
|
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4
|
335
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1
|
282
336
|
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0
|
337
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan
|
338
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
283
339
|
- spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0
|
284
|
-
- spec/fixtures/unit/util/ip/
|
285
|
-
- spec/fixtures/unit/util/ip/
|
286
|
-
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
287
|
-
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
340
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_eth0
|
341
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
288
342
|
- spec/fixtures/unit/util/ip/linux_get_single_interface_lo
|
289
|
-
- spec/fixtures/unit/util/
|
290
|
-
- spec/fixtures/unit/util/
|
343
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
344
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_ib0
|
345
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
|
346
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
347
|
+
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
348
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface
|
349
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
291
350
|
- spec/fixtures/unit/util/manufacturer/freebsd_dmidecode
|
292
|
-
- spec/fixtures/unit/util/manufacturer/smartos_smbios
|
293
|
-
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
294
351
|
- spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode
|
295
352
|
- spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces
|
353
|
+
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
354
|
+
- spec/fixtures/unit/util/manufacturer/smartos_smbios
|
296
355
|
- spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag
|
297
356
|
- spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag
|
357
|
+
- spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt
|
358
|
+
- spec/fixtures/unit/util/operatingsystem/redhat-7.txt
|
359
|
+
- spec/fixtures/unit/util/operatingsystem/sabayon.txt
|
360
|
+
- spec/fixtures/unit/util/operatingsystem/wheezy.txt
|
298
361
|
- spec/fixtures/unit/util/partitions/partitions/mount
|
362
|
+
- spec/fixtures/unit/util/processor/solaris-i86pc
|
363
|
+
- spec/fixtures/unit/util/processor/solaris-sun4u
|
364
|
+
- spec/fixtures/unit/util/processor/x86-pentium2
|
365
|
+
- spec/fixtures/unit/util/uptime/kstat_boot_time
|
299
366
|
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin
|
300
367
|
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd
|
301
368
|
- spec/fixtures/unit/util/uptime/ubuntu_proc_uptime
|
302
|
-
- spec/fixtures/unit/util/
|
369
|
+
- spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
|
370
|
+
- spec/fixtures/unit/util/virtual/solaris10_proc_self_status1
|
371
|
+
- spec/fixtures/unit/util/vlans/centos-5-no-vlans
|
372
|
+
- spec/fixtures/unit/util/vlans/linux_vlan_config
|
303
373
|
- spec/fixtures/unit/util/xendomains/xendomains
|
304
|
-
- spec/fixtures/unit/
|
305
|
-
- spec/fixtures/unit/
|
306
|
-
- spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt
|
307
|
-
- spec/fixtures/unit/util/operatingsystem/sabayon.txt
|
308
|
-
- spec/fixtures/unit/util/operatingsystem/wheezy.txt
|
309
|
-
- spec/fixtures/unit/util/operatingsystem/redhat-7.txt
|
310
|
-
- spec/fixtures/unit/ec2/rest/meta-data/root
|
311
|
-
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
312
|
-
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
313
|
-
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
314
|
-
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
315
|
-
- spec/fixtures/unit/processors/os/darwin-system-profiler
|
316
|
-
- spec/fixtures/unit/zfs_version/zfs_new
|
317
|
-
- spec/fixtures/unit/zfs_version/solaris_11
|
374
|
+
- spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt
|
375
|
+
- spec/fixtures/unit/zfs_version/freebsd_8.2
|
318
376
|
- spec/fixtures/unit/zfs_version/freebsd_9.0
|
319
377
|
- spec/fixtures/unit/zfs_version/linux-fuse_0.6.9
|
378
|
+
- spec/fixtures/unit/zfs_version/solaris_10
|
379
|
+
- spec/fixtures/unit/zfs_version/solaris_11
|
380
|
+
- spec/fixtures/unit/zfs_version/zfs_new
|
320
381
|
- spec/fixtures/unit/zfs_version/zfs_old
|
321
382
|
- spec/fixtures/unit/zfs_version/zfsonlinux_0.6.1
|
322
|
-
- spec/fixtures/unit/
|
323
|
-
- spec/fixtures/unit/zfs_version/solaris_10
|
324
|
-
- spec/fixtures/unit/kernelrelease/openbsd-5.3-current
|
325
|
-
- spec/fixtures/unit/kernelrelease/openbsd-5.3
|
326
|
-
- spec/fixtures/unit/memory/solaris-vmstat
|
327
|
-
- spec/fixtures/unit/memory/dragonfly-vmstat
|
328
|
-
- spec/fixtures/unit/memory/solaris-prtconf
|
329
|
-
- spec/fixtures/unit/memory/solaris-swap_l-multiple
|
330
|
-
- spec/fixtures/unit/memory/aix-swap_l
|
331
|
-
- spec/fixtures/unit/memory/solaris-swap_l-single
|
332
|
-
- spec/fixtures/unit/memory/smartos_zone_swap_l-single
|
333
|
-
- spec/fixtures/unit/memory/linux-proc_meminfo
|
334
|
-
- spec/fixtures/unit/memory/darwin-swapinfo-multiple
|
335
|
-
- spec/fixtures/unit/memory/darwin-vm_stat
|
336
|
-
- spec/fixtures/unit/memory/aix-svmon
|
337
|
-
- spec/fixtures/unit/memory/freebsd-vmstat
|
338
|
-
- spec/fixtures/unit/memory/darwin-swapinfo-single
|
339
|
-
- spec/fixtures/unit/memory/openbsd-vmstat
|
340
|
-
- spec/fixtures/unit/gce/metadata/metadata.json
|
341
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_static
|
342
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp
|
343
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_devices
|
344
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected
|
345
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp
|
346
|
-
- spec/fixtures/unit/dhcp_servers/route
|
347
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static
|
348
|
-
- spec/fixtures/unit/dhcp_servers/route_nogw
|
349
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
350
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
351
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
352
|
-
- spec/fixtures/unit/zpool_version/solaris_11
|
383
|
+
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
353
384
|
- spec/fixtures/unit/zpool_version/freebsd_9.0
|
354
385
|
- spec/fixtures/unit/zpool_version/linux-fuse_0.6.9
|
355
|
-
- spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1
|
356
|
-
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
357
386
|
- spec/fixtures/unit/zpool_version/solaris_10
|
358
|
-
- spec/fixtures/
|
359
|
-
- spec/fixtures/
|
360
|
-
- spec/fixtures/
|
361
|
-
- spec/fixtures/
|
362
|
-
- spec/fixtures/
|
363
|
-
- spec/fixtures/
|
364
|
-
- spec/fixtures/
|
365
|
-
- spec/fixtures/
|
366
|
-
- spec/fixtures/
|
367
|
-
- spec/fixtures/ifconfig/fedora_8
|
368
|
-
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
369
|
-
- spec/fixtures/ifconfig/centos_5_5
|
370
|
-
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
371
|
-
- spec/fixtures/ifconfig/fedora_13
|
372
|
-
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
373
|
-
- spec/fixtures/ifconfig/fedora_13_eth0
|
374
|
-
- spec/fixtures/ifconfig/darwin_9_8_0
|
375
|
-
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
376
|
-
- spec/fixtures/ifconfig/ubuntu_7_04
|
377
|
-
- spec/fixtures/ifconfig/darwin_10_6_4
|
378
|
-
- spec/fixtures/ifconfig/fedora_10_eth0
|
379
|
-
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
380
|
-
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
381
|
-
- spec/fixtures/ifconfig/open_solaris_10
|
382
|
-
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
383
|
-
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
384
|
-
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
385
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
386
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6
|
387
|
-
- spec/fixtures/ifconfig/fedora_8_eth0
|
388
|
-
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
389
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80
|
390
|
-
- spec/fixtures/ifconfig/fedora_10
|
391
|
-
- spec/fixtures/netstat/open_solaris_b132
|
392
|
-
- spec/fixtures/netstat/darwin_10_3_0
|
393
|
-
- spec/fixtures/netstat/centos_5_5
|
394
|
-
- spec/fixtures/netstat/darwin_9_8_0
|
395
|
-
- spec/fixtures/netstat/ubuntu_7_04
|
396
|
-
- spec/fixtures/netstat/darwin_10_6_4
|
397
|
-
- spec/fixtures/netstat/open_solaris_10
|
398
|
-
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
399
|
-
- spec/fixtures/netstat/fedora_10
|
400
|
-
- spec/fixtures/ldom/ldom_v1
|
401
|
-
- spec/puppetlabs_spec_helper.rb
|
387
|
+
- spec/fixtures/unit/zpool_version/solaris_11
|
388
|
+
- spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1
|
389
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_container
|
390
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container
|
391
|
+
- spec/fixtures/virtual/proc_1_cgroup/not_in_a_container
|
392
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
393
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
394
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
395
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
402
396
|
- spec/integration/facter_spec.rb
|
397
|
+
- spec/lib/facter_spec/cpuinfo.rb
|
398
|
+
- spec/lib/facter_spec/windows_network.rb
|
399
|
+
- spec/puppetlabs_spec/files.rb
|
403
400
|
- spec/puppetlabs_spec/fixtures.rb
|
404
401
|
- spec/puppetlabs_spec/matchers.rb
|
405
|
-
- spec/puppetlabs_spec/files.rb
|
406
402
|
- spec/puppetlabs_spec/verbose.rb
|
403
|
+
- spec/puppetlabs_spec_helper.rb
|
407
404
|
- spec/schema/validate_facter_schema.rb
|
405
|
+
- spec/shared_contexts/platform.rb
|
408
406
|
- spec/shared_formats/parses.rb
|
409
|
-
- spec/
|
410
|
-
- spec/unit/fqdn_spec.rb
|
411
|
-
- spec/unit/uniqueid_spec.rb
|
407
|
+
- spec/spec_helper.rb
|
412
408
|
- spec/unit/application_spec.rb
|
413
|
-
- spec/unit/kernelmajversion_spec.rb
|
414
409
|
- spec/unit/architecture_spec.rb
|
415
410
|
- spec/unit/blockdevices_spec.rb
|
416
|
-
- spec/unit/
|
417
|
-
- spec/unit/rubyplatform_spec.rb
|
418
|
-
- spec/unit/util/file_read_spec.rb
|
419
|
-
- spec/unit/util/normalization_spec.rb
|
420
|
-
- spec/unit/util/partitions_spec.rb
|
421
|
-
- spec/unit/util/confine_spec.rb
|
422
|
-
- spec/unit/util/manufacturer_spec.rb
|
423
|
-
- spec/unit/util/vlans_spec.rb
|
424
|
-
- spec/unit/util/collection_spec.rb
|
425
|
-
- spec/unit/util/formatter_spec.rb
|
426
|
-
- spec/unit/util/ip/windows_spec.rb
|
427
|
-
- spec/unit/util/posix_spec.rb
|
428
|
-
- spec/unit/util/fact_spec.rb
|
429
|
-
- spec/unit/util/config_spec.rb
|
430
|
-
- spec/unit/util/resolution_spec.rb
|
431
|
-
- spec/unit/util/virtual_spec.rb
|
432
|
-
- spec/unit/util/macosx_spec.rb
|
433
|
-
- spec/unit/util/directory_loader_spec.rb
|
434
|
-
- spec/unit/util/parser_spec.rb
|
435
|
-
- spec/unit/util/partitions/partitions_spec.rb
|
436
|
-
- spec/unit/util/values_spec.rb
|
437
|
-
- spec/unit/util/ip_spec.rb
|
438
|
-
- spec/unit/util/registry_spec.rb
|
439
|
-
- spec/unit/util/solaris_zones_spec.rb
|
440
|
-
- spec/unit/util/dhcp_servers_spec.rb
|
441
|
-
- spec/unit/util/uptime_spec.rb
|
442
|
-
- spec/unit/util/xendomains_spec.rb
|
443
|
-
- spec/unit/util/processor_spec.rb
|
444
|
-
- spec/unit/util/wmi_spec.rb
|
445
|
-
- spec/unit/util/macaddress_spec.rb
|
446
|
-
- spec/unit/util/ec2_spec.rb
|
447
|
-
- spec/unit/util/operatingsystem_spec.rb
|
448
|
-
- spec/unit/util/loader_spec.rb
|
449
|
-
- spec/unit/ec2/rest_spec.rb
|
450
|
-
- spec/unit/operatingsystemmajrelease_spec.rb
|
451
|
-
- spec/unit/operatingsystemrelease_spec.rb
|
452
|
-
- spec/unit/partitions_spec.rb
|
453
|
-
- spec/unit/ps_spec.rb
|
454
|
-
- spec/unit/filesystems_spec.rb
|
455
|
-
- spec/unit/lsbdistrelease_spec.rb
|
456
|
-
- spec/unit/manufacturer_spec.rb
|
457
|
-
- spec/unit/id_spec.rb
|
458
|
-
- spec/unit/core/logging_spec.rb
|
411
|
+
- spec/unit/core/aggregate_spec.rb
|
459
412
|
- spec/unit/core/directed_graph_spec.rb
|
460
|
-
- spec/unit/core/execution/windows_spec.rb
|
461
413
|
- spec/unit/core/execution/base_spec.rb
|
462
414
|
- spec/unit/core/execution/posix_spec.rb
|
463
|
-
- spec/unit/core/
|
464
|
-
- spec/unit/core/resolvable_spec.rb
|
465
|
-
- spec/unit/core/aggregate_spec.rb
|
415
|
+
- spec/unit/core/execution/windows_spec.rb
|
466
416
|
- spec/unit/core/execution_spec.rb
|
467
|
-
- spec/unit/
|
468
|
-
- spec/unit/
|
469
|
-
- spec/unit/
|
470
|
-
- spec/unit/system_uptime_spec.rb
|
471
|
-
- spec/unit/hardwareisa_spec.rb
|
472
|
-
- spec/unit/lsbminordistrelease_spec.rb
|
473
|
-
- spec/unit/virtual_spec.rb
|
474
|
-
- spec/unit/zpool_version_spec.rb
|
475
|
-
- spec/unit/zones_spec.rb
|
476
|
-
- spec/unit/ipaddress6_spec.rb
|
477
|
-
- spec/unit/selinux_spec.rb
|
478
|
-
- spec/unit/lsbdistdescription_spec.rb
|
479
|
-
- spec/unit/kernelversion_spec.rb
|
480
|
-
- spec/unit/lsbdistcodename_spec.rb
|
481
|
-
- spec/unit/interfaces_spec.rb
|
482
|
-
- spec/unit/kernel_spec.rb
|
483
|
-
- spec/unit/memory_spec.rb
|
484
|
-
- spec/unit/ldom_spec.rb
|
485
|
-
- spec/unit/zfs_version_spec.rb
|
486
|
-
- spec/unit/hardwaremodel_spec.rb
|
487
|
-
- spec/unit/version_spec.rb
|
488
|
-
- spec/unit/gce_spec.rb
|
489
|
-
- spec/unit/netmask_spec.rb
|
490
|
-
- spec/unit/kernelrelease_spec.rb
|
491
|
-
- spec/unit/lsbrelease_spec.rb
|
417
|
+
- spec/unit/core/logging_spec.rb
|
418
|
+
- spec/unit/core/resolvable_spec.rb
|
419
|
+
- spec/unit/core/suitable_spec.rb
|
492
420
|
- spec/unit/dhcp_servers_spec.rb
|
493
|
-
- spec/unit/
|
494
|
-
- spec/unit/
|
495
|
-
- spec/unit/
|
496
|
-
- spec/unit/rackspace_spec.rb
|
497
|
-
- spec/unit/processor_spec.rb
|
421
|
+
- spec/unit/domain_spec.rb
|
422
|
+
- spec/unit/ec2/rest_spec.rb
|
423
|
+
- spec/unit/ec2_spec.rb
|
498
424
|
- spec/unit/facter_spec.rb
|
425
|
+
- spec/unit/filesystems_spec.rb
|
426
|
+
- spec/unit/fqdn_spec.rb
|
427
|
+
- spec/unit/gce/metadata_spec.rb
|
428
|
+
- spec/unit/gce_spec.rb
|
499
429
|
- spec/unit/gid_spec.rb
|
500
|
-
- spec/unit/
|
430
|
+
- spec/unit/hardwareisa_spec.rb
|
431
|
+
- spec/unit/hardwaremodel_spec.rb
|
501
432
|
- spec/unit/hostname_spec.rb
|
502
|
-
- spec/unit/
|
433
|
+
- spec/unit/id_spec.rb
|
434
|
+
- spec/unit/interfaces_spec.rb
|
435
|
+
- spec/unit/ipaddress6_spec.rb
|
436
|
+
- spec/unit/ipaddress_spec.rb
|
437
|
+
- spec/unit/kernel_spec.rb
|
438
|
+
- spec/unit/kernelmajversion_spec.rb
|
439
|
+
- spec/unit/kernelrelease_spec.rb
|
440
|
+
- spec/unit/kernelversion_spec.rb
|
441
|
+
- spec/unit/ldom_spec.rb
|
442
|
+
- spec/unit/lsbdistcodename_spec.rb
|
443
|
+
- spec/unit/lsbdistdescription_spec.rb
|
503
444
|
- spec/unit/lsbdistid_spec.rb
|
445
|
+
- spec/unit/lsbdistrelease_spec.rb
|
446
|
+
- spec/unit/lsbmajdistrelease_spec.rb
|
447
|
+
- spec/unit/lsbminordistrelease_spec.rb
|
448
|
+
- spec/unit/lsbrelease_spec.rb
|
504
449
|
- spec/unit/macaddress_spec.rb
|
505
|
-
- spec/unit/
|
506
|
-
- spec/unit/
|
507
|
-
- spec/unit/
|
508
|
-
- spec/unit/operatingsystem/windows_spec.rb
|
450
|
+
- spec/unit/manufacturer_spec.rb
|
451
|
+
- spec/unit/memory_spec.rb
|
452
|
+
- spec/unit/netmask_spec.rb
|
509
453
|
- spec/unit/operatingsystem/base_spec.rb
|
510
|
-
- spec/unit/operatingsystem/linux_spec.rb
|
511
454
|
- spec/unit/operatingsystem/cumuluslinux_spec.rb
|
455
|
+
- spec/unit/operatingsystem/implementation_spec.rb
|
456
|
+
- spec/unit/operatingsystem/linux_spec.rb
|
512
457
|
- spec/unit/operatingsystem/sunos_spec.rb
|
513
458
|
- spec/unit/operatingsystem/vmkernel_spec.rb
|
514
|
-
- spec/unit/operatingsystem/
|
515
|
-
- spec/unit/
|
459
|
+
- spec/unit/operatingsystem/windows_spec.rb
|
460
|
+
- spec/unit/operatingsystem_spec.rb
|
461
|
+
- spec/unit/operatingsystemmajrelease_spec.rb
|
462
|
+
- spec/unit/operatingsystemrelease_spec.rb
|
463
|
+
- spec/unit/os_spec.rb
|
516
464
|
- spec/unit/osfamily_spec.rb
|
517
|
-
- spec/
|
465
|
+
- spec/unit/partitions_spec.rb
|
466
|
+
- spec/unit/physicalprocessorcount_spec.rb
|
467
|
+
- spec/unit/processor_spec.rb
|
468
|
+
- spec/unit/processors/os_spec.rb
|
469
|
+
- spec/unit/processors_spec.rb
|
470
|
+
- spec/unit/ps_spec.rb
|
471
|
+
- spec/unit/rackspace_spec.rb
|
472
|
+
- spec/unit/rubyplatform_spec.rb
|
473
|
+
- spec/unit/selinux_spec.rb
|
474
|
+
- spec/unit/ssh_spec.rb
|
475
|
+
- spec/unit/system32_spec.rb
|
476
|
+
- spec/unit/system_uptime_spec.rb
|
477
|
+
- spec/unit/uniqueid_spec.rb
|
478
|
+
- spec/unit/uptime_spec.rb
|
479
|
+
- spec/unit/util/collection_spec.rb
|
480
|
+
- spec/unit/util/config_spec.rb
|
481
|
+
- spec/unit/util/confine_spec.rb
|
482
|
+
- spec/unit/util/dhcp_servers_spec.rb
|
483
|
+
- spec/unit/util/directory_loader_spec.rb
|
484
|
+
- spec/unit/util/ec2_spec.rb
|
485
|
+
- spec/unit/util/fact_spec.rb
|
486
|
+
- spec/unit/util/file_read_spec.rb
|
487
|
+
- spec/unit/util/formatter_spec.rb
|
488
|
+
- spec/unit/util/ip/windows_spec.rb
|
489
|
+
- spec/unit/util/ip_spec.rb
|
490
|
+
- spec/unit/util/loader_spec.rb
|
491
|
+
- spec/unit/util/macaddress_spec.rb
|
492
|
+
- spec/unit/util/macosx_spec.rb
|
493
|
+
- spec/unit/util/manufacturer_spec.rb
|
494
|
+
- spec/unit/util/normalization_spec.rb
|
495
|
+
- spec/unit/util/operatingsystem_spec.rb
|
496
|
+
- spec/unit/util/parser_spec.rb
|
497
|
+
- spec/unit/util/partitions/partitions_spec.rb
|
498
|
+
- spec/unit/util/partitions_spec.rb
|
499
|
+
- spec/unit/util/posix_spec.rb
|
500
|
+
- spec/unit/util/processor_spec.rb
|
501
|
+
- spec/unit/util/registry_spec.rb
|
502
|
+
- spec/unit/util/resolution_spec.rb
|
503
|
+
- spec/unit/util/solaris_zones_spec.rb
|
504
|
+
- spec/unit/util/uptime_spec.rb
|
505
|
+
- spec/unit/util/values_spec.rb
|
506
|
+
- spec/unit/util/virtual_spec.rb
|
507
|
+
- spec/unit/util/vlans_spec.rb
|
508
|
+
- spec/unit/util/wmi_spec.rb
|
509
|
+
- spec/unit/util/xendomains_spec.rb
|
510
|
+
- spec/unit/version_spec.rb
|
511
|
+
- spec/unit/virtual_spec.rb
|
512
|
+
- spec/unit/zfs_version_spec.rb
|
513
|
+
- spec/unit/zonename_spec.rb
|
514
|
+
- spec/unit/zones_spec.rb
|
515
|
+
- spec/unit/zpool_version_spec.rb
|
518
516
|
- spec/watchr.rb
|
519
|
-
- spec/shared_contexts/platform.rb
|
520
517
|
homepage: https://github.com/puppetlabs/facter
|
521
518
|
licenses: []
|
519
|
+
metadata: {}
|
522
520
|
post_install_message:
|
523
521
|
rdoc_options: []
|
524
522
|
require_paths:
|
525
523
|
- lib
|
526
524
|
required_ruby_version: !ruby/object:Gem::Requirement
|
527
|
-
none: false
|
528
525
|
requirements:
|
529
|
-
- -
|
526
|
+
- - '>='
|
530
527
|
- !ruby/object:Gem::Version
|
531
528
|
version: '0'
|
532
529
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
533
|
-
none: false
|
534
530
|
requirements:
|
535
|
-
- -
|
531
|
+
- - '>='
|
536
532
|
- !ruby/object:Gem::Version
|
537
533
|
version: '0'
|
538
534
|
requirements: []
|
539
535
|
rubyforge_project:
|
540
|
-
rubygems_version:
|
536
|
+
rubygems_version: 2.0.14
|
541
537
|
signing_key:
|
542
|
-
specification_version:
|
538
|
+
specification_version: 4
|
543
539
|
summary: Facter, a system inventory tool
|
544
540
|
test_files:
|
545
|
-
- spec/
|
546
|
-
- spec/
|
541
|
+
- spec/fixtures/cpuinfo/amd64dual
|
542
|
+
- spec/fixtures/cpuinfo/amd64dual-grep
|
547
543
|
- spec/fixtures/cpuinfo/amd64quad
|
548
|
-
- spec/fixtures/cpuinfo/
|
549
|
-
- spec/fixtures/cpuinfo/ppc64
|
544
|
+
- spec/fixtures/cpuinfo/amd64solo
|
550
545
|
- spec/fixtures/cpuinfo/amd64tri
|
546
|
+
- spec/fixtures/cpuinfo/amd64twentyfour
|
551
547
|
- spec/fixtures/cpuinfo/amd64twentyfour-grep
|
552
|
-
- spec/fixtures/cpuinfo/
|
548
|
+
- spec/fixtures/cpuinfo/bbg3-armel
|
553
549
|
- spec/fixtures/cpuinfo/beaglexm-armel
|
554
|
-
- spec/fixtures/cpuinfo/
|
550
|
+
- spec/fixtures/cpuinfo/panda-armel
|
551
|
+
- spec/fixtures/cpuinfo/ppc64
|
555
552
|
- spec/fixtures/cpuinfo/sparc
|
556
|
-
- spec/fixtures/cpuinfo/amd64dual
|
557
|
-
- spec/fixtures/cpuinfo/two_singlecore-grep
|
558
|
-
- spec/fixtures/cpuinfo/amd64dual-grep
|
559
|
-
- spec/fixtures/cpuinfo/bbg3-armel
|
560
553
|
- spec/fixtures/cpuinfo/two_multicore-grep
|
561
|
-
- spec/fixtures/
|
562
|
-
- spec/fixtures/virtual/proc_1_cgroup/not_in_a_container
|
563
|
-
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container
|
564
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
565
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
566
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
567
|
-
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
568
|
-
- spec/fixtures/hpux/unistd.h
|
569
|
-
- spec/fixtures/hpux/sched.models
|
570
|
-
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
571
|
-
- spec/fixtures/hpux/machinfo/superdome2-16s
|
554
|
+
- spec/fixtures/cpuinfo/two_singlecore-grep
|
572
555
|
- spec/fixtures/hpux/machinfo/hppa-rp4440
|
573
|
-
- spec/fixtures/hpux/machinfo/ia64-
|
556
|
+
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
574
557
|
- spec/fixtures/hpux/machinfo/ia64-rx6600
|
558
|
+
- spec/fixtures/hpux/machinfo/ia64-rx8640
|
575
559
|
- spec/fixtures/hpux/machinfo/superdome-server-SD32B
|
576
|
-
- spec/fixtures/
|
577
|
-
- spec/fixtures/
|
560
|
+
- spec/fixtures/hpux/machinfo/superdome2-16s
|
561
|
+
- spec/fixtures/hpux/sched.models
|
562
|
+
- spec/fixtures/hpux/unistd.h
|
563
|
+
- spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces
|
564
|
+
- spec/fixtures/ifconfig/centos_5_5
|
565
|
+
- spec/fixtures/ifconfig/centos_5_5_eth0
|
566
|
+
- spec/fixtures/ifconfig/darwin_10_3_0
|
567
|
+
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
568
|
+
- spec/fixtures/ifconfig/darwin_10_6_4
|
569
|
+
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
570
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
571
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
572
|
+
- spec/fixtures/ifconfig/darwin_9_8_0
|
573
|
+
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
574
|
+
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
575
|
+
- spec/fixtures/ifconfig/fedora_10
|
576
|
+
- spec/fixtures/ifconfig/fedora_10_eth0
|
577
|
+
- spec/fixtures/ifconfig/fedora_13
|
578
|
+
- spec/fixtures/ifconfig/fedora_13_eth0
|
579
|
+
- spec/fixtures/ifconfig/fedora_8
|
580
|
+
- spec/fixtures/ifconfig/fedora_8_eth0
|
581
|
+
- spec/fixtures/ifconfig/freebsd_6_0
|
582
|
+
- spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt
|
583
|
+
- spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt
|
584
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
585
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80
|
586
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6
|
587
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
588
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
589
|
+
- spec/fixtures/ifconfig/linux_ifconfig_venet
|
590
|
+
- spec/fixtures/ifconfig/open_solaris_10
|
591
|
+
- spec/fixtures/ifconfig/open_solaris_b132
|
592
|
+
- spec/fixtures/ifconfig/openbsd_bridge_rules
|
593
|
+
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
594
|
+
- spec/fixtures/ifconfig/ubuntu_7_04
|
595
|
+
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
596
|
+
- spec/fixtures/ldom/ldom_v1
|
597
|
+
- spec/fixtures/netstat/centos_5_5
|
598
|
+
- spec/fixtures/netstat/darwin_10_3_0
|
599
|
+
- spec/fixtures/netstat/darwin_10_6_4
|
600
|
+
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
601
|
+
- spec/fixtures/netstat/darwin_9_8_0
|
602
|
+
- spec/fixtures/netstat/fedora_10
|
603
|
+
- spec/fixtures/netstat/open_solaris_10
|
604
|
+
- spec/fixtures/netstat/open_solaris_b132
|
605
|
+
- spec/fixtures/netstat/ubuntu_7_04
|
578
606
|
- spec/fixtures/processorcount/solaris-psrinfo
|
579
|
-
- spec/fixtures/
|
580
|
-
- spec/fixtures/
|
581
|
-
- spec/fixtures/unit/
|
607
|
+
- spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info
|
608
|
+
- spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info
|
609
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_devices
|
610
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected
|
611
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp
|
612
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_static
|
613
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp
|
614
|
+
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static
|
615
|
+
- spec/fixtures/unit/dhcp_servers/route
|
616
|
+
- spec/fixtures/unit/dhcp_servers/route_nogw
|
617
|
+
- spec/fixtures/unit/ec2/rest/meta-data/root
|
618
|
+
- spec/fixtures/unit/filesystems/linux
|
619
|
+
- spec/fixtures/unit/gce/metadata/metadata.json
|
620
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
621
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
622
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
623
|
+
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
624
|
+
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
625
|
+
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
626
|
+
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
627
|
+
- spec/fixtures/unit/kernelrelease/openbsd-5.3
|
628
|
+
- spec/fixtures/unit/kernelrelease/openbsd-5.3-current
|
629
|
+
- spec/fixtures/unit/memory/aix-svmon
|
630
|
+
- spec/fixtures/unit/memory/aix-swap_l
|
631
|
+
- spec/fixtures/unit/memory/darwin-swapinfo-multiple
|
632
|
+
- spec/fixtures/unit/memory/darwin-swapinfo-single
|
633
|
+
- spec/fixtures/unit/memory/darwin-vm_stat
|
634
|
+
- spec/fixtures/unit/memory/dragonfly-vmstat
|
635
|
+
- spec/fixtures/unit/memory/freebsd-vmstat
|
636
|
+
- spec/fixtures/unit/memory/linux-proc_meminfo
|
637
|
+
- spec/fixtures/unit/memory/openbsd-vmstat
|
638
|
+
- spec/fixtures/unit/memory/smartos_zone_swap_l-single
|
639
|
+
- spec/fixtures/unit/memory/solaris-prtconf
|
640
|
+
- spec/fixtures/unit/memory/solaris-swap_l-multiple
|
641
|
+
- spec/fixtures/unit/memory/solaris-swap_l-single
|
642
|
+
- spec/fixtures/unit/memory/solaris-vmstat
|
582
643
|
- spec/fixtures/unit/netmask/darwin_10_8_5.txt
|
644
|
+
- spec/fixtures/unit/netmask/ifconfig_aix_7.txt
|
645
|
+
- spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt
|
646
|
+
- spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt
|
647
|
+
- spec/fixtures/unit/processors/os/darwin-system-profiler
|
583
648
|
- spec/fixtures/unit/selinux/selinux_sestatus
|
584
|
-
- spec/fixtures/unit/
|
585
|
-
- spec/fixtures/unit/
|
586
|
-
- spec/fixtures/unit/util/
|
587
|
-
- spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
|
649
|
+
- spec/fixtures/unit/util/dhcp_servers/route
|
650
|
+
- spec/fixtures/unit/util/dhcp_servers/route_nogw
|
651
|
+
- spec/fixtures/unit/util/ec2/centos-arp-ec2.out
|
588
652
|
- spec/fixtures/unit/util/ec2/linux-arp-ec2.out
|
653
|
+
- spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out
|
589
654
|
- spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out
|
590
|
-
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
591
655
|
- spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out
|
592
|
-
- spec/fixtures/unit/util/ec2/
|
593
|
-
- spec/fixtures/unit/util/
|
594
|
-
- spec/fixtures/unit/util/processor/x86-pentium2
|
595
|
-
- spec/fixtures/unit/util/processor/solaris-sun4u
|
596
|
-
- spec/fixtures/unit/util/processor/solaris-i86pc
|
597
|
-
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
598
|
-
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
599
|
-
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
600
|
-
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
601
|
-
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
602
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
603
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
604
|
-
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
605
|
-
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
606
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
656
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
657
|
+
- spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig
|
607
658
|
- spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
|
608
|
-
- spec/fixtures/unit/util/ip/
|
609
|
-
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
610
|
-
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
611
|
-
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
612
|
-
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
659
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces
|
613
660
|
- spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface
|
661
|
+
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
614
662
|
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0
|
615
|
-
- spec/fixtures/unit/util/ip/
|
616
|
-
- spec/fixtures/unit/util/ip/
|
617
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
618
|
-
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
663
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
664
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
619
665
|
- spec/fixtures/unit/util/ip/hpux_1111_lanscan
|
620
|
-
- spec/fixtures/unit/util/ip/
|
621
|
-
- spec/fixtures/unit/util/ip/
|
622
|
-
- spec/fixtures/unit/util/ip/
|
666
|
+
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
667
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
668
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
669
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
670
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
671
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
672
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
673
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
674
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0
|
623
675
|
- spec/fixtures/unit/util/ip/hpux_1131_lanscan
|
624
|
-
- spec/fixtures/unit/util/ip/
|
625
|
-
- spec/fixtures/unit/util/ip/
|
676
|
+
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
677
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1
|
626
678
|
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4
|
679
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1
|
627
680
|
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0
|
681
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan
|
682
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
628
683
|
- spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0
|
629
|
-
- spec/fixtures/unit/util/ip/
|
630
|
-
- spec/fixtures/unit/util/ip/
|
631
|
-
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
632
|
-
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
684
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_eth0
|
685
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
633
686
|
- spec/fixtures/unit/util/ip/linux_get_single_interface_lo
|
634
|
-
- spec/fixtures/unit/util/
|
635
|
-
- spec/fixtures/unit/util/
|
687
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
688
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_ib0
|
689
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
|
690
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
691
|
+
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
692
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface
|
693
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
636
694
|
- spec/fixtures/unit/util/manufacturer/freebsd_dmidecode
|
637
|
-
- spec/fixtures/unit/util/manufacturer/smartos_smbios
|
638
|
-
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
639
695
|
- spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode
|
640
696
|
- spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces
|
697
|
+
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
698
|
+
- spec/fixtures/unit/util/manufacturer/smartos_smbios
|
641
699
|
- spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag
|
642
700
|
- spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag
|
701
|
+
- spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt
|
702
|
+
- spec/fixtures/unit/util/operatingsystem/redhat-7.txt
|
703
|
+
- spec/fixtures/unit/util/operatingsystem/sabayon.txt
|
704
|
+
- spec/fixtures/unit/util/operatingsystem/wheezy.txt
|
643
705
|
- spec/fixtures/unit/util/partitions/partitions/mount
|
706
|
+
- spec/fixtures/unit/util/processor/solaris-i86pc
|
707
|
+
- spec/fixtures/unit/util/processor/solaris-sun4u
|
708
|
+
- spec/fixtures/unit/util/processor/x86-pentium2
|
709
|
+
- spec/fixtures/unit/util/uptime/kstat_boot_time
|
644
710
|
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin
|
645
711
|
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd
|
646
712
|
- spec/fixtures/unit/util/uptime/ubuntu_proc_uptime
|
647
|
-
- spec/fixtures/unit/util/
|
713
|
+
- spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
|
714
|
+
- spec/fixtures/unit/util/virtual/solaris10_proc_self_status1
|
715
|
+
- spec/fixtures/unit/util/vlans/centos-5-no-vlans
|
716
|
+
- spec/fixtures/unit/util/vlans/linux_vlan_config
|
648
717
|
- spec/fixtures/unit/util/xendomains/xendomains
|
649
|
-
- spec/fixtures/unit/
|
650
|
-
- spec/fixtures/unit/
|
651
|
-
- spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt
|
652
|
-
- spec/fixtures/unit/util/operatingsystem/sabayon.txt
|
653
|
-
- spec/fixtures/unit/util/operatingsystem/wheezy.txt
|
654
|
-
- spec/fixtures/unit/util/operatingsystem/redhat-7.txt
|
655
|
-
- spec/fixtures/unit/ec2/rest/meta-data/root
|
656
|
-
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
657
|
-
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
658
|
-
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
659
|
-
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
660
|
-
- spec/fixtures/unit/processors/os/darwin-system-profiler
|
661
|
-
- spec/fixtures/unit/zfs_version/zfs_new
|
662
|
-
- spec/fixtures/unit/zfs_version/solaris_11
|
718
|
+
- spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt
|
719
|
+
- spec/fixtures/unit/zfs_version/freebsd_8.2
|
663
720
|
- spec/fixtures/unit/zfs_version/freebsd_9.0
|
664
721
|
- spec/fixtures/unit/zfs_version/linux-fuse_0.6.9
|
722
|
+
- spec/fixtures/unit/zfs_version/solaris_10
|
723
|
+
- spec/fixtures/unit/zfs_version/solaris_11
|
724
|
+
- spec/fixtures/unit/zfs_version/zfs_new
|
665
725
|
- spec/fixtures/unit/zfs_version/zfs_old
|
666
726
|
- spec/fixtures/unit/zfs_version/zfsonlinux_0.6.1
|
667
|
-
- spec/fixtures/unit/
|
668
|
-
- spec/fixtures/unit/zfs_version/solaris_10
|
669
|
-
- spec/fixtures/unit/kernelrelease/openbsd-5.3-current
|
670
|
-
- spec/fixtures/unit/kernelrelease/openbsd-5.3
|
671
|
-
- spec/fixtures/unit/memory/solaris-vmstat
|
672
|
-
- spec/fixtures/unit/memory/dragonfly-vmstat
|
673
|
-
- spec/fixtures/unit/memory/solaris-prtconf
|
674
|
-
- spec/fixtures/unit/memory/solaris-swap_l-multiple
|
675
|
-
- spec/fixtures/unit/memory/aix-swap_l
|
676
|
-
- spec/fixtures/unit/memory/solaris-swap_l-single
|
677
|
-
- spec/fixtures/unit/memory/smartos_zone_swap_l-single
|
678
|
-
- spec/fixtures/unit/memory/linux-proc_meminfo
|
679
|
-
- spec/fixtures/unit/memory/darwin-swapinfo-multiple
|
680
|
-
- spec/fixtures/unit/memory/darwin-vm_stat
|
681
|
-
- spec/fixtures/unit/memory/aix-svmon
|
682
|
-
- spec/fixtures/unit/memory/freebsd-vmstat
|
683
|
-
- spec/fixtures/unit/memory/darwin-swapinfo-single
|
684
|
-
- spec/fixtures/unit/memory/openbsd-vmstat
|
685
|
-
- spec/fixtures/unit/gce/metadata/metadata.json
|
686
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_static
|
687
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp
|
688
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_devices
|
689
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected
|
690
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp
|
691
|
-
- spec/fixtures/unit/dhcp_servers/route
|
692
|
-
- spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static
|
693
|
-
- spec/fixtures/unit/dhcp_servers/route_nogw
|
694
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
695
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
696
|
-
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
697
|
-
- spec/fixtures/unit/zpool_version/solaris_11
|
727
|
+
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
698
728
|
- spec/fixtures/unit/zpool_version/freebsd_9.0
|
699
729
|
- spec/fixtures/unit/zpool_version/linux-fuse_0.6.9
|
700
|
-
- spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1
|
701
|
-
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
702
730
|
- spec/fixtures/unit/zpool_version/solaris_10
|
703
|
-
- spec/fixtures/
|
704
|
-
- spec/fixtures/
|
705
|
-
- spec/fixtures/
|
706
|
-
- spec/fixtures/
|
707
|
-
- spec/fixtures/
|
708
|
-
- spec/fixtures/
|
709
|
-
- spec/fixtures/
|
710
|
-
- spec/fixtures/
|
711
|
-
- spec/fixtures/
|
712
|
-
- spec/fixtures/ifconfig/fedora_8
|
713
|
-
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
714
|
-
- spec/fixtures/ifconfig/centos_5_5
|
715
|
-
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
716
|
-
- spec/fixtures/ifconfig/fedora_13
|
717
|
-
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
718
|
-
- spec/fixtures/ifconfig/fedora_13_eth0
|
719
|
-
- spec/fixtures/ifconfig/darwin_9_8_0
|
720
|
-
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
721
|
-
- spec/fixtures/ifconfig/ubuntu_7_04
|
722
|
-
- spec/fixtures/ifconfig/darwin_10_6_4
|
723
|
-
- spec/fixtures/ifconfig/fedora_10_eth0
|
724
|
-
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
725
|
-
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
726
|
-
- spec/fixtures/ifconfig/open_solaris_10
|
727
|
-
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
728
|
-
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
729
|
-
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
730
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
731
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_no_public_ipv6
|
732
|
-
- spec/fixtures/ifconfig/fedora_8_eth0
|
733
|
-
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
734
|
-
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces_and_fe80
|
735
|
-
- spec/fixtures/ifconfig/fedora_10
|
736
|
-
- spec/fixtures/netstat/open_solaris_b132
|
737
|
-
- spec/fixtures/netstat/darwin_10_3_0
|
738
|
-
- spec/fixtures/netstat/centos_5_5
|
739
|
-
- spec/fixtures/netstat/darwin_9_8_0
|
740
|
-
- spec/fixtures/netstat/ubuntu_7_04
|
741
|
-
- spec/fixtures/netstat/darwin_10_6_4
|
742
|
-
- spec/fixtures/netstat/open_solaris_10
|
743
|
-
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
744
|
-
- spec/fixtures/netstat/fedora_10
|
745
|
-
- spec/fixtures/ldom/ldom_v1
|
746
|
-
- spec/puppetlabs_spec_helper.rb
|
731
|
+
- spec/fixtures/unit/zpool_version/solaris_11
|
732
|
+
- spec/fixtures/unit/zpool_version/zfsonlinux_0.6.1
|
733
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_container
|
734
|
+
- spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container
|
735
|
+
- spec/fixtures/virtual/proc_1_cgroup/not_in_a_container
|
736
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
737
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
738
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
739
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
747
740
|
- spec/integration/facter_spec.rb
|
741
|
+
- spec/lib/facter_spec/cpuinfo.rb
|
742
|
+
- spec/lib/facter_spec/windows_network.rb
|
743
|
+
- spec/puppetlabs_spec/files.rb
|
748
744
|
- spec/puppetlabs_spec/fixtures.rb
|
749
745
|
- spec/puppetlabs_spec/matchers.rb
|
750
|
-
- spec/puppetlabs_spec/files.rb
|
751
746
|
- spec/puppetlabs_spec/verbose.rb
|
747
|
+
- spec/puppetlabs_spec_helper.rb
|
752
748
|
- spec/schema/validate_facter_schema.rb
|
749
|
+
- spec/shared_contexts/platform.rb
|
753
750
|
- spec/shared_formats/parses.rb
|
754
|
-
- spec/
|
755
|
-
- spec/unit/fqdn_spec.rb
|
756
|
-
- spec/unit/uniqueid_spec.rb
|
751
|
+
- spec/spec_helper.rb
|
757
752
|
- spec/unit/application_spec.rb
|
758
|
-
- spec/unit/kernelmajversion_spec.rb
|
759
753
|
- spec/unit/architecture_spec.rb
|
760
754
|
- spec/unit/blockdevices_spec.rb
|
761
|
-
- spec/unit/
|
762
|
-
- spec/unit/rubyplatform_spec.rb
|
763
|
-
- spec/unit/util/file_read_spec.rb
|
764
|
-
- spec/unit/util/normalization_spec.rb
|
765
|
-
- spec/unit/util/partitions_spec.rb
|
766
|
-
- spec/unit/util/confine_spec.rb
|
767
|
-
- spec/unit/util/manufacturer_spec.rb
|
768
|
-
- spec/unit/util/vlans_spec.rb
|
769
|
-
- spec/unit/util/collection_spec.rb
|
770
|
-
- spec/unit/util/formatter_spec.rb
|
771
|
-
- spec/unit/util/ip/windows_spec.rb
|
772
|
-
- spec/unit/util/posix_spec.rb
|
773
|
-
- spec/unit/util/fact_spec.rb
|
774
|
-
- spec/unit/util/config_spec.rb
|
775
|
-
- spec/unit/util/resolution_spec.rb
|
776
|
-
- spec/unit/util/virtual_spec.rb
|
777
|
-
- spec/unit/util/macosx_spec.rb
|
778
|
-
- spec/unit/util/directory_loader_spec.rb
|
779
|
-
- spec/unit/util/parser_spec.rb
|
780
|
-
- spec/unit/util/partitions/partitions_spec.rb
|
781
|
-
- spec/unit/util/values_spec.rb
|
782
|
-
- spec/unit/util/ip_spec.rb
|
783
|
-
- spec/unit/util/registry_spec.rb
|
784
|
-
- spec/unit/util/solaris_zones_spec.rb
|
785
|
-
- spec/unit/util/dhcp_servers_spec.rb
|
786
|
-
- spec/unit/util/uptime_spec.rb
|
787
|
-
- spec/unit/util/xendomains_spec.rb
|
788
|
-
- spec/unit/util/processor_spec.rb
|
789
|
-
- spec/unit/util/wmi_spec.rb
|
790
|
-
- spec/unit/util/macaddress_spec.rb
|
791
|
-
- spec/unit/util/ec2_spec.rb
|
792
|
-
- spec/unit/util/operatingsystem_spec.rb
|
793
|
-
- spec/unit/util/loader_spec.rb
|
794
|
-
- spec/unit/ec2/rest_spec.rb
|
795
|
-
- spec/unit/operatingsystemmajrelease_spec.rb
|
796
|
-
- spec/unit/operatingsystemrelease_spec.rb
|
797
|
-
- spec/unit/partitions_spec.rb
|
798
|
-
- spec/unit/ps_spec.rb
|
799
|
-
- spec/unit/filesystems_spec.rb
|
800
|
-
- spec/unit/lsbdistrelease_spec.rb
|
801
|
-
- spec/unit/manufacturer_spec.rb
|
802
|
-
- spec/unit/id_spec.rb
|
803
|
-
- spec/unit/core/logging_spec.rb
|
755
|
+
- spec/unit/core/aggregate_spec.rb
|
804
756
|
- spec/unit/core/directed_graph_spec.rb
|
805
|
-
- spec/unit/core/execution/windows_spec.rb
|
806
757
|
- spec/unit/core/execution/base_spec.rb
|
807
758
|
- spec/unit/core/execution/posix_spec.rb
|
808
|
-
- spec/unit/core/
|
809
|
-
- spec/unit/core/resolvable_spec.rb
|
810
|
-
- spec/unit/core/aggregate_spec.rb
|
759
|
+
- spec/unit/core/execution/windows_spec.rb
|
811
760
|
- spec/unit/core/execution_spec.rb
|
812
|
-
- spec/unit/
|
813
|
-
- spec/unit/
|
814
|
-
- spec/unit/
|
815
|
-
- spec/unit/system_uptime_spec.rb
|
816
|
-
- spec/unit/hardwareisa_spec.rb
|
817
|
-
- spec/unit/lsbminordistrelease_spec.rb
|
818
|
-
- spec/unit/virtual_spec.rb
|
819
|
-
- spec/unit/zpool_version_spec.rb
|
820
|
-
- spec/unit/zones_spec.rb
|
821
|
-
- spec/unit/ipaddress6_spec.rb
|
822
|
-
- spec/unit/selinux_spec.rb
|
823
|
-
- spec/unit/lsbdistdescription_spec.rb
|
824
|
-
- spec/unit/kernelversion_spec.rb
|
825
|
-
- spec/unit/lsbdistcodename_spec.rb
|
826
|
-
- spec/unit/interfaces_spec.rb
|
827
|
-
- spec/unit/kernel_spec.rb
|
828
|
-
- spec/unit/memory_spec.rb
|
829
|
-
- spec/unit/ldom_spec.rb
|
830
|
-
- spec/unit/zfs_version_spec.rb
|
831
|
-
- spec/unit/hardwaremodel_spec.rb
|
832
|
-
- spec/unit/version_spec.rb
|
833
|
-
- spec/unit/gce_spec.rb
|
834
|
-
- spec/unit/netmask_spec.rb
|
835
|
-
- spec/unit/kernelrelease_spec.rb
|
836
|
-
- spec/unit/lsbrelease_spec.rb
|
761
|
+
- spec/unit/core/logging_spec.rb
|
762
|
+
- spec/unit/core/resolvable_spec.rb
|
763
|
+
- spec/unit/core/suitable_spec.rb
|
837
764
|
- spec/unit/dhcp_servers_spec.rb
|
838
|
-
- spec/unit/
|
839
|
-
- spec/unit/
|
840
|
-
- spec/unit/
|
841
|
-
- spec/unit/rackspace_spec.rb
|
842
|
-
- spec/unit/processor_spec.rb
|
765
|
+
- spec/unit/domain_spec.rb
|
766
|
+
- spec/unit/ec2/rest_spec.rb
|
767
|
+
- spec/unit/ec2_spec.rb
|
843
768
|
- spec/unit/facter_spec.rb
|
769
|
+
- spec/unit/filesystems_spec.rb
|
770
|
+
- spec/unit/fqdn_spec.rb
|
771
|
+
- spec/unit/gce/metadata_spec.rb
|
772
|
+
- spec/unit/gce_spec.rb
|
844
773
|
- spec/unit/gid_spec.rb
|
845
|
-
- spec/unit/
|
774
|
+
- spec/unit/hardwareisa_spec.rb
|
775
|
+
- spec/unit/hardwaremodel_spec.rb
|
846
776
|
- spec/unit/hostname_spec.rb
|
847
|
-
- spec/unit/
|
777
|
+
- spec/unit/id_spec.rb
|
778
|
+
- spec/unit/interfaces_spec.rb
|
779
|
+
- spec/unit/ipaddress6_spec.rb
|
780
|
+
- spec/unit/ipaddress_spec.rb
|
781
|
+
- spec/unit/kernel_spec.rb
|
782
|
+
- spec/unit/kernelmajversion_spec.rb
|
783
|
+
- spec/unit/kernelrelease_spec.rb
|
784
|
+
- spec/unit/kernelversion_spec.rb
|
785
|
+
- spec/unit/ldom_spec.rb
|
786
|
+
- spec/unit/lsbdistcodename_spec.rb
|
787
|
+
- spec/unit/lsbdistdescription_spec.rb
|
848
788
|
- spec/unit/lsbdistid_spec.rb
|
789
|
+
- spec/unit/lsbdistrelease_spec.rb
|
790
|
+
- spec/unit/lsbmajdistrelease_spec.rb
|
791
|
+
- spec/unit/lsbminordistrelease_spec.rb
|
792
|
+
- spec/unit/lsbrelease_spec.rb
|
849
793
|
- spec/unit/macaddress_spec.rb
|
850
|
-
- spec/unit/
|
851
|
-
- spec/unit/
|
852
|
-
- spec/unit/
|
853
|
-
- spec/unit/operatingsystem/windows_spec.rb
|
794
|
+
- spec/unit/manufacturer_spec.rb
|
795
|
+
- spec/unit/memory_spec.rb
|
796
|
+
- spec/unit/netmask_spec.rb
|
854
797
|
- spec/unit/operatingsystem/base_spec.rb
|
855
|
-
- spec/unit/operatingsystem/linux_spec.rb
|
856
798
|
- spec/unit/operatingsystem/cumuluslinux_spec.rb
|
799
|
+
- spec/unit/operatingsystem/implementation_spec.rb
|
800
|
+
- spec/unit/operatingsystem/linux_spec.rb
|
857
801
|
- spec/unit/operatingsystem/sunos_spec.rb
|
858
802
|
- spec/unit/operatingsystem/vmkernel_spec.rb
|
859
|
-
- spec/unit/operatingsystem/
|
860
|
-
- spec/unit/
|
803
|
+
- spec/unit/operatingsystem/windows_spec.rb
|
804
|
+
- spec/unit/operatingsystem_spec.rb
|
805
|
+
- spec/unit/operatingsystemmajrelease_spec.rb
|
806
|
+
- spec/unit/operatingsystemrelease_spec.rb
|
807
|
+
- spec/unit/os_spec.rb
|
861
808
|
- spec/unit/osfamily_spec.rb
|
862
|
-
- spec/
|
809
|
+
- spec/unit/partitions_spec.rb
|
810
|
+
- spec/unit/physicalprocessorcount_spec.rb
|
811
|
+
- spec/unit/processor_spec.rb
|
812
|
+
- spec/unit/processors/os_spec.rb
|
813
|
+
- spec/unit/processors_spec.rb
|
814
|
+
- spec/unit/ps_spec.rb
|
815
|
+
- spec/unit/rackspace_spec.rb
|
816
|
+
- spec/unit/rubyplatform_spec.rb
|
817
|
+
- spec/unit/selinux_spec.rb
|
818
|
+
- spec/unit/ssh_spec.rb
|
819
|
+
- spec/unit/system32_spec.rb
|
820
|
+
- spec/unit/system_uptime_spec.rb
|
821
|
+
- spec/unit/uniqueid_spec.rb
|
822
|
+
- spec/unit/uptime_spec.rb
|
823
|
+
- spec/unit/util/collection_spec.rb
|
824
|
+
- spec/unit/util/config_spec.rb
|
825
|
+
- spec/unit/util/confine_spec.rb
|
826
|
+
- spec/unit/util/dhcp_servers_spec.rb
|
827
|
+
- spec/unit/util/directory_loader_spec.rb
|
828
|
+
- spec/unit/util/ec2_spec.rb
|
829
|
+
- spec/unit/util/fact_spec.rb
|
830
|
+
- spec/unit/util/file_read_spec.rb
|
831
|
+
- spec/unit/util/formatter_spec.rb
|
832
|
+
- spec/unit/util/ip/windows_spec.rb
|
833
|
+
- spec/unit/util/ip_spec.rb
|
834
|
+
- spec/unit/util/loader_spec.rb
|
835
|
+
- spec/unit/util/macaddress_spec.rb
|
836
|
+
- spec/unit/util/macosx_spec.rb
|
837
|
+
- spec/unit/util/manufacturer_spec.rb
|
838
|
+
- spec/unit/util/normalization_spec.rb
|
839
|
+
- spec/unit/util/operatingsystem_spec.rb
|
840
|
+
- spec/unit/util/parser_spec.rb
|
841
|
+
- spec/unit/util/partitions/partitions_spec.rb
|
842
|
+
- spec/unit/util/partitions_spec.rb
|
843
|
+
- spec/unit/util/posix_spec.rb
|
844
|
+
- spec/unit/util/processor_spec.rb
|
845
|
+
- spec/unit/util/registry_spec.rb
|
846
|
+
- spec/unit/util/resolution_spec.rb
|
847
|
+
- spec/unit/util/solaris_zones_spec.rb
|
848
|
+
- spec/unit/util/uptime_spec.rb
|
849
|
+
- spec/unit/util/values_spec.rb
|
850
|
+
- spec/unit/util/virtual_spec.rb
|
851
|
+
- spec/unit/util/vlans_spec.rb
|
852
|
+
- spec/unit/util/wmi_spec.rb
|
853
|
+
- spec/unit/util/xendomains_spec.rb
|
854
|
+
- spec/unit/version_spec.rb
|
855
|
+
- spec/unit/virtual_spec.rb
|
856
|
+
- spec/unit/zfs_version_spec.rb
|
857
|
+
- spec/unit/zonename_spec.rb
|
858
|
+
- spec/unit/zones_spec.rb
|
859
|
+
- spec/unit/zpool_version_spec.rb
|
863
860
|
- spec/watchr.rb
|
864
|
-
- spec/shared_contexts/platform.rb
|