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