facter 1.6.4 → 1.6.5
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/CHANGELOG +33 -1
- data/conf/redhat/facter.spec +2 -1
- data/install.rb +25 -23
- data/lib/facter.rb +2 -1
- data/lib/facter/domain.rb +4 -4
- data/lib/facter/ec2.rb +6 -28
- data/lib/facter/hardwareisa.rb +0 -1
- data/lib/facter/hardwaremodel.rb +1 -1
- data/lib/facter/lsbmajdistrelease.rb +1 -1
- data/lib/facter/macaddress.rb +1 -1
- data/lib/facter/memory.rb +15 -4
- data/lib/facter/operatingsystem.rb +8 -4
- data/lib/facter/osfamily.rb +1 -1
- data/lib/facter/uniqueid.rb +1 -1
- data/lib/facter/util/collection.rb +2 -3
- data/lib/facter/util/config.rb +3 -3
- data/lib/facter/util/ec2.rb +49 -0
- data/lib/facter/util/fact.rb +12 -7
- data/lib/facter/util/monkey_patches.rb +7 -0
- data/lib/facter/util/uptime.rb +2 -2
- data/lib/facter/util/virtual.rb +1 -1
- data/lib/facter/virtual.rb +11 -1
- data/spec/{unit/data → fixtures/unit/selinux}/selinux_sestatus +0 -0
- data/spec/fixtures/unit/util/ec2/linux-arp-ec2.out +1 -0
- data/spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out +5 -0
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out +6 -0
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a.out +10 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/6.0-STABLE_FreeBSD_ifconfig +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/Mac_OS_X_10.5.5_ifconfig +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/darwin_ifconfig_all_with_multiple_interfaces +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/darwin_ifconfig_single_interface +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/debian_kfreebsd_ifconfig +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/hpux_ifconfig_single_interface +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/hpux_netstat_all_interfaces +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/linux_ifconfig_all_with_single_interface +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/solaris_ifconfig_all_with_multiple_interfaces +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/solaris_ifconfig_single_interface +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/windows_netsh_all_interfaces +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/windows_netsh_single_interface +0 -0
- data/spec/{unit/data → fixtures/unit/util/ip}/windows_netsh_single_interface6 +0 -0
- data/spec/{unit/data → fixtures/unit/util/manufacturer}/freebsd_dmidecode +0 -0
- data/spec/{unit/data → fixtures/unit/util/manufacturer}/linux_dmidecode_with_spaces +0 -0
- data/spec/{unit/data → fixtures/unit/util/manufacturer}/opensolaris_smbios +0 -0
- data/spec/fixtures/{uptime → unit/util/uptime}/kstat_boot_time +0 -0
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin +1 -0
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd +1 -0
- data/spec/fixtures/{uptime → unit/util/uptime}/ubuntu_proc_uptime +0 -0
- data/spec/fixtures/{uptime → unit/util/uptime}/who_b_boottime +0 -0
- data/spec/{unit/data → fixtures/unit/util/vlans}/linux_vlan_config +0 -0
- data/spec/{unit/data → fixtures/unit/util/xendomains}/xendomains +0 -0
- data/spec/integration/facter_spec.rb +2 -2
- data/spec/puppetlabs_spec/files.rb +57 -0
- data/spec/puppetlabs_spec/fixtures.rb +49 -0
- data/spec/puppetlabs_spec/matchers.rb +87 -0
- data/spec/puppetlabs_spec_helper.rb +25 -0
- data/spec/spec_helper.rb +9 -12
- data/spec/unit/architecture_spec.rb +2 -4
- data/spec/unit/domain_spec.rb +3 -1
- data/spec/unit/ec2_spec.rb +140 -0
- data/spec/unit/facter_spec.rb +2 -2
- data/spec/unit/hardwareisa_spec.rb +34 -0
- data/spec/unit/hostname_spec.rb +3 -1
- data/spec/unit/id_spec.rb +2 -2
- data/spec/unit/interfaces_spec.rb +2 -4
- data/spec/unit/ipaddress6_spec.rb +4 -7
- data/spec/unit/lsbmajdistrelease_spec.rb +13 -0
- data/spec/unit/macaddress_spec.rb +4 -7
- data/spec/unit/memory_spec.rb +11 -6
- data/spec/unit/operatingsystem_spec.rb +101 -69
- data/spec/unit/operatingsystemrelease_spec.rb +2 -4
- data/spec/unit/physicalprocessorcount_spec.rb +1 -1
- data/spec/unit/processor_spec.rb +32 -35
- data/spec/unit/selinux_spec.rb +5 -10
- data/spec/unit/uniqueid_spec.rb +27 -0
- data/spec/unit/uptime_spec.rb +2 -4
- data/spec/unit/util/collection_spec.rb +12 -3
- data/spec/unit/util/config_spec.rb +24 -0
- data/spec/unit/util/confine_spec.rb +2 -3
- data/spec/unit/util/ec2_spec.rb +112 -0
- data/spec/unit/util/fact_spec.rb +2 -3
- data/spec/unit/util/ip_spec.rb +27 -55
- data/spec/unit/util/loader_spec.rb +2 -4
- data/spec/unit/util/macaddress_spec.rb +4 -5
- data/spec/unit/util/macosx_spec.rb +2 -3
- data/spec/unit/util/manufacturer_spec.rb +8 -9
- data/spec/unit/util/processor_spec.rb +8 -10
- data/spec/unit/util/resolution_spec.rb +2 -3
- data/spec/unit/util/uptime_spec.rb +15 -14
- data/spec/unit/util/virtual_spec.rb +10 -2
- data/spec/unit/util/vlans_spec.rb +3 -5
- data/spec/unit/util/wmi_spec.rb +2 -3
- data/spec/unit/util/xendomains_spec.rb +3 -5
- data/spec/unit/virtual_spec.rb +48 -18
- metadata +44 -28
- data/spec/fixtures/uptime/sysctl_kern_boottime_big_endian +0 -0
- data/spec/fixtures/uptime/sysctl_kern_boottime_little_endian +0 -0
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
#!/usr/bin/env rspec
|
2
2
|
|
3
|
+
require 'spec_helper'
|
3
4
|
require 'facter/util/virtual'
|
4
5
|
|
5
6
|
describe Facter::Util::Virtual do
|
@@ -79,7 +80,7 @@ describe Facter::Util::Virtual do
|
|
79
80
|
Facter::Util::Virtual.should_not be_vserver
|
80
81
|
end
|
81
82
|
|
82
|
-
fixture_path =
|
83
|
+
fixture_path = fixtures('virtual', 'proc_self_status')
|
83
84
|
|
84
85
|
test_cases = [
|
85
86
|
[File.join(fixture_path, 'vserver_2_1', 'guest'), true, 'vserver 2.1 guest'],
|
@@ -149,6 +150,13 @@ describe Facter::Util::Virtual do
|
|
149
150
|
Facter::Util::Virtual.should be_kvm
|
150
151
|
end
|
151
152
|
|
153
|
+
it "should detect kvm on OpenBSD" do
|
154
|
+
FileTest.stubs(:exists?).with("/proc/cpuinfo").returns(false)
|
155
|
+
Facter.fact(:kernel).stubs(:value).returns("OpenBSD")
|
156
|
+
Facter::Util::Resolution.stubs(:exec).with("/sbin/sysctl -n hw.model").returns('QEMU Virtual CPU version (cpu64-rhel6) ("AuthenticAMD" 686-class, 512KB L2 cache)')
|
157
|
+
Facter::Util::Virtual.should be_kvm
|
158
|
+
end
|
159
|
+
|
152
160
|
it "should identify FreeBSD jail when in jail" do
|
153
161
|
Facter.fact(:kernel).stubs(:value).returns("FreeBSD")
|
154
162
|
Facter::Util::Resolution.stubs(:exec).with("/sbin/sysctl -n security.jail.jailed").returns("1")
|
@@ -1,13 +1,11 @@
|
|
1
|
-
#!/usr/bin/env
|
2
|
-
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
1
|
+
#!/usr/bin/env rspec
|
4
2
|
|
3
|
+
require 'spec_helper'
|
5
4
|
require 'facter/util/vlans'
|
6
5
|
|
7
6
|
describe Facter::Util::Vlans do
|
8
7
|
it "should return a list of vlans on Linux" do
|
9
|
-
|
10
|
-
linux_vlanconfig = File.new(sample_output_file).read();
|
8
|
+
linux_vlanconfig = my_fixture_read("linux_vlan_config")
|
11
9
|
Facter::Util::Vlans.stubs(:get_vlan_config).returns(linux_vlanconfig)
|
12
10
|
Facter::Util::Vlans.get_vlans().should == %{400,300,200,100}
|
13
11
|
end
|
data/spec/unit/util/wmi_spec.rb
CHANGED
@@ -1,14 +1,12 @@
|
|
1
|
-
#!/usr/bin/env
|
2
|
-
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
1
|
+
#!/usr/bin/env rspec
|
4
2
|
|
3
|
+
require 'spec_helper'
|
5
4
|
require 'facter/util/xendomains'
|
6
5
|
|
7
6
|
describe Facter::Util::Xendomains do
|
8
7
|
describe ".get_domains" do
|
9
8
|
it "should return a list of running Xen Domains on Xen0" do
|
10
|
-
|
11
|
-
xen0_domains = File.read(sample_output_file)
|
9
|
+
xen0_domains = my_fixture_read("xendomains")
|
12
10
|
Facter::Util::Resolution.stubs(:exec).with('/usr/sbin/xm list 2>/dev/null').returns(xen0_domains)
|
13
11
|
Facter::Util::Xendomains.get_domains.should == %{web01,mailserver}
|
14
12
|
end
|
data/spec/unit/virtual_spec.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
|
1
|
+
#!/usr/bin/env rspec
|
2
2
|
|
3
|
-
require '
|
3
|
+
require 'spec_helper'
|
4
4
|
require 'facter/util/virtual'
|
5
5
|
require 'facter/util/macosx'
|
6
6
|
|
@@ -112,6 +112,25 @@ describe "Virtual fact" do
|
|
112
112
|
Facter.fact(:virtual).value.should == "vmware"
|
113
113
|
end
|
114
114
|
|
115
|
+
it "should be xen0 with xen dom0 files in /proc" do
|
116
|
+
Facter.fact(:kernel).stubs(:value).returns("Linux")
|
117
|
+
Facter.fact(:operatingsystem).stubs(:value).returns("Linux")
|
118
|
+
Facter.fact(:hardwaremodel).stubs(:value).returns("i386")
|
119
|
+
Facter::Util::Virtual.expects(:xen?).returns(true)
|
120
|
+
FileTest.expects(:exists?).with("/proc/xen/xsd_kva").returns(true)
|
121
|
+
Facter.fact(:virtual).value.should == "xen0"
|
122
|
+
end
|
123
|
+
|
124
|
+
it "should be xenu with xen domU files in /proc" do
|
125
|
+
Facter.fact(:kernel).stubs(:value).returns("Linux")
|
126
|
+
Facter.fact(:operatingsystem).stubs(:value).returns("Linux")
|
127
|
+
Facter.fact(:hardwaremodel).stubs(:value).returns("i386")
|
128
|
+
Facter::Util::Virtual.expects(:xen?).returns(true)
|
129
|
+
FileTest.expects(:exists?).with("/proc/xen/xsd_kva").returns(false)
|
130
|
+
FileTest.expects(:exists?).with("/proc/xen/capabilities").returns(true)
|
131
|
+
Facter.fact(:virtual).value.should == "xenu"
|
132
|
+
end
|
133
|
+
|
115
134
|
it "should be xenhvm with Xen HVM vendor name from lspci" do
|
116
135
|
Facter.fact(:kernel).stubs(:value).returns("Linux")
|
117
136
|
Facter::Util::Resolution.stubs(:exec).with('lspci').returns("00:03.0 Unassigned class [ff80]: XenSource, Inc. Xen Platform Device (rev 01)")
|
@@ -184,24 +203,35 @@ describe "Virtual fact" do
|
|
184
203
|
Facter::Util::Resolution.stubs(:exec).with('prtdiag').returns("System Configuration: innotek GmbH VirtualBox")
|
185
204
|
Facter.fact(:virtual).value.should == "virtualbox"
|
186
205
|
end
|
206
|
+
end
|
187
207
|
|
188
|
-
|
189
|
-
|
190
|
-
Facter.
|
191
|
-
Facter.fact(:
|
192
|
-
Facter
|
193
|
-
|
194
|
-
Facter.
|
208
|
+
describe "on OpenBSD" do
|
209
|
+
before do
|
210
|
+
Facter::Util::Resolution.stubs(:exec).with("vmware -v").returns false
|
211
|
+
Facter.fact(:kernel).stubs(:value).returns("OpenBSD")
|
212
|
+
Facter.fact(:hardwaremodel).stubs(:value).returns(nil)
|
213
|
+
Facter::Util::Resolution.stubs(:exec).with('lspci').returns(nil)
|
214
|
+
Facter::Util::Resolution.stubs(:exec).with('dmidecode').returns(nil)
|
195
215
|
end
|
196
|
-
|
197
|
-
it "should be
|
198
|
-
Facter.
|
199
|
-
Facter.fact(:
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
Facter.fact(:virtual).value.should == "
|
216
|
+
|
217
|
+
it "should be parallels with Parallels product name from sysctl" do
|
218
|
+
Facter::Util::Resolution.stubs(:exec).with('sysctl -n hw.product 2>/dev/null').returns("Parallels Virtual Platform")
|
219
|
+
Facter.fact(:virtual).value.should == "parallels"
|
220
|
+
end
|
221
|
+
|
222
|
+
it "should be vmware with VMware product name from sysctl" do
|
223
|
+
Facter::Util::Resolution.stubs(:exec).with('sysctl -n hw.product 2>/dev/null').returns("VMware Virtual Platform")
|
224
|
+
Facter.fact(:virtual).value.should == "vmware"
|
225
|
+
end
|
226
|
+
|
227
|
+
it "should be virtualbox with VirtualBox product name from sysctl" do
|
228
|
+
Facter::Util::Resolution.stubs(:exec).with('sysctl -n hw.product 2>/dev/null').returns("VirtualBox")
|
229
|
+
Facter.fact(:virtual).value.should == "virtualbox"
|
230
|
+
end
|
231
|
+
|
232
|
+
it "should be xenhvm with Xen HVM product name from sysctl" do
|
233
|
+
Facter::Util::Resolution.stubs(:exec).with('sysctl -n hw.product 2>/dev/null').returns("HVM domU")
|
234
|
+
Facter.fact(:virtual).value.should == "xenhvm"
|
205
235
|
end
|
206
236
|
end
|
207
237
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: facter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 5
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 1.6.
|
9
|
+
- 5
|
10
|
+
version: 1.6.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Puppet Labs
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2012-01-25 00:00:00 Z
|
19
19
|
dependencies: []
|
20
20
|
|
21
21
|
description:
|
@@ -85,6 +85,7 @@ files:
|
|
85
85
|
- lib/facter/util/collection.rb
|
86
86
|
- lib/facter/util/config.rb
|
87
87
|
- lib/facter/util/confine.rb
|
88
|
+
- lib/facter/util/ec2.rb
|
88
89
|
- lib/facter/util/fact.rb
|
89
90
|
- lib/facter/util/ip.rb
|
90
91
|
- lib/facter/util/loader.rb
|
@@ -92,6 +93,7 @@ files:
|
|
92
93
|
- lib/facter/util/macosx.rb
|
93
94
|
- lib/facter/util/manufacturer.rb
|
94
95
|
- lib/facter/util/memory.rb
|
96
|
+
- lib/facter/util/monkey_patches.rb
|
95
97
|
- lib/facter/util/netmask.rb
|
96
98
|
- lib/facter/util/plist/generator.rb
|
97
99
|
- lib/facter/util/plist/parser.rb
|
@@ -162,46 +164,57 @@ files:
|
|
162
164
|
- spec/fixtures/netstat/ubuntu_7_04
|
163
165
|
- spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info
|
164
166
|
- spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info
|
167
|
+
- spec/fixtures/unit/selinux/selinux_sestatus
|
168
|
+
- spec/fixtures/unit/util/ec2/linux-arp-ec2.out
|
169
|
+
- spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out
|
170
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out
|
171
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
172
|
+
- spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig
|
173
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces
|
174
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface
|
175
|
+
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
176
|
+
- spec/fixtures/unit/util/ip/hpux_ifconfig_single_interface
|
177
|
+
- spec/fixtures/unit/util/ip/hpux_netstat_all_interfaces
|
178
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
179
|
+
- spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
|
180
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
|
181
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
182
|
+
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
183
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface
|
184
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
165
185
|
- spec/fixtures/unit/util/loader/nosuchfact.rb
|
186
|
+
- spec/fixtures/unit/util/manufacturer/freebsd_dmidecode
|
187
|
+
- spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces
|
188
|
+
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
166
189
|
- spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag
|
167
190
|
- spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag
|
168
|
-
- spec/fixtures/uptime/kstat_boot_time
|
169
|
-
- spec/fixtures/uptime/
|
170
|
-
- spec/fixtures/uptime/
|
171
|
-
- spec/fixtures/uptime/ubuntu_proc_uptime
|
172
|
-
- spec/fixtures/uptime/who_b_boottime
|
191
|
+
- spec/fixtures/unit/util/uptime/kstat_boot_time
|
192
|
+
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin
|
193
|
+
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd
|
194
|
+
- spec/fixtures/unit/util/uptime/ubuntu_proc_uptime
|
195
|
+
- spec/fixtures/unit/util/uptime/who_b_boottime
|
196
|
+
- spec/fixtures/unit/util/vlans/linux_vlan_config
|
197
|
+
- spec/fixtures/unit/util/xendomains/xendomains
|
173
198
|
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
174
199
|
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
175
200
|
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
176
201
|
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
177
202
|
- spec/integration/facter_spec.rb
|
203
|
+
- spec/puppetlabs_spec/files.rb
|
204
|
+
- spec/puppetlabs_spec/fixtures.rb
|
205
|
+
- spec/puppetlabs_spec/matchers.rb
|
206
|
+
- spec/puppetlabs_spec_helper.rb
|
178
207
|
- spec/spec_helper.rb
|
179
208
|
- spec/unit/architecture_spec.rb
|
180
|
-
- spec/unit/data/6.0-STABLE_FreeBSD_ifconfig
|
181
|
-
- spec/unit/data/darwin_ifconfig_all_with_multiple_interfaces
|
182
|
-
- spec/unit/data/darwin_ifconfig_single_interface
|
183
|
-
- spec/unit/data/debian_kfreebsd_ifconfig
|
184
|
-
- spec/unit/data/freebsd_dmidecode
|
185
|
-
- spec/unit/data/hpux_ifconfig_single_interface
|
186
|
-
- spec/unit/data/hpux_netstat_all_interfaces
|
187
|
-
- spec/unit/data/linux_dmidecode_with_spaces
|
188
|
-
- spec/unit/data/linux_ifconfig_all_with_single_interface
|
189
|
-
- spec/unit/data/linux_vlan_config
|
190
|
-
- spec/unit/data/Mac_OS_X_10.5.5_ifconfig
|
191
|
-
- spec/unit/data/opensolaris_smbios
|
192
|
-
- spec/unit/data/selinux_sestatus
|
193
|
-
- spec/unit/data/solaris_ifconfig_all_with_multiple_interfaces
|
194
|
-
- spec/unit/data/solaris_ifconfig_single_interface
|
195
|
-
- spec/unit/data/windows_netsh_all_interfaces
|
196
|
-
- spec/unit/data/windows_netsh_single_interface
|
197
|
-
- spec/unit/data/windows_netsh_single_interface6
|
198
|
-
- spec/unit/data/xendomains
|
199
209
|
- spec/unit/domain_spec.rb
|
210
|
+
- spec/unit/ec2_spec.rb
|
200
211
|
- spec/unit/facter_spec.rb
|
212
|
+
- spec/unit/hardwareisa_spec.rb
|
201
213
|
- spec/unit/hostname_spec.rb
|
202
214
|
- spec/unit/id_spec.rb
|
203
215
|
- spec/unit/interfaces_spec.rb
|
204
216
|
- spec/unit/ipaddress6_spec.rb
|
217
|
+
- spec/unit/lsbmajdistrelease_spec.rb
|
205
218
|
- spec/unit/macaddress_spec.rb
|
206
219
|
- spec/unit/memory_spec.rb
|
207
220
|
- spec/unit/operatingsystem_spec.rb
|
@@ -209,9 +222,12 @@ files:
|
|
209
222
|
- spec/unit/physicalprocessorcount_spec.rb
|
210
223
|
- spec/unit/processor_spec.rb
|
211
224
|
- spec/unit/selinux_spec.rb
|
225
|
+
- spec/unit/uniqueid_spec.rb
|
212
226
|
- spec/unit/uptime_spec.rb
|
213
227
|
- spec/unit/util/collection_spec.rb
|
228
|
+
- spec/unit/util/config_spec.rb
|
214
229
|
- spec/unit/util/confine_spec.rb
|
230
|
+
- spec/unit/util/ec2_spec.rb
|
215
231
|
- spec/unit/util/fact_spec.rb
|
216
232
|
- spec/unit/util/ip_spec.rb
|
217
233
|
- spec/unit/util/loader_spec.rb
|
Binary file
|
Binary file
|