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