ohai 8.8.1 → 8.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/README.md +1 -1
- data/Rakefile +6 -0
- data/bin/ohai +2 -2
- data/lib/ohai.rb +4 -4
- data/lib/ohai/config.rb +2 -2
- data/lib/ohai/dsl.rb +2 -2
- data/lib/ohai/dsl/plugin.rb +3 -3
- data/lib/ohai/dsl/plugin/versionvi.rb +3 -3
- data/lib/ohai/dsl/plugin/versionvii.rb +2 -2
- data/lib/ohai/exception.rb +2 -2
- data/lib/ohai/hints.rb +2 -2
- data/lib/ohai/loader.rb +1 -1
- data/lib/ohai/log.rb +2 -2
- data/lib/ohai/mixin/command.rb +2 -2
- data/lib/ohai/mixin/constant_helper.rb +2 -2
- data/lib/ohai/mixin/dmi_decode.rb +1 -1
- data/lib/ohai/mixin/ec2_metadata.rb +3 -3
- data/lib/ohai/mixin/network_constants.rb +4 -4
- data/lib/ohai/mixin/os.rb +2 -2
- data/lib/ohai/mixin/seconds_to_human.rb +4 -4
- data/lib/ohai/mixin/string.rb +4 -4
- data/lib/ohai/plugin_config.rb +1 -1
- data/lib/ohai/plugins/aix/cpu.rb +35 -29
- data/lib/ohai/plugins/aix/filesystem.rb +58 -40
- data/lib/ohai/plugins/aix/kernel.rb +3 -2
- data/lib/ohai/plugins/aix/memory.rb +4 -3
- data/lib/ohai/plugins/aix/network.rb +6 -4
- data/lib/ohai/plugins/aix/os.rb +30 -0
- data/lib/ohai/plugins/aix/platform.rb +3 -2
- data/lib/ohai/plugins/aix/uptime.rb +3 -2
- data/lib/ohai/plugins/aix/virtualization.rb +115 -5
- data/lib/ohai/plugins/azure.rb +1 -1
- data/lib/ohai/plugins/bsd/filesystem.rb +1 -1
- data/lib/ohai/plugins/command.rb +4 -4
- data/lib/ohai/plugins/darwin/cpu.rb +5 -3
- data/lib/ohai/plugins/darwin/filesystem.rb +4 -4
- data/lib/ohai/plugins/darwin/filesystem2.rb +4 -4
- data/lib/ohai/plugins/darwin/memory.rb +6 -5
- data/lib/ohai/plugins/darwin/network.rb +2 -2
- data/lib/ohai/plugins/darwin/platform.rb +2 -2
- data/lib/ohai/plugins/darwin/system_profiler.rb +2 -2
- data/lib/ohai/plugins/dragonflybsd/os.rb +2 -2
- data/lib/ohai/plugins/ec2.rb +3 -3
- data/lib/ohai/plugins/erlang.rb +3 -3
- data/lib/ohai/plugins/eucalyptus.rb +3 -3
- data/lib/ohai/plugins/freebsd/cpu.rb +8 -4
- data/lib/ohai/plugins/freebsd/os.rb +2 -2
- data/lib/ohai/plugins/hostname.rb +12 -4
- data/lib/ohai/plugins/init_package.rb +2 -8
- data/lib/ohai/plugins/java.rb +2 -2
- data/lib/ohai/plugins/kernel.rb +5 -4
- data/lib/ohai/plugins/keys.rb +3 -3
- data/lib/ohai/plugins/languages.rb +4 -4
- data/lib/ohai/plugins/linux/block_device.rb +3 -3
- data/lib/ohai/plugins/linux/cpu.rb +2 -2
- data/lib/ohai/plugins/linux/filesystem.rb +2 -2
- data/lib/ohai/plugins/linux/filesystem2.rb +3 -3
- data/lib/ohai/plugins/linux/lsb.rb +2 -2
- data/lib/ohai/plugins/linux/memory.rb +2 -2
- data/lib/ohai/plugins/linux/network.rb +141 -59
- data/lib/ohai/plugins/linux/platform.rb +6 -1
- data/lib/ohai/plugins/linux/virtualization.rb +1 -1
- data/lib/ohai/plugins/network.rb +49 -42
- data/lib/ohai/plugins/ohai_time.rb +4 -4
- data/lib/ohai/plugins/openstack.rb +2 -2
- data/lib/ohai/plugins/os.rb +2 -2
- data/lib/ohai/plugins/packages.rb +122 -0
- data/lib/ohai/plugins/perl.rb +5 -5
- data/lib/ohai/plugins/platform.rb +2 -2
- data/lib/ohai/plugins/powershell.rb +2 -2
- data/lib/ohai/plugins/ps.rb +2 -2
- data/lib/ohai/plugins/python.rb +1 -1
- data/lib/ohai/plugins/rackspace.rb +13 -0
- data/lib/ohai/plugins/ruby.rb +6 -6
- data/lib/ohai/plugins/sigar/network_route.rb +1 -1
- data/lib/ohai/plugins/solaris2/filesystem.rb +1 -1
- data/lib/ohai/plugins/solaris2/network.rb +1 -1
- data/lib/ohai/plugins/solaris2/platform.rb +1 -1
- data/lib/ohai/plugins/solaris2/virtualization.rb +5 -5
- data/lib/ohai/plugins/solaris2/zpools.rb +2 -2
- data/lib/ohai/plugins/ssh_host_key.rb +2 -2
- data/lib/ohai/plugins/uptime.rb +4 -4
- data/lib/ohai/plugins/virtualbox.rb +1 -1
- data/lib/ohai/plugins/virtualization.rb +7 -7
- data/lib/ohai/plugins/vmware.rb +1 -1
- data/lib/ohai/plugins/windows/filesystem.rb +1 -1
- data/lib/ohai/plugins/windows/network.rb +1 -1
- data/lib/ohai/plugins/windows/platform.rb +1 -1
- data/lib/ohai/plugins/windows/virtualization.rb +1 -1
- data/lib/ohai/provides_map.rb +3 -3
- data/lib/ohai/runner.rb +2 -2
- data/lib/ohai/system.rb +2 -2
- data/lib/ohai/util/file_helper.rb +1 -1
- data/lib/ohai/util/win32.rb +1 -1
- data/lib/ohai/util/win32/group_helper.rb +1 -1
- data/lib/ohai/version.rb +3 -3
- data/spec/data/plugins/dpkg-query.output +1087 -0
- data/spec/data/plugins/lslpp.output +49 -0
- data/spec/data/plugins/pkginfo.output +50 -0
- data/spec/data/plugins/pkglist.output +24 -0
- data/spec/data/plugins/rpmquery.output +388 -0
- data/spec/functional/application_spec.rb +1 -1
- data/spec/functional/loader_spec.rb +1 -1
- data/spec/functional/plugins/powershell_spec.rb +1 -1
- data/spec/functional/plugins/root_group_spec.rb +2 -2
- data/spec/ohai_spec.rb +6 -6
- data/spec/unit/application_spec.rb +1 -1
- data/spec/unit/config_spec.rb +1 -1
- data/spec/unit/dsl/plugin_spec.rb +2 -2
- data/spec/unit/hints_spec.rb +2 -2
- data/spec/unit/loader_spec.rb +2 -2
- data/spec/unit/mixin/ec2_metadata_spec.rb +1 -1
- data/spec/unit/plugin_config_spec.rb +1 -1
- data/spec/unit/plugins/aix/cpu_spec.rb +68 -40
- data/spec/unit/plugins/aix/filesystem_spec.rb +152 -50
- data/spec/unit/plugins/aix/hostname_spec.rb +5 -3
- data/spec/unit/plugins/aix/kernel_spec.rb +2 -1
- data/spec/unit/plugins/aix/memory_spec.rb +7 -5
- data/spec/unit/plugins/aix/network_spec.rb +17 -1
- data/spec/unit/plugins/aix/os_spec.rb +35 -0
- data/spec/unit/plugins/aix/platform_spec.rb +5 -4
- data/spec/unit/plugins/aix/uptime_spec.rb +2 -1
- data/spec/unit/plugins/aix/virtualization_spec.rb +269 -3
- data/spec/unit/plugins/azure_spec.rb +1 -1
- data/spec/unit/plugins/bsd/filesystem_spec.rb +1 -1
- data/spec/unit/plugins/bsd/virtualization_spec.rb +2 -2
- data/spec/unit/plugins/chef_spec.rb +8 -8
- data/spec/unit/plugins/darwin/cpu_spec.rb +8 -3
- data/spec/unit/plugins/darwin/hostname_spec.rb +2 -2
- data/spec/unit/plugins/darwin/kernel_spec.rb +4 -4
- data/spec/unit/plugins/darwin/memory_spec.rb +1 -1
- data/spec/unit/plugins/darwin/network_spec.rb +1 -1
- data/spec/unit/plugins/darwin/platform_spec.rb +6 -6
- data/spec/unit/plugins/darwin/system_profiler_output.rb +0 -1
- data/spec/unit/plugins/darwin/system_profiler_spec.rb +4 -4
- data/spec/unit/plugins/ec2_spec.rb +3 -3
- data/spec/unit/plugins/erlang_spec.rb +3 -3
- data/spec/unit/plugins/eucalyptus_spec.rb +2 -2
- data/spec/unit/plugins/fail_spec.rb +6 -6
- data/spec/unit/plugins/freebsd/cpu_spec.rb +19 -4
- data/spec/unit/plugins/freebsd/hostname_spec.rb +2 -2
- data/spec/unit/plugins/freebsd/kernel_spec.rb +4 -4
- data/spec/unit/plugins/freebsd/platform_spec.rb +7 -7
- data/spec/unit/plugins/hostname_spec.rb +2 -2
- data/spec/unit/plugins/init_package_spec.rb +12 -2
- data/spec/unit/plugins/java_spec.rb +5 -5
- data/spec/unit/plugins/kernel_spec.rb +4 -2
- data/spec/unit/plugins/linux/block_device_spec.rb +75 -0
- data/spec/unit/plugins/linux/cpu_spec.rb +2 -2
- data/spec/unit/plugins/linux/filesystem2_spec.rb +14 -14
- data/spec/unit/plugins/linux/filesystem_spec.rb +1 -1
- data/spec/unit/plugins/linux/hostname_spec.rb +2 -2
- data/spec/unit/plugins/linux/kernel_spec.rb +5 -5
- data/spec/unit/plugins/linux/lsb_spec.rb +17 -17
- data/spec/unit/plugins/linux/network_spec.rb +80 -11
- data/spec/unit/plugins/linux/platform_spec.rb +20 -1
- data/spec/unit/plugins/linux/uptime_spec.rb +8 -8
- data/spec/unit/plugins/linux/virtualization_spec.rb +1 -1
- data/spec/unit/plugins/lua_spec.rb +2 -2
- data/spec/unit/plugins/netbsd/hostname_spec.rb +2 -2
- data/spec/unit/plugins/netbsd/kernel_spec.rb +2 -2
- data/spec/unit/plugins/netbsd/platform_spec.rb +2 -2
- data/spec/unit/plugins/network_spec.rb +110 -37
- data/spec/unit/plugins/nodejs_spec.rb +2 -2
- data/spec/unit/plugins/ohai_spec.rb +5 -5
- data/spec/unit/plugins/ohai_time_spec.rb +8 -8
- data/spec/unit/plugins/openbsd/hostname_spec.rb +2 -2
- data/spec/unit/plugins/openbsd/kernel_spec.rb +4 -4
- data/spec/unit/plugins/openbsd/platform_spec.rb +6 -6
- data/spec/unit/plugins/openstack_spec.rb +2 -2
- data/spec/unit/plugins/os_spec.rb +11 -11
- data/spec/unit/plugins/packages_spec.rb +241 -0
- data/spec/unit/plugins/perl_spec.rb +3 -3
- data/spec/unit/plugins/php_spec.rb +2 -2
- data/spec/unit/plugins/platform_spec.rb +2 -2
- data/spec/unit/plugins/python_spec.rb +3 -3
- data/spec/unit/plugins/rackspace_spec.rb +7 -0
- data/spec/unit/plugins/ruby_spec.rb +3 -3
- data/spec/unit/plugins/sigar/network_route_spec.rb +1 -1
- data/spec/unit/plugins/solaris2/cpu_spec.rb +1 -1
- data/spec/unit/plugins/solaris2/filesystem.rb +1 -1
- data/spec/unit/plugins/solaris2/network_spec.rb +3 -3
- data/spec/unit/plugins/solaris2/platform_spec.rb +5 -5
- data/spec/unit/plugins/solaris2/virtualization_spec.rb +1 -1
- data/spec/unit/plugins/ssh_host_keys_spec.rb +2 -2
- data/spec/unit/plugins/virtualbox_spec.rb +1 -1
- data/spec/unit/plugins/windows/virtualization_spec.rb +1 -1
- data/spec/unit/provides_map_spec.rb +2 -2
- data/spec/unit/runner_spec.rb +2 -2
- data/spec/unit/system_spec.rb +3 -3
- data/spec/unit/util/file_helper_spec.rb +1 -1
- metadata +13 -3
@@ -0,0 +1,49 @@
|
|
1
|
+
bos.sysmgt:bos.sysmgt.smit:7.1.1.15: : :C:F:System Management Interface Tool (SMIT): : : : : : :0:0:/:1216
|
2
|
+
bos.sysmgt:bos.sysmgt.sysbr:7.1.1.17: : :C:F:System Backup and BOS Install Utilities: : : : : : :0:0:/:1228
|
3
|
+
bos.sysmgt:bos.sysmgt.trace:7.1.1.15: : :C:F:Software Trace Service Aids: : : : : : :0:1:/:1216
|
4
|
+
bos.terminfo:bos.terminfo.ansi.data:7.1.0.0: : :C: :Amer National Stds Institute Terminal Defs: : : : : : :0:1:/:1036
|
5
|
+
bos.terminfo:bos.terminfo.com.data:7.1.0.0: : :C: :Common Terminal Definitions: : : : : : :0:1:/:1036
|
6
|
+
bos.terminfo:bos.terminfo.dec.data:7.1.0.0: : :C: :Digital Equipment Corp. Terminal Definitions: : : : : : :0:1:/:1036
|
7
|
+
bos.terminfo:bos.terminfo.ibm.data:7.1.0.0: : :C: :IBM Terminal Definitions: : : : : : :0:1:/:1036
|
8
|
+
bos.terminfo:bos.terminfo.pc.data:7.1.0.0: : :C: :Personal Computer Terminal Definitions: : : : : : :0:1:/:1036
|
9
|
+
bos.terminfo:bos.terminfo.print.data:7.1.0.0: : :C: :Generic Line Printer Terminal Definitions: : : : : : :0:1:/:1036
|
10
|
+
bos.terminfo:bos.terminfo.rte:7.1.0.0: : :C: :Run-time Environment for AIX Terminals: : : : : : :0:0:/:1036
|
11
|
+
bos.terminfo:bos.terminfo.svprint.data:7.1.0.0: : :C: :System V Printer Terminal Definitions: : : : : : :0:0:/:1036
|
12
|
+
bos.terminfo:bos.terminfo.televideo.data:7.1.0.0: : :C: :Televideo Terminal Definitions: : : : : : :0:0:/:1036
|
13
|
+
bos.terminfo:bos.terminfo.wyse.data:7.1.0.0: : :C: :Wyse Terminal Definitions: : : : : : :0:0:/:1036
|
14
|
+
bos.txt:bos.txt.hplj.fnt:7.1.0.0: : :C: :Fonts for Hewlett Packard Laser Jet Printers : : : : : : :0:0:/:1115
|
15
|
+
bos.txt:bos.txt.ibm3812.fnt:7.1.0.0: : :C: :Fonts for IBM 3812 Printer : : : : : : :0:0:/:1115
|
16
|
+
bos.txt:bos.txt.ibm3816.fnt:7.1.0.0: : :C: :Fonts for IBM 3816 Printer : : : : : : :0:0:/:1115
|
17
|
+
bos.txt:bos.txt.spell:7.1.0.0: : :C: :Writer's Tools Commands : : : : : : :0:0:/:1115
|
18
|
+
bos.txt:bos.txt.spell.data:7.1.0.0: : :C: :Writer's Tools Data: : : : : : :0:0:/:1036
|
19
|
+
bos.txt:bos.txt.tfs:7.1.1.15: : :C:F:Text Formatting Services Commands: : : : : : :0:0:/:1216
|
20
|
+
bos.txt:bos.txt.tfs.data:7.1.0.0: : :C: :Text Formatting Services Data: : : : : : :0:0:/:1036
|
21
|
+
bos.wpars:bos.wpars:7.1.1.15: : :C:F:AIX Workload Partitions: : : : : : :0:0:/:1216
|
22
|
+
cdrtools.base:cdrtools.base:1.9.0.9: : :C: :CD/DVD recorder: : : : : : :0:0:/:
|
23
|
+
cdrtools.man.en_US:cdrtools.man.en_US:1.9.0.9: : :C: :CD/DVD recorder man page documentation: : : : : : :0:0:/:
|
24
|
+
chef:chef:12.5.1.1: : :C: :The full stack of chef: : : : : : :0:0:/:
|
25
|
+
clic.rte:clic.rte.kernext:4.7.0.1: : :C: :CryptoLite for C Kernel: : : : : : :0:0:/:
|
26
|
+
clic.rte:clic.rte.lib:4.7.0.1: : :C: :CryptoLite for C Library: : : : : : :0:0:/:
|
27
|
+
devices.artic960:devices.artic960.diag:7.1.0.0: : :C: :IBM ARTIC960 Adapter Diagnostics : : : : : : :0:0:/:1115
|
28
|
+
devices.artic960:devices.artic960.rte:7.1.1.15: : :C:F:IBM ARTIC960 Runtime Support: : : : : : :0:0:/:1216
|
29
|
+
devices.artic960:devices.artic960.ucode:7.1.0.0: : :C: :IBM ARTIC960 Adapter Software : : : : : : :0:0:/:1115
|
30
|
+
devices.chrp.AT97SC3201_r:devices.chrp.AT97SC3201_r.rte:7.1.0.0: : :C: :Trusted Platform Module Device Software: : : : : : :0:0:/:1036
|
31
|
+
devices.chrp.IBM.lhca:devices.chrp.IBM.lhca.rte:7.1.1.16: : :C:F:Infiniband Logical HCA Runtime Environment: : : : : : :0:0:/:1228
|
32
|
+
devices.chrp.IBM.lhea:devices.chrp.IBM.lhea.diag:7.1.0.0: : :C: :Host Ethernet Adapter Diagnostics : : : : : : :0:0:/:1115
|
33
|
+
devices.chrp.IBM.lhea:devices.chrp.IBM.lhea.rte:7.1.1.16: : :C:F:Host Ethernet Adapter (HEA) Runtime Environment: : : : : : :0:0:/:1228
|
34
|
+
devices.chrp.base:devices.chrp.base.ServiceRM:1.5.1.0: : :C:F:RSCT Service Resource Manager: : : : : : :0:0:/:
|
35
|
+
devices.chrp.base:devices.chrp.base.diag:7.1.1.15: : :C:F:RISC CHRP Base System Device Diagnostics: : : : : : :0:0:/:1216
|
36
|
+
devices.chrp.base:devices.chrp.base.rte:7.1.1.16: : :C:F:RISC PC Base System Device Software (CHRP): : : : : : :0:0:/:1228
|
37
|
+
devices.chrp.pci:devices.chrp.pci.rte:7.1.1.16: : :C:F:PCI Bus Software (CHRP): : : : : : :0:0:/:1228
|
38
|
+
devices.chrp.pciex:devices.chrp.pciex.rte:7.1.0.0: : :C: :PCI Express Bus Software (CHRP): : : : : : :0:0:/:1036
|
39
|
+
devices.chrp.vdevice:devices.chrp.vdevice.rte:7.1.1.16: : :C:F:Virtual I/O Bus Support: : : : : : :0:0:/:1228
|
40
|
+
devices.chrp_lpar.base:devices.chrp_lpar.base.ras:7.1.0.15: : :C: :CHRP LPAR RAS Support : : : : : : :0:0:/:1115
|
41
|
+
devices.common.IBM.async:devices.common.IBM.async.diag:7.1.0.0: : :C: :Common Serial Adapter Diagnostics: : : : : : :0:0:/:1036
|
42
|
+
devices.common.IBM.atm:devices.common.IBM.atm.rte:7.1.1.16: : :C:F:Common ATM Software: : : : : : :0:0:/:1228
|
43
|
+
devices.common.IBM.crypt:devices.common.IBM.crypt.rte:7.1.0.0: : :C: :Cryptographic Common Runtime Environment: : : : : : :0:0:/:1036
|
44
|
+
devices.common.IBM.cx:devices.common.IBM.cx.rte:7.1.1.15: : :C:F:CX Common Adapter Software: : : : : : :0:0:/:1216
|
45
|
+
devices.common.IBM.disk:devices.common.IBM.disk.rte:7.1.1.15: : :C:F:Common IBM Disk Software: : : : : : :0:0:/:1216
|
46
|
+
devices.common.IBM.ethernet:devices.common.IBM.ethernet.rte:7.1.1.16: : :C:F:Common Ethernet Software: : : : : : :0:1:/:1228
|
47
|
+
devices.common.IBM.fc:devices.common.IBM.fc.hba-api:7.1.1.16: : :C:F:Common HBA API Library: : : : : : :0:0:/:1228
|
48
|
+
devices.common.IBM.fc:devices.common.IBM.fc.rte:7.1.1.16: : :C:F:Common IBM FC Software: : : : : : :0:0:/:1228
|
49
|
+
devices.common.IBM.fda:devices.common.IBM.fda.diag:7.1.0.0: : :C: :Common Diskette Adapter and Device Diagnostics: : : : : : :0:0:/:1036
|
@@ -0,0 +1,50 @@
|
|
1
|
+
PKGINST: mqm
|
2
|
+
NAME: WebSphere MQ Client for Sun Solaris
|
3
|
+
CATEGORY: application
|
4
|
+
ARCH: sparcv9
|
5
|
+
VERSION: 7.0.1.4
|
6
|
+
BASEDIR: /
|
7
|
+
VENDOR: IBM
|
8
|
+
PSTAMP: src (packaged: January 14, 2011 - 11:44:27 PM)
|
9
|
+
INSTDATE: Dec 22 2015 17:10
|
10
|
+
VSTOCK: 5724-H72
|
11
|
+
STATUS: completely installed
|
12
|
+
FILES: 3303 installed pathnames
|
13
|
+
88 directories
|
14
|
+
158 executables
|
15
|
+
20 setuid/setgid executables
|
16
|
+
327903 blocks used (approx)
|
17
|
+
|
18
|
+
PKGINST: vasclnt
|
19
|
+
NAME: vasclnt 4.1.0.21853
|
20
|
+
CATEGORY: application
|
21
|
+
ARCH: sparcv9
|
22
|
+
VERSION: 4.1.0.21853
|
23
|
+
BASEDIR: /
|
24
|
+
VENDOR: Quest Software, Inc.
|
25
|
+
DESC: Quest Authentication System (QAS) provides centralized user and
|
26
|
+
PSTAMP: vassol8sparc20150701013812
|
27
|
+
INSTDATE: Dec 22 2015 16:58
|
28
|
+
STATUS: completely installed
|
29
|
+
FILES: 174 installed pathnames
|
30
|
+
9 shared pathnames
|
31
|
+
32 directories
|
32
|
+
101 executables
|
33
|
+
60402 blocks used (approx)
|
34
|
+
|
35
|
+
PKGINST: vasgp
|
36
|
+
NAME: vasgp 4.1.0.21853
|
37
|
+
CATEGORY: application
|
38
|
+
ARCH: sparcv9
|
39
|
+
VERSION: 4.1.0.21853
|
40
|
+
BASEDIR: /
|
41
|
+
VENDOR: Quest Software, Inc.
|
42
|
+
DESC: Quest Group Policy (QGP) provides Active Directory Group Policy
|
43
|
+
PSTAMP: vassol8sparc20150701013859
|
44
|
+
INSTDATE: Dec 22 2015 17:06
|
45
|
+
STATUS: completely installed
|
46
|
+
FILES: 50 installed pathnames
|
47
|
+
9 shared pathnames
|
48
|
+
18 directories
|
49
|
+
25 executables
|
50
|
+
11999 blocks used (approx)
|
@@ -0,0 +1,24 @@
|
|
1
|
+
chef 12.5.1 i--
|
2
|
+
compatibility/ucb 0.5.11-0.175.2.0.0.42.2 i--
|
3
|
+
compress/bzip2 1.0.6-0.175.2.0.0.42.1 i--
|
4
|
+
compress/gzip 1.5-0.175.2.4.0.3.0 i--
|
5
|
+
compress/p7zip 9.20.1-0.175.2.0.0.42.1 i--
|
6
|
+
compress/pbzip2 1.1.6-0.175.2.0.0.42.1 i--
|
7
|
+
compress/pixz 1.0-0.175.2.0.0.42.1 i--
|
8
|
+
compress/unzip 6.0-0.175.2.3.0.4.0 i--
|
9
|
+
compress/xz 5.0.1-0.175.2.0.0.42.1 i--
|
10
|
+
compress/zip 3.0-0.175.2.0.0.42.1 i--
|
11
|
+
consolidation/SunVTS/SunVTS-incorporation 7.18.2-0.175.2.1.0.5.1 i--
|
12
|
+
consolidation/X/X-incorporation 0.5.11-0.175.2.1.0.3.1413 i--
|
13
|
+
consolidation/admin/admin-incorporation 0.5.11-0.175.1.0.0.5.0 i--
|
14
|
+
consolidation/cacao/cacao-incorporation 0.5.11-0.175.2.0.0.38.0 i--
|
15
|
+
consolidation/cde/cde-incorporation 0.5.11-0.175.2.0.0.23.0 i--
|
16
|
+
consolidation/cns/cns-incorporation 0.5.11-0.175.2.0.0.39.0 i--
|
17
|
+
consolidation/dbtg/dbtg-incorporation 0.5.11-0.175.2.0.0.38.0 i--
|
18
|
+
consolidation/ddt/ddt-incorporation 8.10.15.11.23 i--
|
19
|
+
consolidation/desktop/desktop-incorporation 0.5.11-0.175.2.4.0.5.0 i--
|
20
|
+
consolidation/desktop/gnome-incorporation 0.5.11-0.175.2.0.0.42.0 i--
|
21
|
+
consolidation/gfx/gfx-incorporation 0.5.11-0.175.1.0.0.5.0 i--
|
22
|
+
consolidation/ips/ips-incorporation 0.5.11-0.175.2.3.0.3.0 i--
|
23
|
+
consolidation/java-7/java-7-incorporation 1.7.0.72.14-0 i--
|
24
|
+
system/EMCpower (emc.com) 6.0.0.1.0-3 i--
|
@@ -0,0 +1,388 @@
|
|
1
|
+
ntp 4.2.6p5 3.el6_6
|
2
|
+
perl-CGI 3.51 136.el6_6.1
|
3
|
+
mailx 12.4 8.el6_6
|
4
|
+
libattr 2.4.44 7.el6
|
5
|
+
perl-ExtUtils-ParseXS 2.2003.0 136.el6_6.1
|
6
|
+
redhat-lsb-core 4.0 7.el6
|
7
|
+
libsepol 2.0.41 4.el6
|
8
|
+
screen 4.0.3 16.el6
|
9
|
+
coreutils-libs 8.4 37.el6
|
10
|
+
bzip2-libs 1.0.5 7.el6_0
|
11
|
+
gpg-pubkey 66fd4949 4803fe57
|
12
|
+
libudev 147 2.57.el6
|
13
|
+
hal-libs 0.5.14 14.el6
|
14
|
+
plymouth-scripts 0.8.3 27.el6_5.1
|
15
|
+
libgpg-error 1.7 4.el6
|
16
|
+
libselinux-utils 2.0.94 5.8.el6
|
17
|
+
sqlite 3.6.20 1.el6
|
18
|
+
libxcb 1.9.1 2.el6
|
19
|
+
libxml2 2.7.6 17.el6_6.1
|
20
|
+
p11-kit-trust 0.18.5 2.el6_5.2
|
21
|
+
libgcrypt 1.4.5 11.el6_4
|
22
|
+
upstart 0.6.5 13.el6_5.3
|
23
|
+
checkpolicy 2.0.22 1.el6
|
24
|
+
procps 3.2.8 30.el6
|
25
|
+
pth 2.0.7 9.3.el6
|
26
|
+
libX11 1.6.0 2.2.el6
|
27
|
+
less 436 13.el6
|
28
|
+
libXdamage 1.1.3 4.el6
|
29
|
+
file 5.04 21.el6
|
30
|
+
cryptsetup-luks 1.2.0 11.el6
|
31
|
+
libXfont 1.4.5 4.el6_6
|
32
|
+
eggdbus 0.6 3.el6
|
33
|
+
python-rhsm 1.12.5 2.el6
|
34
|
+
hal-info 20090716 3.1.el6
|
35
|
+
hwdata 0.233 11.1.el6
|
36
|
+
diffutils 2.8.1 28.el6
|
37
|
+
mesa-libGL 10.1.2 2.el6
|
38
|
+
initscripts 9.03.46 1.el6_6.1
|
39
|
+
which 2.19 6.el6
|
40
|
+
xorg-x11-drv-vmware 13.0.1 9.el6
|
41
|
+
cracklib-dicts 2.8.16 4.el6
|
42
|
+
libdrm 2.4.52 4.el6
|
43
|
+
logrotate 3.7.8 17.el6
|
44
|
+
mingetty 1.08 5.el6
|
45
|
+
unzip 6.0 2.el6_6
|
46
|
+
e2fsprogs 1.41.12 21.el6
|
47
|
+
fipscheck-lib 1.2.0 7.el6
|
48
|
+
cyrus-sasl 2.1.23 15.el6_6.2
|
49
|
+
dmidecode 2.12 5.el6_5
|
50
|
+
libnl 1.1.4 2.el6
|
51
|
+
chef 12.2.1 1.el6
|
52
|
+
ql2400-firmware 7.03.00 1.el6_5
|
53
|
+
gdbm 1.8.0 36.el6
|
54
|
+
xorg-x11-server-Xorg 1.15.0 26.el6_6
|
55
|
+
python-dateutil 1.4.1 6.el6
|
56
|
+
openssh 5.3p1 104.el6_6.1
|
57
|
+
dbus 1.2.24 8.el6_6
|
58
|
+
perl-version 0.77 136.el6_6.1
|
59
|
+
pygpgme 0.1 18.20090824bzr68.el6
|
60
|
+
dracut-kernel 004 356.el6_6.2
|
61
|
+
perl 5.10.1 136.el6_6.1
|
62
|
+
rhnlib 2.5.22 15.el6
|
63
|
+
nss-sysinit 3.18.0 5.3.el6_6
|
64
|
+
pygobject2 2.20.0 5.el6
|
65
|
+
selinux-policy 3.7.19 260.el6_6.3
|
66
|
+
openssh-clients 5.3p1 104.el6_6.1
|
67
|
+
ca-certificates 2015.2.4 65.0.1.el6_6
|
68
|
+
device-mapper-event-libs 1.02.90 2.el6_6.3
|
69
|
+
bind-utils 9.8.2 0.30.rc1.el6_6.3
|
70
|
+
rpm-python 4.8.0 38.el6_6
|
71
|
+
glibc-common 2.12 1.149.el6_6.9
|
72
|
+
kernel-firmware 2.6.32 504.23.4.el6
|
73
|
+
libssh2 1.4.2 1.el6_6.1
|
74
|
+
openssl-devel 1.0.1e 30.el6_6.11
|
75
|
+
nss-softokn 3.14.3 22.el6_6
|
76
|
+
tree 1.5.3 2.el6
|
77
|
+
virt-what 1.11 1.2.el6
|
78
|
+
rpcbind 0.2.0 11.el6
|
79
|
+
nfs-utils 1.2.3 54.el6
|
80
|
+
autoconf 2.63 5.1.el6
|
81
|
+
cloog-ppl 0.15.7 1.2.el6
|
82
|
+
b43-openfwwf 5.2 4.el6
|
83
|
+
iwl1000-firmware 39.31.5.1 1.el6
|
84
|
+
libstdc++-devel 4.4.7 11.el6
|
85
|
+
xz 4.999.9 0.5.beta.20091007git.el6
|
86
|
+
acl 2.2.49 6.el6
|
87
|
+
elfutils 0.158 3.2.el6
|
88
|
+
ql2100-firmware 1.19.38 3.1.el6
|
89
|
+
fakeroot 1.12.2 22.2.el6
|
90
|
+
rt61pci-firmware 1.2 7.el6
|
91
|
+
perl-IO-Compress-Base 2.021 136.el6_6.1
|
92
|
+
ipw2100-firmware 1.3 11.el6
|
93
|
+
gpg-pubkey fd431d51 4ae0493b
|
94
|
+
libcom_err-devel 1.41.12 21.el6
|
95
|
+
kernel 2.6.32 504.12.2.el6
|
96
|
+
filesystem 2.4.30 3.el6
|
97
|
+
basesystem 10.0 4.el6
|
98
|
+
time 1.7 37.1.el6
|
99
|
+
cvs 1.11.23 16.el6
|
100
|
+
pax 3.4 10.1.el6
|
101
|
+
at 3.1.10 44.el6_6.2
|
102
|
+
libgcc 4.4.7 11.el6
|
103
|
+
libcap 2.16 5.5.el6
|
104
|
+
ed 1.1 3.3.el6
|
105
|
+
redhat-release-server 6Server 6.6.0.2.el6
|
106
|
+
info 4.13a 8.el6
|
107
|
+
popt 1.13 7.el6
|
108
|
+
perl-Test-Harness 3.17 136.el6_6.1
|
109
|
+
bash 4.1.2 29.el6
|
110
|
+
libacl 2.2.49 6.el6
|
111
|
+
perl-ExtUtils-MakeMaker 6.55 136.el6_6.1
|
112
|
+
perl-Test-Simple 0.92 136.el6_6.1
|
113
|
+
libcom_err 1.41.12 21.el6
|
114
|
+
iotop 0.3.2 7.el6
|
115
|
+
audit-libs 2.3.7 5.el6
|
116
|
+
wemux 3.2.0 1.el6
|
117
|
+
grep 2.6.3 6.el6
|
118
|
+
libdnet 1.12 6.el6
|
119
|
+
coreutils 8.4 37.el6
|
120
|
+
libblkid 2.17.2 12.18.el6
|
121
|
+
pcre 7.8 6.el6
|
122
|
+
lua 5.1.4 4.1.el6
|
123
|
+
mesa-dri-filesystem 10.1.2 2.el6
|
124
|
+
cpio 2.10 12.el6_5
|
125
|
+
libXau 1.0.6 4.el6
|
126
|
+
p11-kit 0.18.5 2.el6_5.2
|
127
|
+
glib2 2.28.8 4.el6
|
128
|
+
grubby 7.0.15 7.el6
|
129
|
+
expat 2.0.1 11.el6_2
|
130
|
+
bzip2 1.0.5 7.el6_0
|
131
|
+
openldap 2.4.39 8.el6
|
132
|
+
libss 1.41.12 21.el6
|
133
|
+
psmisc 22.6 19.el6_5
|
134
|
+
sysvinit-tools 2.87 5.dsf.el6
|
135
|
+
libstdc++ 4.4.7 11.el6
|
136
|
+
libX11-common 1.6.0 2.2.el6
|
137
|
+
pciutils-libs 3.1.10 4.el6
|
138
|
+
libXfixes 5.0.1 2.1.el6
|
139
|
+
gzip 1.3.12 22.el6
|
140
|
+
libxslt 1.1.26 2.el6_3.1
|
141
|
+
libXxf86vm 1.1.3 2.1.el6
|
142
|
+
file-libs 5.04 21.el6
|
143
|
+
libxkbfile 1.0.6 1.1.el6
|
144
|
+
ethtool 3.5 5.el6
|
145
|
+
gmp 4.3.1 7.el6_2.2
|
146
|
+
cryptsetup-luks-libs 1.2.0 11.el6
|
147
|
+
libnih 1.0.1 7.el6
|
148
|
+
python-libs 2.6.6 52.el6
|
149
|
+
libutempter 1.1.5 4.1.el6
|
150
|
+
yum 3.2.29 60.el6
|
151
|
+
vim-minimal 7.2.411 1.8.el6
|
152
|
+
gnupg2 2.0.14 8.el6
|
153
|
+
net-tools 1.60 110.el6_2
|
154
|
+
redhat-support-lib-python 0.9.6 1.el6
|
155
|
+
tar 1.23 11.el6
|
156
|
+
mysql-libs 5.1.73 3.el6_5
|
157
|
+
module-init-tools 3.9 24.el6
|
158
|
+
pinentry 0.7.6 6.el6
|
159
|
+
iptables 1.4.7 14.el6
|
160
|
+
util-linux-ng 2.17.2 12.18.el6
|
161
|
+
m4 1.4.13 5.el6
|
162
|
+
udev 147 2.57.el6
|
163
|
+
dash 0.5.5.1 4.el6
|
164
|
+
rhn-client-tools 1.0.0.1 18.el6
|
165
|
+
groff 1.18.1.4 21.el6
|
166
|
+
cracklib 2.8.16 4.el6
|
167
|
+
rhn-setup 1.0.0.1 18.el6
|
168
|
+
redhat-logos 60.0.14 1.el6
|
169
|
+
libpciaccess 0.13.3 0.1.el6
|
170
|
+
plymouth 0.8.3 27.el6_5.1
|
171
|
+
libcap-ng 0.6.4 3.el6_0.1
|
172
|
+
rhn-check 1.0.0.1 18.el6
|
173
|
+
bfa-firmware 3.2.23.0 2.el6
|
174
|
+
redhat-support-tool 0.9.6 2.el6
|
175
|
+
gpgme 1.1.8 3.el6
|
176
|
+
authconfig 6.1.12 19.el6
|
177
|
+
efibootmgr 0.5.4 12.el6
|
178
|
+
sudo 1.8.6p3 15.el6
|
179
|
+
fipscheck 1.2.0 7.el6
|
180
|
+
cyrus-sasl-lib 2.1.23 15.el6_6.2
|
181
|
+
audit 2.3.7 5.el6
|
182
|
+
libsemanage 2.0.43 4.2.el6
|
183
|
+
elfutils-libelf 0.158 3.2.el6
|
184
|
+
gpg-pubkey 83ef826a 4a690bb4
|
185
|
+
xorg-x11-drv-ati-firmware 7.3.99 2.el6
|
186
|
+
newt 0.52.11 3.el6
|
187
|
+
xorg-x11-server-common 1.15.0 26.el6_6
|
188
|
+
ql2500-firmware 7.03.00 1.el6_5
|
189
|
+
libffi 3.0.5 3.2.el6
|
190
|
+
krb5-devel 1.10.3 37.el6_6
|
191
|
+
shadow-utils 4.1.4.2 19.el6_6.1
|
192
|
+
python-iniparse 0.3.1 2.1.el6
|
193
|
+
newt-python 0.52.11 3.el6
|
194
|
+
dbus-libs 1.2.24 8.el6_6
|
195
|
+
python-lxml 2.2.3 1.1.el6
|
196
|
+
python-ethtool 0.6 5.el6
|
197
|
+
python-dmidecode 3.10.13 3.el6_4
|
198
|
+
perl-Pod-Escapes 1.04 136.el6_6.1
|
199
|
+
runit 2.1.2 1.el6
|
200
|
+
perl-Module-Pluggable 3.90 136.el6_6.1
|
201
|
+
python-pycurl 7.19.0 8.el6
|
202
|
+
dracut 004 356.el6_6.2
|
203
|
+
perl-Pod-Simple 3.13 136.el6_6.1
|
204
|
+
pyOpenSSL 0.10 2.el6
|
205
|
+
collectl 4.0.0 2.el6
|
206
|
+
pkgconfig 0.23 9.1.el6
|
207
|
+
nspr 4.10.8 1.el6_6
|
208
|
+
libuser 0.56.13 5.el6
|
209
|
+
dbus-python 0.83.0 6.1.el6
|
210
|
+
nss 3.18.0 5.3.el6_6
|
211
|
+
iproute 2.6.32 33.el6_6
|
212
|
+
passwd 0.77 4.el6_2.2
|
213
|
+
libedit 2.11 4.20080712cvs.1.el6
|
214
|
+
yum-metadata-parser 1.1.2 16.el6
|
215
|
+
selinux-policy-targeted 3.7.19 260.el6_6.3
|
216
|
+
nss-tools 3.18.0 5.3.el6_6
|
217
|
+
yum-rhn-plugin 0.9.1 52.3.el6_6
|
218
|
+
kbd-misc 1.15 11.el6
|
219
|
+
device-mapper-libs 1.02.90 2.el6_6.3
|
220
|
+
rpm 4.8.0 38.el6_6
|
221
|
+
device-mapper-event 1.02.90 2.el6_6.3
|
222
|
+
bind-libs 9.8.2 0.30.rc1.el6_6.3
|
223
|
+
lvm2 2.02.111 2.el6_6.3
|
224
|
+
glibc 2.12 1.149.el6_6.9
|
225
|
+
rsyslog 5.8.10 10.el6_6
|
226
|
+
glibc-headers 2.12 1.149.el6_6.9
|
227
|
+
system-config-firewall-base 1.2.27 7.2.el6_6
|
228
|
+
usermode 1.102 3.el6
|
229
|
+
glibc-static 2.12 1.149.el6_6.9
|
230
|
+
nss-softokn-freebl 3.14.3 22.el6_6
|
231
|
+
openssl 1.0.1e 30.el6_6.11
|
232
|
+
db4-cxx 4.7.25 19.el6_6
|
233
|
+
libcurl 7.19.7 40.el6_6.4
|
234
|
+
kernel 2.6.32 504.23.4.el6
|
235
|
+
dhclient 4.1.1 43.P1.el6_6.1
|
236
|
+
db4-utils 4.7.25 19.el6_6
|
237
|
+
kernel-devel 2.6.32 504.23.4.el6
|
238
|
+
vim-common 7.2.411 1.8.el6
|
239
|
+
cronie-anacron 1.4.4 12.el6
|
240
|
+
vim-enhanced 7.2.411 1.8.el6
|
241
|
+
crontabs 1.10 33.el6
|
242
|
+
sysstat 9.0.4 27.el6
|
243
|
+
libtirpc 0.2.1 10.el6
|
244
|
+
keyutils 1.4 5.el6
|
245
|
+
nfs-utils-lib 1.1.5 9.el6
|
246
|
+
gnutls 2.8.5 14.el6_5
|
247
|
+
rsyslog-relp 5.8.10 10.el6_6
|
248
|
+
bison 2.4.1 5.el6
|
249
|
+
iwl5150-firmware 8.24.2.2 1.el6
|
250
|
+
ppl 0.10.2 11.el6
|
251
|
+
iwl6050-firmware 41.28.5.1 2.el6
|
252
|
+
libgomp 4.4.7 11.el6
|
253
|
+
iwl6000g2a-firmware 17.168.5.3 1.el6
|
254
|
+
cpp 4.4.7 11.el6
|
255
|
+
iwl6000-firmware 9.221.4.1 1.el6
|
256
|
+
gcc 4.4.7 11.el6
|
257
|
+
gcc-c++ 4.4.7 11.el6
|
258
|
+
patch 2.6 6.el6
|
259
|
+
xz-lzma-compat 4.999.9 0.5.beta.20091007git.el6
|
260
|
+
attr 2.4.44 7.el6
|
261
|
+
elfutils-libs 0.158 3.2.el6
|
262
|
+
iwl5000-firmware 8.83.5.1_1 1.el6_1.1
|
263
|
+
ivtv-firmware 20080701 20.2
|
264
|
+
fakeroot-libs 1.12.2 22.2.el6
|
265
|
+
wget 1.12 5.el6_6.1
|
266
|
+
atmel-firmware 1.3 7.el6
|
267
|
+
rpmdevtools 7.5 2.el6
|
268
|
+
iwl4965-firmware 228.61.2.24 2.1.el6
|
269
|
+
iwl3945-firmware 15.32.2.9 4.el6
|
270
|
+
perl-Compress-Raw-Zlib 2.021 136.el6_6.1
|
271
|
+
rt73usb-firmware 1.8 7.el6
|
272
|
+
perl-IO-Compress-Zlib 2.021 136.el6_6.1
|
273
|
+
ql23xx-firmware 3.03.27 3.1.el6
|
274
|
+
perl-Time-HiRes 1.9721 136.el6_6.1
|
275
|
+
rootfiles 8.1 6.1.el6
|
276
|
+
htop 1.0.1 2.el6
|
277
|
+
gpg-pubkey 2fa658e0 45700c69
|
278
|
+
zlib-devel 1.2.3 29.el6
|
279
|
+
libsepol-devel 2.0.41 4.el6
|
280
|
+
keyutils-libs-devel 1.4 5.el6
|
281
|
+
ntpdate 4.2.6p5 3.el6_6
|
282
|
+
freetype 2.3.11 15.el6_6.1
|
283
|
+
libfontenc 1.0.5 2.el6
|
284
|
+
xkeyboard-config 2.11 1.el6
|
285
|
+
libXdmcp 1.1.1 3.el6
|
286
|
+
ConsoleKit 0.4.1 3.el6
|
287
|
+
pm-utils 1.2.5 11.el6
|
288
|
+
hal 0.5.14 14.el6
|
289
|
+
mesa-private-llvm 3.4 3.el6
|
290
|
+
mesa-dri1-drivers 7.11 8.el6
|
291
|
+
xorg-x11-drv-vmmouse 13.0.0 2.el6
|
292
|
+
setup 2.8.14 20.el6_4.1
|
293
|
+
kernel-devel 2.6.32 504.12.2.el6
|
294
|
+
ncurses-base 5.7 3.20090208.el6
|
295
|
+
gettext 0.17 18.el6
|
296
|
+
ncurses-libs 5.7 3.20090208.el6
|
297
|
+
bc 1.06.95 1.el6
|
298
|
+
zlib 1.2.3 29.el6
|
299
|
+
gdbm-devel 1.8.0 36.el6
|
300
|
+
chkconfig 1.3.49.3 2.el6_4.1
|
301
|
+
perl-devel 5.10.1 136.el6_6.1
|
302
|
+
libselinux 2.0.94 5.8.el6
|
303
|
+
tmux 1.6 3.el6
|
304
|
+
sed 4.2.1 10.el6
|
305
|
+
libicu 4.2.1 9.1.el6_2
|
306
|
+
pam 1.1.1 20.el6
|
307
|
+
readline 6.0 4.el6
|
308
|
+
libuuid 2.17.2 12.18.el6
|
309
|
+
gawk 3.1.7 10.el6
|
310
|
+
pixman 0.32.4 4.el6
|
311
|
+
libtasn1 2.3 6.el6_5
|
312
|
+
libidn 1.18 2.el6
|
313
|
+
shared-mime-info 0.70 6.el6
|
314
|
+
findutils 4.4.2 6.el6
|
315
|
+
e2fsprogs-libs 1.41.12 21.el6
|
316
|
+
tcp_wrappers-libs 7.6 57.el6
|
317
|
+
ConsoleKit-libs 0.4.1 3.el6
|
318
|
+
device-mapper-persistent-data 0.3.2 1.el6
|
319
|
+
libXext 1.3.2 2.1.el6
|
320
|
+
plymouth-core-libs 0.8.3 27.el6_5.1
|
321
|
+
xorg-x11-xkb-utils 7.7 4.el6
|
322
|
+
keyutils-libs 1.4 5.el6
|
323
|
+
libusb 0.1.12 23.el6
|
324
|
+
hdparm 9.43 4.el6
|
325
|
+
python 2.6.6 52.el6
|
326
|
+
MAKEDEV 3.24 6.el6
|
327
|
+
libxml2-python 2.7.6 17.el6_6.1
|
328
|
+
polkit 0.96 7.el6
|
329
|
+
binutils 2.20.51.0.2 5.42.el6
|
330
|
+
system-setup-keyboard 0.7 4.el6
|
331
|
+
make 3.81 20.el6
|
332
|
+
mesa-dri-drivers 10.1.2 2.el6
|
333
|
+
policycoreutils 2.0.83 19.47.el6_6.1
|
334
|
+
ncurses 5.7 3.20090208.el6
|
335
|
+
iptables-ipv6 1.4.7 14.el6
|
336
|
+
postfix 2.6.6 6.el6_5
|
337
|
+
grub 0.97 93.el6
|
338
|
+
libgudev1 147 2.57.el6
|
339
|
+
ustr 1.0.4 9.1.el6
|
340
|
+
xz-libs 4.999.9 0.5.beta.20091007git.el6
|
341
|
+
slang 2.2.1 1.el6
|
342
|
+
krb5-libs 1.10.3 37.el6_6
|
343
|
+
m2crypto 0.20.2 9.el6
|
344
|
+
python-simplejson 2.0.9 3.1.el6
|
345
|
+
kernel 2.6.32 504.16.2.el6
|
346
|
+
kernel-devel 2.6.32 504.16.2.el6
|
347
|
+
perl-libs 5.10.1 136.el6_6.1
|
348
|
+
python-urlgrabber 3.9.1 9.el6
|
349
|
+
tzdata 2015d 1.el6
|
350
|
+
gamin 0.1.10 9.el6
|
351
|
+
nss-util 3.18.0 1.el6_6
|
352
|
+
openssh-server 5.3p1 104.el6_6.1
|
353
|
+
dbus-glib 0.86 6.el6_4
|
354
|
+
python-gudev 147.1 4.el6_0.1
|
355
|
+
device-mapper 1.02.90 2.el6_6.3
|
356
|
+
rpm-libs 4.8.0 38.el6_6
|
357
|
+
lvm2-libs 2.02.111 2.el6_6.3
|
358
|
+
iputils 20071127 17.el6_4.2
|
359
|
+
python-devel 2.6.6 52.el6
|
360
|
+
subscription-manager 1.12.14 9.el6_6
|
361
|
+
glibc-devel 2.12 1.149.el6_6.9
|
362
|
+
dhcp-common 4.1.1 43.P1.el6_6.1
|
363
|
+
rhnsd 4.9.3 2.el6
|
364
|
+
db4 4.7.25 19.el6_6
|
365
|
+
db4-devel 4.7.25 19.el6_6
|
366
|
+
curl 7.19.7 40.el6_6.4
|
367
|
+
kbd 1.15 11.el6
|
368
|
+
kernel-headers 2.6.32 504.23.4.el6
|
369
|
+
gpm-libs 1.20.6 12.el6
|
370
|
+
cronie 1.4.4 12.el6
|
371
|
+
libgssglue 0.1 11.el6
|
372
|
+
libevent 1.4.13 4.el6
|
373
|
+
librelp 1.2.7 3.el6
|
374
|
+
flex 2.5.35 9.el6
|
375
|
+
iwl100-firmware 39.31.5.1 1.el6
|
376
|
+
mpfr 2.4.1 6.el6
|
377
|
+
aic94xx-firmware 30 2.el6
|
378
|
+
gdb 7.2 75.el6
|
379
|
+
rpm-build 4.8.0 38.el6_6
|
380
|
+
libertas-usb8388-firmware 5.110.22.p23 3.1.el6
|
381
|
+
man 1.6f 32.el6
|
382
|
+
zd1211-firmware 1.4 4.el6
|
383
|
+
gpg-pubkey 0608b895 4bd22942
|
384
|
+
ql2200-firmware 2.02.08 3.1.el6
|
385
|
+
perl-Compress-Zlib 2.021 136.el6_6.1
|
386
|
+
ipw2200-firmware 3.1 4.el6
|
387
|
+
nc 1.84 22.el6
|
388
|
+
libselinux-devel 2.0.94 5.8.el6
|