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
data/lib/ohai/plugins/python.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Thom May (<thom@clearairturbulence.org>)
|
3
|
-
# Copyright:: Copyright (c) 2008
|
3
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -96,6 +96,18 @@ Ohai.plugin(:Rackspace) do
|
|
96
96
|
nil
|
97
97
|
end
|
98
98
|
|
99
|
+
# Get the rackspace instance_id
|
100
|
+
#
|
101
|
+
def get_instance_id()
|
102
|
+
so = shell_out("xenstore-read name")
|
103
|
+
if so.exitstatus == 0
|
104
|
+
rackspace[:instance_id] = so.stdout.gsub(/instance-/, "")
|
105
|
+
end
|
106
|
+
rescue Errno::ENOENT
|
107
|
+
Ohai::Log.debug("Unable to find xenstore-read, cannot capture instance ID information for Rackspace cloud")
|
108
|
+
nil
|
109
|
+
end
|
110
|
+
|
99
111
|
# Get the rackspace private networks
|
100
112
|
#
|
101
113
|
def get_private_networks()
|
@@ -127,6 +139,7 @@ Ohai.plugin(:Rackspace) do
|
|
127
139
|
get_ip_address(:public_ip, :eth0)
|
128
140
|
get_ip_address(:private_ip, :eth1)
|
129
141
|
get_region()
|
142
|
+
get_instance_id()
|
130
143
|
# public_ip + private_ip are deprecated in favor of public_ipv4 and local_ipv4 to standardize.
|
131
144
|
rackspace[:public_ipv4] = rackspace[:public_ip]
|
132
145
|
get_global_ipv6_address(:public_ipv6, :eth0)
|
data/lib/ohai/plugins/ruby.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
#
|
2
|
-
# Author:: Adam Jacob (<adam@
|
3
|
-
# Copyright:: Copyright (c) 2008
|
2
|
+
# Author:: Adam Jacob (<adam@chef.io>)
|
3
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
7
|
# you may not use this file except in compliance with the License.
|
8
8
|
# You may obtain a copy of the License at
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
-
#
|
11
|
+
#
|
12
12
|
# Unless required by applicable law or agreed to in writing, software
|
13
13
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
14
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
@@ -48,7 +48,7 @@ Ohai.plugin(:Ruby) do
|
|
48
48
|
|
49
49
|
# Create a query string from above hash
|
50
50
|
env_string = ""
|
51
|
-
values.keys.each do |v|
|
51
|
+
values.keys.each do |v|
|
52
52
|
env_string << "#{v}=\#{#{values[v]}},"
|
53
53
|
end
|
54
54
|
|
@@ -64,7 +64,7 @@ Ohai.plugin(:Ruby) do
|
|
64
64
|
# Perform one more (conditional) query
|
65
65
|
bin_dir = languages[:ruby][:bin_dir]
|
66
66
|
ruby_bin = languages[:ruby][:ruby_bin]
|
67
|
-
gem_binaries = [
|
67
|
+
gem_binaries = [
|
68
68
|
run_ruby("require 'rubygems'; puts ::Gem.default_exec_format % 'gem'"),
|
69
69
|
"gem"
|
70
70
|
].map {|bin| ::File.join(bin_dir, bin)}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Toomas Pelberg (<toomas.pelberg@playtech.com>)
|
3
|
-
# Copyright:: Copyright (c) 2011
|
3
|
+
# Copyright:: Copyright (c) 2011-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Kurt Yoder (ktyopscode@yoderhome.com)
|
3
|
-
# Copyright:: Copyright (c) 2008
|
3
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Benjamin Black (<nostromo@gmail.com>)
|
3
|
-
# Copyright:: Copyright (c) 2008
|
3
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Benjamin Black (<nostromo@gmail.com>)
|
3
|
-
# Copyright:: Copyright (c) 2008
|
3
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Sean Walbran (<seanwalbran@gmail.com>)
|
3
3
|
# Author:: Kurt Yoder (<ktyopscode@yoderhome.com>)
|
4
|
-
# Copyright:: Copyright (c) 2009
|
4
|
+
# Copyright:: Copyright (c) 2009-2016 Chef Software, Inc.
|
5
5
|
# Copyright:: Copyright (c) 2010 Kurt Yoder
|
6
6
|
# License:: Apache License, Version 2.0
|
7
7
|
#
|
@@ -46,12 +46,12 @@ Ohai.plugin(:Virtualization) do
|
|
46
46
|
so = shell_out(smbios_path)
|
47
47
|
case so.stdout
|
48
48
|
when /Manufacturer: Microsoft/
|
49
|
-
if so.stdout =~ /Product: Virtual Machine/
|
49
|
+
if so.stdout =~ /Product: Virtual Machine/
|
50
50
|
virtualization[:system] = "virtualpc"
|
51
51
|
virtualization[:role] = "guest"
|
52
|
-
end
|
52
|
+
end
|
53
53
|
when /Manufacturer: VMware/
|
54
|
-
if so.stdout =~ /Product: VMware Virtual Platform/
|
54
|
+
if so.stdout =~ /Product: VMware Virtual Platform/
|
55
55
|
virtualization[:system] = "vmware"
|
56
56
|
virtualization[:role] = "guest"
|
57
57
|
end
|
@@ -74,7 +74,7 @@ Ohai.plugin(:Virtualization) do
|
|
74
74
|
'ip' => info[6],
|
75
75
|
}
|
76
76
|
end
|
77
|
-
|
77
|
+
|
78
78
|
if (zones.length == 1)
|
79
79
|
first_zone = zones.keys[0]
|
80
80
|
unless( first_zone == 'global')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: Jason J. W. Williams (williamsjj@digitar.com)
|
3
|
-
# Copyright:: Copyright (c) 2011
|
3
|
+
# Copyright:: Copyright (c) 2011-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -41,7 +41,7 @@ Ohai.plugin(:Zpools) do
|
|
41
41
|
# Grab individual health for devices in the zpools
|
42
42
|
for pool in pools.keys
|
43
43
|
pools[pool][:devices] = Mash.new
|
44
|
-
# Run "zpool status" as non-root user (adm) so that
|
44
|
+
# Run "zpool status" as non-root user (adm) so that
|
45
45
|
# the command won't try to open() each device which can
|
46
46
|
# hang the command if any of the disks are bad.
|
47
47
|
so = shell_out("su adm -c \"zpool status #{pool}\"")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
|
-
# Author:: Bryan McLellan <btm@
|
3
|
-
# Copyright:: Copyright (c) 2012
|
2
|
+
# Author:: Bryan McLellan <btm@chef.io>
|
3
|
+
# Copyright:: Copyright (c) 2012-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
data/lib/ohai/plugins/uptime.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
#
|
2
|
-
# Author:: Adam Jacob (<adam@
|
2
|
+
# Author:: Adam Jacob (<adam@chef.io>)
|
3
3
|
# Author:: Bryan McLellan (<btm@loftninjas.org>)
|
4
|
-
# Author:: Claire McQuin (<claire@
|
4
|
+
# Author:: Claire McQuin (<claire@chef.io>)
|
5
5
|
# Author:: Doug MacEachern (<dougm@vmware.com>)
|
6
6
|
# Author:: Kurt Yoder (<ktyopscode@yoderhome.com>)
|
7
|
-
# Author:: Paul Mooring (<paul@
|
8
|
-
# Copyright:: Copyright (c) 2008
|
7
|
+
# Author:: Paul Mooring (<paul@chef.io>)
|
8
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
9
9
|
# Copyright:: Copyright (c) 2009 Bryan McLellan
|
10
10
|
# Copyright:: Copyright (c) 2010 VMware, Inc.
|
11
11
|
# License:: Apache License, Version 2.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: "Tim Smith" <tsmith@chef.io>
|
3
|
-
# Copyright:: Copyright (c) 2015 Chef Software, Inc.
|
3
|
+
# Copyright:: Copyright (c) 2015-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -1,14 +1,14 @@
|
|
1
1
|
#
|
2
|
-
# Author:: Benjamin Black (<bb@
|
3
|
-
# Copyright:: Copyright (c) 2009
|
2
|
+
# Author:: Benjamin Black (<bb@chef.io>)
|
3
|
+
# Copyright:: Copyright (c) 2009-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
7
|
# you may not use this file except in compliance with the License.
|
8
8
|
# You may obtain a copy of the License at
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
-
#
|
11
|
+
#
|
12
12
|
# Unless required by applicable law or agreed to in writing, software
|
13
13
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
14
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
@@ -36,7 +36,7 @@ Ohai.plugin(:VirtualizationInfo) do
|
|
36
36
|
virtualization[:capabilities] = Mash.new
|
37
37
|
virtualization[:capabilities][:xml_desc] = (virtconn.capabilities.split("\n").collect {|line| line.strip}).join
|
38
38
|
#xdoc = Hpricot virtualization[:capabilities][:xml_desc]
|
39
|
-
|
39
|
+
|
40
40
|
virtualization[:nodeinfo] = Mash.new
|
41
41
|
ni = virtconn.node_get_info
|
42
42
|
['cores','cpus','memory','mhz','model','nodes','sockets','threads'].each {|a| virtualization[:nodeinfo][a] = ni.send(a)}
|
@@ -50,7 +50,7 @@ Ohai.plugin(:VirtualizationInfo) do
|
|
50
50
|
['os_type','uuid'].each {|a| virtualization[:domains][dv.name][a] = dv.send(a)}
|
51
51
|
['cpu_time','max_mem','memory','nr_virt_cpu','state'].each {|a| virtualization[:domains][dv.name][a] = dv.info.send(a)}
|
52
52
|
#xdoc = Hpricot virtualization[:domains][dv.name][:xml_desc]
|
53
|
-
|
53
|
+
|
54
54
|
end
|
55
55
|
|
56
56
|
virtualization[:networks] = Mash.new
|
@@ -60,7 +60,7 @@ Ohai.plugin(:VirtualizationInfo) do
|
|
60
60
|
virtualization[:networks][n][:xml_desc] = (nv.xml_desc.split("\n").collect {|line| line.strip}).join
|
61
61
|
['bridge_name','uuid'].each {|a| virtualization[:networks][n][a] = nv.send(a)}
|
62
62
|
#xdoc = Hpricot virtualization[:networks][n][:xml_desc]
|
63
|
-
|
63
|
+
|
64
64
|
end
|
65
65
|
|
66
66
|
virtualization[:storage] = Mash.new
|
data/lib/ohai/plugins/vmware.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#
|
2
2
|
# Author:: "Dan Robinson" <drobinson@chef.io>
|
3
3
|
# Author:: "Christopher M. Luciano" <cmlucian@us.ibm.com>
|
4
|
-
# Copyright:: Copyright (c) 2014-
|
4
|
+
# Copyright:: Copyright (c) 2014-2016 Chef Software, Inc.
|
5
5
|
# Copyright (C) 2015 IBM Corp.
|
6
6
|
# License:: Apache License, Version 2.0
|
7
7
|
#
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: James Gartrell (<jgartrel@gmail.com>)
|
3
|
-
# Copyright:: Copyright (c) 2009
|
3
|
+
# Copyright:: Copyright (c) 2009-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: James Gartrell (<jgartrel@gmail.com>)
|
3
|
-
# Copyright:: Copyright (c) 2008
|
3
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Author:: James Gartrell (<jgartrel@gmail.com>)
|
3
|
-
# Copyright:: Copyright (c) 2009
|
3
|
+
# Copyright:: Copyright (c) 2009-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# Author:: Pavel Yudin (<pyudin@parallels.com>)
|
3
3
|
# Author:: Tim Smith (<tsmith@chef.io>)
|
4
4
|
# Copyright:: Copyright (c) 2015 Pavel Yudin
|
5
|
-
# Copyright:: Copyright (c) 2015 Chef Software, Inc.
|
5
|
+
# Copyright:: Copyright (c) 2015-2016 Chef Software, Inc.
|
6
6
|
# License:: Apache License, Version 2.0
|
7
7
|
#
|
8
8
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
data/lib/ohai/provides_map.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#
|
2
|
-
# Author:: Adam Jacob (<adam@
|
3
|
-
# Author:: Daniel DeLeo (<dan@
|
4
|
-
# Copyright:: Copyright (c) 2008
|
2
|
+
# Author:: Adam Jacob (<adam@chef.io>)
|
3
|
+
# Author:: Daniel DeLeo (<dan@chef.io>)
|
4
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
5
5
|
# License:: Apache License, Version 2.0
|
6
6
|
#
|
7
7
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
data/lib/ohai/runner.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
|
-
# Author:: Claire McQuin (<claire@
|
3
|
-
# Copyright:: Copyright (c) 2013
|
2
|
+
# Author:: Claire McQuin (<claire@chef.io>)
|
3
|
+
# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
data/lib/ohai/system.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
|
-
# Author:: Adam Jacob (<adam@
|
3
|
-
# Copyright:: Copyright (c) 2008
|
2
|
+
# Author:: Adam Jacob (<adam@chef.io>)
|
3
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
data/lib/ohai/util/win32.rb
CHANGED
data/lib/ohai/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
|
-
# Author:: Adam Jacob (<adam@
|
3
|
-
# Copyright:: Copyright (c) 2008
|
2
|
+
# Author:: Adam Jacob (<adam@chef.io>)
|
3
|
+
# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
|
4
4
|
# License:: Apache License, Version 2.0
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -18,5 +18,5 @@
|
|
18
18
|
|
19
19
|
module Ohai
|
20
20
|
OHAI_ROOT = File.expand_path(File.dirname(__FILE__))
|
21
|
-
VERSION = '8.
|
21
|
+
VERSION = '8.9.0'
|
22
22
|
end
|
@@ -0,0 +1,1087 @@
|
|
1
|
+
accountsservice 0.6.35-0ubuntu7.2
|
2
|
+
ack-grep 2.12-1
|
3
|
+
acl 2.2.52-1
|
4
|
+
adduser 3.113+nmu3ubuntu3
|
5
|
+
amavisd-new 1:2.7.1-2ubuntu3
|
6
|
+
ant 1.9.3-2build1
|
7
|
+
ant-optional 1.9.3-2build1
|
8
|
+
apache2 2.4.7-1ubuntu4.4
|
9
|
+
apache2-bin 2.4.7-1ubuntu4.4
|
10
|
+
apache2-data 2.4.7-1ubuntu4.4
|
11
|
+
apache2-mpm-worker 2.4.7-1ubuntu4.4
|
12
|
+
apache2-utils 2.4.7-1ubuntu4.4
|
13
|
+
apache2.2-bin 2.4.7-1ubuntu4.4
|
14
|
+
apport 2.14.1-0ubuntu3.11
|
15
|
+
apport-symptoms 0.20
|
16
|
+
apt 1.0.1ubuntu2.8
|
17
|
+
apt-listchanges 2.85.13ubuntu2
|
18
|
+
apt-transport-https 1.0.1ubuntu2.8
|
19
|
+
apt-utils 1.0.1ubuntu2.8
|
20
|
+
apt-xapian-index 0.45ubuntu4
|
21
|
+
apticron 1.1.55
|
22
|
+
aptitude 0.6.8.2-1ubuntu4
|
23
|
+
aptitude-common 0.6.8.2-1ubuntu4
|
24
|
+
arj 3.10.22-11
|
25
|
+
aspell 0.60.7~20110707-1ubuntu1
|
26
|
+
aspell-en 7.1-0-1
|
27
|
+
at 3.1.14-1ubuntu1
|
28
|
+
at-spi2-core 2.10.2.is.2.10.1-0ubuntu1
|
29
|
+
aufs-tools 1:3.2+20130722-1.1
|
30
|
+
authbind 2.1.1
|
31
|
+
autoconf 2.69-6
|
32
|
+
automake 1:1.14.1-2ubuntu1
|
33
|
+
autotools-dev 20130810.1
|
34
|
+
base-files 7.2ubuntu5.2
|
35
|
+
base-passwd 3.5.33
|
36
|
+
bash 4.3-7ubuntu1.5
|
37
|
+
bash-completion 1:2.1-4
|
38
|
+
bc 1.06.95-8ubuntu1
|
39
|
+
bind9-host 1:9.9.5.dfsg-3ubuntu0.2
|
40
|
+
binutils 2.24-5ubuntu3.1
|
41
|
+
bison 2:3.0.2.dfsg-2
|
42
|
+
bsdmainutils 9.0.5ubuntu1
|
43
|
+
bsdutils 1:2.20.1-5.1ubuntu20.4
|
44
|
+
build-essential 11.6ubuntu6
|
45
|
+
busybox-initramfs 1:1.21.0-1ubuntu1
|
46
|
+
busybox-static 1:1.21.0-1ubuntu1
|
47
|
+
byobu 5.77-0ubuntu1.2
|
48
|
+
bzip2 1.0.6-5
|
49
|
+
ca-certificates 20141019ubuntu0.14.04.1
|
50
|
+
ca-certificates-java 20130815ubuntu1
|
51
|
+
cabextract 1.4-4
|
52
|
+
ccze 0.2.1-2ubuntu1
|
53
|
+
cgroup-lite 1.9
|
54
|
+
chkrootkit 0.49-4.1ubuntu1.14.04.1
|
55
|
+
clamav 0.98.7+dfsg-0ubuntu0.14.04.1
|
56
|
+
clamav-base 0.98.7+dfsg-0ubuntu0.14.04.1
|
57
|
+
clamav-daemon 0.98.7+dfsg-0ubuntu0.14.04.1
|
58
|
+
clamav-freshclam 0.98.7+dfsg-0ubuntu0.14.04.1
|
59
|
+
collectl 3.6.9-1
|
60
|
+
colord 1.0.6-1
|
61
|
+
comerr-dev 2.1-1.42.9-3ubuntu1.2
|
62
|
+
command-not-found 0.3ubuntu12
|
63
|
+
command-not-found-data 0.3ubuntu12
|
64
|
+
console-setup 1.70ubuntu8
|
65
|
+
coreutils 8.21-1ubuntu5.1
|
66
|
+
cpio 2.11+dfsg-1ubuntu1.1
|
67
|
+
cpp 4:4.8.2-1ubuntu6
|
68
|
+
cpp-4.4 4.4.7-8ubuntu1
|
69
|
+
cpp-4.6 4.6.4-6ubuntu2
|
70
|
+
cpp-4.8 4.8.2-19ubuntu1
|
71
|
+
cron 3.0pl1-124ubuntu2
|
72
|
+
curl 7.35.0-1ubuntu2.5
|
73
|
+
dash 0.5.7-4ubuntu1
|
74
|
+
db-util 1:5.3.21~exp1ubuntu1
|
75
|
+
db5.1-util 5.1.29-7ubuntu1
|
76
|
+
db5.3-util 5.3.28-3ubuntu3
|
77
|
+
dbconfig-common 1.8.47+nmu1
|
78
|
+
dbus 1.6.18-0ubuntu4.3
|
79
|
+
dbus-x11 1.6.18-0ubuntu4.3
|
80
|
+
dconf-gsettings-backend:amd64 0.20.0-1
|
81
|
+
dconf-service 0.20.0-1
|
82
|
+
dctrl-tools 2.23ubuntu1
|
83
|
+
debconf 1.5.51ubuntu2
|
84
|
+
debconf-i18n 1.5.51ubuntu2
|
85
|
+
debhelper 9.20131227ubuntu1
|
86
|
+
debianutils 4.4
|
87
|
+
desktop-file-utils 0.22-1ubuntu1
|
88
|
+
dh-apparmor 2.8.95~2430-0ubuntu5.2
|
89
|
+
dh-python 1.20140128-1ubuntu8
|
90
|
+
dictionaries-common 1.20.5
|
91
|
+
diffutils 1:3.3-1
|
92
|
+
dlocate 1.02+nmu3
|
93
|
+
dmidecode 2.12-2
|
94
|
+
dmsetup 2:1.02.77-6ubuntu2
|
95
|
+
dnsutils 1:9.9.5.dfsg-3ubuntu0.2
|
96
|
+
docbook-xml 4.5-7.2
|
97
|
+
dosfstools 3.0.26-1
|
98
|
+
dovecot-core 1:2.2.9-1ubuntu2.1
|
99
|
+
dovecot-imapd 1:2.2.9-1ubuntu2.1
|
100
|
+
dovecot-solr 1:2.2.9-1ubuntu2.1
|
101
|
+
dpkg 1.17.5ubuntu5.4
|
102
|
+
dpkg-dev 1.17.5ubuntu5.4
|
103
|
+
e2fslibs:amd64 1.42.9-3ubuntu1.2
|
104
|
+
e2fsprogs 1.42.9-3ubuntu1.2
|
105
|
+
ed 1.9-2
|
106
|
+
eject 2.1.5+deb1+cvs20081104-13.1
|
107
|
+
elinks 0.12~pre6-4ubuntu1
|
108
|
+
elinks-data 0.12~pre6-4ubuntu1
|
109
|
+
elinks-lite 0.12~pre6-4ubuntu1
|
110
|
+
etckeeper 1.9ubuntu2
|
111
|
+
exuberant-ctags 1:5.9~svn20110310-7ubuntu0.1
|
112
|
+
fakeroot 1.20-3ubuntu2
|
113
|
+
file 1:5.14-2ubuntu3.3
|
114
|
+
findutils 4.4.2-7
|
115
|
+
fontconfig 2.11.0-0ubuntu4.1
|
116
|
+
fontconfig-config 2.11.0-0ubuntu4.1
|
117
|
+
fonts-dejavu-core 2.34-1ubuntu1
|
118
|
+
fonts-dejavu-extra 2.34-1ubuntu1
|
119
|
+
fonts-ubuntu-font-family-console 0.80-0ubuntu6
|
120
|
+
friendly-recovery 0.2.25
|
121
|
+
ftp 0.17-28
|
122
|
+
fuse 2.9.2-4ubuntu4.14.04.1
|
123
|
+
g++ 4:4.8.2-1ubuntu6
|
124
|
+
g++-4.4 4.4.7-8ubuntu1
|
125
|
+
g++-4.6 4.6.4-6ubuntu2
|
126
|
+
g++-4.8 4.8.2-19ubuntu1
|
127
|
+
gawk 1:4.0.1+dfsg-2.1ubuntu2
|
128
|
+
gcc 4:4.8.2-1ubuntu6
|
129
|
+
gcc-4.4 4.4.7-8ubuntu1
|
130
|
+
gcc-4.4-base:amd64 4.4.7-8ubuntu1
|
131
|
+
gcc-4.6 4.6.4-6ubuntu2
|
132
|
+
gcc-4.6-base:amd64 4.6.4-6ubuntu2
|
133
|
+
gcc-4.8 4.8.2-19ubuntu1
|
134
|
+
gcc-4.8-base:amd64 4.8.2-19ubuntu1
|
135
|
+
gcc-4.9-base:amd64 4.9.1-0ubuntu1
|
136
|
+
gconf-service 3.2.6-0ubuntu2
|
137
|
+
gconf-service-backend 3.2.6-0ubuntu2
|
138
|
+
gconf2 3.2.6-0ubuntu2
|
139
|
+
gconf2-common 3.2.6-0ubuntu2
|
140
|
+
gdisk 0.8.8-1build1
|
141
|
+
geoip-database 20140313-1
|
142
|
+
gettext 0.18.3.1-1ubuntu3
|
143
|
+
gettext-base 0.18.3.1-1ubuntu3
|
144
|
+
ghostscript 9.10~dfsg-0ubuntu10.2
|
145
|
+
gir1.2-glib-2.0 1.40.0-1ubuntu0.2
|
146
|
+
git 1:1.9.1-1ubuntu0.1
|
147
|
+
git-core 1:1.9.1-1ubuntu0.1
|
148
|
+
git-doc 1:1.9.1-1ubuntu0.1
|
149
|
+
git-man 1:1.9.1-1ubuntu0.1
|
150
|
+
gnupg 1.4.16-1ubuntu2.3
|
151
|
+
gnupg-curl 1.4.16-1ubuntu2.3
|
152
|
+
gpgv 1.4.16-1ubuntu2.3
|
153
|
+
grep 2.16-1
|
154
|
+
groff-base 1.22.2-5
|
155
|
+
gsfonts 1:8.11+urwcyr1.0.7~pre44-4.2ubuntu1
|
156
|
+
guile-2.0-libs 2.0.9+1-1ubuntu1
|
157
|
+
gvfs:amd64 1.20.3-0ubuntu1.1
|
158
|
+
gvfs-common 1.20.3-0ubuntu1.1
|
159
|
+
gvfs-daemons 1.20.3-0ubuntu1.1
|
160
|
+
gvfs-libs:amd64 1.20.3-0ubuntu1.1
|
161
|
+
gzip 1.6-3ubuntu1
|
162
|
+
hardlink 0.2.0
|
163
|
+
hicolor-icon-theme 0.13-1
|
164
|
+
hostname 3.15ubuntu1
|
165
|
+
htop 1.0.2-3
|
166
|
+
iftop 1.0~pre2-5
|
167
|
+
ifupdown 0.7.47.2ubuntu4.1
|
168
|
+
imagemagick 8:6.7.7.10-6ubuntu3
|
169
|
+
imagemagick-common 8:6.7.7.10-6ubuntu3
|
170
|
+
info 5.2.0.dfsg.1-2
|
171
|
+
init-system-helpers 1.14
|
172
|
+
initramfs-tools 0.103ubuntu4.2
|
173
|
+
initramfs-tools-bin 0.103ubuntu4.2
|
174
|
+
initscripts 2.88dsf-41ubuntu6.2
|
175
|
+
insserv 1.14.0-5ubuntu2
|
176
|
+
install-info 5.2.0.dfsg.1-2
|
177
|
+
installation-report 2.54ubuntu1
|
178
|
+
intltool-debian 0.35.0+20060710.1
|
179
|
+
iotop 0.6-1
|
180
|
+
iproute 1:3.12.0-2
|
181
|
+
iproute2 3.12.0-2
|
182
|
+
iptables 1.4.21-1ubuntu1
|
183
|
+
iputils-ping 3:20121221-4ubuntu1.1
|
184
|
+
iputils-tracepath 3:20121221-4ubuntu1.1
|
185
|
+
irqbalance 1.0.6-2ubuntu0.14.04.1
|
186
|
+
isc-dhcp-client 4.2.4-7ubuntu12.2
|
187
|
+
isc-dhcp-common 4.2.4-7ubuntu12.2
|
188
|
+
iso-codes 3.52-1
|
189
|
+
java-common 0.51
|
190
|
+
javascript-common 11
|
191
|
+
jetty 6.1.26-1ubuntu1.1
|
192
|
+
jsvc 1.0.15-5ubuntu2
|
193
|
+
kbd 1.15.5-1ubuntu1
|
194
|
+
keyboard-configuration 1.70ubuntu8
|
195
|
+
keychain 2.7.1-1
|
196
|
+
klibc-utils 2.0.3-0ubuntu1
|
197
|
+
kmod 15-0ubuntu6
|
198
|
+
krb5-locales 1.12+dfsg-2ubuntu5.1
|
199
|
+
krb5-multidev 1.12+dfsg-2ubuntu5.1
|
200
|
+
landscape-common 14.12-0ubuntu0.14.04
|
201
|
+
language-pack-en 1:14.04+20150219
|
202
|
+
language-pack-en-base 1:14.04+20150219
|
203
|
+
language-selector-common 0.129.3
|
204
|
+
laptop-detect 0.13.7ubuntu2
|
205
|
+
less 458-2
|
206
|
+
libaccountsservice0:amd64 0.6.35-0ubuntu7.2
|
207
|
+
libacl1:amd64 2.2.52-1
|
208
|
+
libaio1:amd64 0.3.109-4
|
209
|
+
libalgorithm-diff-perl 1.19.02-3
|
210
|
+
libalgorithm-diff-xs-perl 0.04-2build4
|
211
|
+
libalgorithm-merge-perl 0.08-2
|
212
|
+
libapache-pom-java 10-2build1
|
213
|
+
libapache2-mod-authnz-external 3.3.1-0.1
|
214
|
+
libapache2-mod-fcgid 1:2.3.9-1
|
215
|
+
libapache2-mod-php5 5.5.9+dfsg-1ubuntu4.9
|
216
|
+
libapparmor1:amd64 2.8.95~2430-0ubuntu5.2
|
217
|
+
libapr1:amd64 1.5.0-1
|
218
|
+
libapr1-dev 1.5.0-1
|
219
|
+
libaprutil1:amd64 1.5.3-1
|
220
|
+
libaprutil1-dbd-sqlite3:amd64 1.5.3-1
|
221
|
+
libaprutil1-dev 1.5.3-1
|
222
|
+
libaprutil1-ldap:amd64 1.5.3-1
|
223
|
+
libapt-inst1.5:amd64 1.0.1ubuntu2.8
|
224
|
+
libapt-pkg4.12:amd64 1.0.1ubuntu2.8
|
225
|
+
libarchive-extract-perl 0.70-1
|
226
|
+
libarchive-zip-perl 1.30-7
|
227
|
+
libasan0:amd64 4.8.2-19ubuntu1
|
228
|
+
libasn1-8-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
229
|
+
libasound2:amd64 1.0.27.2-3ubuntu7
|
230
|
+
libasound2-data 1.0.27.2-3ubuntu7
|
231
|
+
libaspell15 0.60.7~20110707-1ubuntu1
|
232
|
+
libasprintf-dev:amd64 0.18.3.1-1ubuntu3
|
233
|
+
libasprintf0c2:amd64 0.18.3.1-1ubuntu3
|
234
|
+
libassuan0:amd64 2.1.1-1ubuntu1
|
235
|
+
libasyncns0:amd64 0.8-4ubuntu2
|
236
|
+
libatasmart4:amd64 0.19-3
|
237
|
+
libatinject-jsr330-api-java 1.0+ds1-1
|
238
|
+
libatk-bridge2.0-0:amd64 2.10.2-2ubuntu1
|
239
|
+
libatk-wrapper-java 0.30.4-4
|
240
|
+
libatk-wrapper-java-jni:amd64 0.30.4-4
|
241
|
+
libatk1.0-0:amd64 2.10.0-2ubuntu2
|
242
|
+
libatk1.0-data 2.10.0-2ubuntu2
|
243
|
+
libatm1:amd64 1:2.5.1-1.5
|
244
|
+
libatomic1:amd64 4.8.2-19ubuntu1
|
245
|
+
libatspi2.0-0:amd64 2.10.2.is.2.10.1-0ubuntu1
|
246
|
+
libattr1:amd64 1:2.4.47-1ubuntu1
|
247
|
+
libaudit-common 1:2.3.2-2ubuntu1
|
248
|
+
libaudit1:amd64 1:2.3.2-2ubuntu1
|
249
|
+
libauthen-sasl-perl 2.1500-1
|
250
|
+
libavahi-client3:amd64 0.6.31-4ubuntu1
|
251
|
+
libavahi-common-data:amd64 0.6.31-4ubuntu1
|
252
|
+
libavahi-common3:amd64 0.6.31-4ubuntu1
|
253
|
+
libavahi-glib1:amd64 0.6.31-4ubuntu1
|
254
|
+
libavalon-framework-java 4.2.0-9
|
255
|
+
libbcel-java 5.2-9build1
|
256
|
+
libberkeleydb-perl 0.54-1
|
257
|
+
libbind9-90 1:9.9.5.dfsg-3ubuntu0.2
|
258
|
+
libbison-dev:amd64 2:3.0.2.dfsg-2
|
259
|
+
libbit-vector-perl 7.3-1build1
|
260
|
+
libblkid1:amd64 2.20.1-5.1ubuntu20.4
|
261
|
+
libbonobo2-0:amd64 2.32.1-0ubuntu5
|
262
|
+
libbonobo2-common 2.32.1-0ubuntu5
|
263
|
+
libboost-iostreams1.54.0:amd64 1.54.0-4ubuntu3.1
|
264
|
+
libbsd0:amd64 0.6.0-2ubuntu1
|
265
|
+
libbz2-1.0:amd64 1.0.6-5
|
266
|
+
libc-ares-dev:amd64 1.10.0-2
|
267
|
+
libc-ares2:amd64 1.10.0-2
|
268
|
+
libc-bin 2.19-0ubuntu6.6
|
269
|
+
libc-client2007e 8:2007f~dfsg-2
|
270
|
+
libc-dev-bin 2.19-0ubuntu6.6
|
271
|
+
libc6:amd64 2.19-0ubuntu6.6
|
272
|
+
libc6-dev:amd64 2.19-0ubuntu6.6
|
273
|
+
libcairo-gobject2:amd64 1.13.0~20140204-0ubuntu1.1
|
274
|
+
libcairo2:amd64 1.13.0~20140204-0ubuntu1.1
|
275
|
+
libcanberra0:amd64 0.30-0ubuntu3
|
276
|
+
libcap-ng0 0.7.3-1ubuntu2
|
277
|
+
libcap2:amd64 1:2.24-0ubuntu2
|
278
|
+
libcap2-bin 1:2.24-0ubuntu2
|
279
|
+
libcarp-clan-perl 6.04-1
|
280
|
+
libcgmanager0:amd64 0.24-0ubuntu7.3
|
281
|
+
libck-connector0:amd64 0.4.5-3.1ubuntu2
|
282
|
+
libclamav6 0.98.7+dfsg-0ubuntu0.14.04.1
|
283
|
+
libclass-accessor-perl 0.34-1
|
284
|
+
libclass-isa-perl 0.36-5
|
285
|
+
libcloog-isl4:amd64 0.18.2-1
|
286
|
+
libcolord1:amd64 1.0.6-1
|
287
|
+
libcolorhug1:amd64 1.0.6-1
|
288
|
+
libcomerr2:amd64 1.42.9-3ubuntu1.2
|
289
|
+
libcommons-beanutils-java 1.9.1-1
|
290
|
+
libcommons-codec-java 1.9-1
|
291
|
+
libcommons-collections3-java 3.2.1-6
|
292
|
+
libcommons-compress-java 1.6-1
|
293
|
+
libcommons-daemon-java 1.0.15-5ubuntu2
|
294
|
+
libcommons-dbcp-java 1.4-3ubuntu1
|
295
|
+
libcommons-digester-java 1.8.1-4
|
296
|
+
libcommons-fileupload-java 1.3-3
|
297
|
+
libcommons-httpclient-java 3.1-10.2
|
298
|
+
libcommons-io-java 2.4-2
|
299
|
+
libcommons-lang-java 2.6-3ubuntu2
|
300
|
+
libcommons-logging-java 1.1.3-1
|
301
|
+
libcommons-parent-java 22-2build1
|
302
|
+
libcommons-pool-java 1.6-2
|
303
|
+
libcompress-raw-zlib-perl 2.063-1
|
304
|
+
libconvert-binhex-perl 1.123-1
|
305
|
+
libconvert-tnef-perl 0.18-1
|
306
|
+
libconvert-uulib-perl 1:1.4~dfsg-1build3
|
307
|
+
libcroco3:amd64 0.6.8-2ubuntu1
|
308
|
+
libcrypt-openssl-bignum-perl 0.04-4build1
|
309
|
+
libcrypt-openssl-rsa-perl 0.28-1build1
|
310
|
+
libcups2:amd64 1.7.2-0ubuntu1.6
|
311
|
+
libcupsfilters1:amd64 1.0.52-0ubuntu1.4
|
312
|
+
libcupsimage2:amd64 1.7.2-0ubuntu1.6
|
313
|
+
libcurl3:amd64 7.35.0-1ubuntu2.5
|
314
|
+
libcurl3-gnutls:amd64 7.35.0-1ubuntu2.5
|
315
|
+
libcwidget3 0.5.16-3.5ubuntu1
|
316
|
+
libdate-calc-perl 6.3-1
|
317
|
+
libdate-calc-xs-perl 6.3-1build1
|
318
|
+
libdatrie1:amd64 0.2.8-1
|
319
|
+
libdb5.1:amd64 5.1.29-7ubuntu1
|
320
|
+
libdb5.3:amd64 5.3.28-3ubuntu3
|
321
|
+
libdbd-mysql-perl 4.025-1
|
322
|
+
libdbi-perl 1.630-1
|
323
|
+
libdbus-1-3:amd64 1.6.18-0ubuntu4.3
|
324
|
+
libdbus-glib-1-2:amd64 0.100.2-1
|
325
|
+
libdconf1:amd64 0.20.0-1
|
326
|
+
libdebconfclient0:amd64 0.187ubuntu1
|
327
|
+
libdevmapper1.02.1:amd64 2:1.02.77-6ubuntu2
|
328
|
+
libdigest-hmac-perl 1.03+dfsg-1
|
329
|
+
libdjvulibre-text 3.5.25.4-3
|
330
|
+
libdjvulibre21:amd64 3.5.25.4-3
|
331
|
+
libdns100 1:9.9.5.dfsg-3ubuntu0.2
|
332
|
+
libdpkg-perl 1.17.5ubuntu5.4
|
333
|
+
libdrm-intel1:amd64 2.4.60-2~ubuntu14.04.1
|
334
|
+
libdrm-nouveau2:amd64 2.4.60-2~ubuntu14.04.1
|
335
|
+
libdrm-radeon1:amd64 2.4.60-2~ubuntu14.04.1
|
336
|
+
libdrm2:amd64 2.4.60-2~ubuntu14.04.1
|
337
|
+
libecj-java 3.9.0-1
|
338
|
+
libedit2:amd64 3.1-20130712-2
|
339
|
+
libelf1:amd64 0.158-0ubuntu5.2
|
340
|
+
libept1.4.12:amd64 1.0.12
|
341
|
+
liberror-perl 0.17-1.1
|
342
|
+
libestr0 0.1.9-0ubuntu2
|
343
|
+
libevent-2.0-5:amd64 2.0.21-stable-1ubuntu1.14.04.1
|
344
|
+
libevent-core-2.0-5:amd64 2.0.21-stable-1ubuntu1.14.04.1
|
345
|
+
libevent-dev 2.0.21-stable-1ubuntu1.14.04.1
|
346
|
+
libevent-extra-2.0-5:amd64 2.0.21-stable-1ubuntu1.14.04.1
|
347
|
+
libevent-openssl-2.0-5:amd64 2.0.21-stable-1ubuntu1.14.04.1
|
348
|
+
libevent-pthreads-2.0-5:amd64 2.0.21-stable-1ubuntu1.14.04.1
|
349
|
+
libexcalibur-logkit-java 2.0-10
|
350
|
+
libexif12:amd64 0.6.21-1ubuntu1
|
351
|
+
libexpat1:amd64 2.1.0-4ubuntu1
|
352
|
+
libexpat1-dev:amd64 2.1.0-4ubuntu1
|
353
|
+
libfakeroot:amd64 1.20-3ubuntu2
|
354
|
+
libffi-dev:amd64 3.1~rc1+r3.0.13-12
|
355
|
+
libffi6:amd64 3.1~rc1+r3.0.13-12
|
356
|
+
libfftw3-double3:amd64 3.3.3-7ubuntu3
|
357
|
+
libfile-basedir-perl 0.03-1fakesync1
|
358
|
+
libfile-copy-recursive-perl 0.38-1
|
359
|
+
libfile-desktopentry-perl 0.07-1
|
360
|
+
libfile-fcntllock-perl 0.14-2build1
|
361
|
+
libfile-mimeinfo-perl 0.22-1
|
362
|
+
libfile-next-perl 1.12-1
|
363
|
+
libflac8:amd64 1.3.0-2ubuntu0.14.04.1
|
364
|
+
libfontconfig1:amd64 2.11.0-0ubuntu4.1
|
365
|
+
libfontenc1:amd64 1:1.1.2-1
|
366
|
+
libfreetype6:amd64 2.5.2-1ubuntu2.4
|
367
|
+
libfribidi0:amd64 0.19.6-1
|
368
|
+
libfsplib0 0.11-2
|
369
|
+
libfuse2:amd64 2.9.2-4ubuntu4.14.04.1
|
370
|
+
libgc1c2:amd64 1:7.2d-5ubuntu2
|
371
|
+
libgcc-4.8-dev:amd64 4.8.2-19ubuntu1
|
372
|
+
libgcc1:amd64 1:4.9.1-0ubuntu1
|
373
|
+
libgck-1-0:amd64 3.10.1-1
|
374
|
+
libgconf-2-4:amd64 3.2.6-0ubuntu2
|
375
|
+
libgconf2-4:amd64 3.2.6-0ubuntu2
|
376
|
+
libgcr-3-common 3.10.1-1
|
377
|
+
libgcr-base-3-1:amd64 3.10.1-1
|
378
|
+
libgcrypt11:amd64 1.5.3-2ubuntu4.2
|
379
|
+
libgd3:amd64 2.1.0-3
|
380
|
+
libgdbm-dev 1.8.3-12build1
|
381
|
+
libgdbm3:amd64 1.8.3-12build1
|
382
|
+
libgdk-pixbuf2.0-0:amd64 2.30.7-0ubuntu1
|
383
|
+
libgdk-pixbuf2.0-common 2.30.7-0ubuntu1
|
384
|
+
libgeoip1:amd64 1.6.0-1
|
385
|
+
libgeronimo-jta-1.1-spec-java 1.1.1-3ubuntu1
|
386
|
+
libgeronimo-stax-1.2-spec-java 1.1-1
|
387
|
+
libgettextpo-dev:amd64 0.18.3.1-1ubuntu3
|
388
|
+
libgettextpo0:amd64 0.18.3.1-1ubuntu3
|
389
|
+
libgif4:amd64 4.1.6-11
|
390
|
+
libgirepository-1.0-1 1.40.0-1ubuntu0.2
|
391
|
+
libgl1-mesa-dri:amd64 10.1.3-0ubuntu0.4
|
392
|
+
libgl1-mesa-glx:amd64 10.1.3-0ubuntu0.4
|
393
|
+
libglapi-mesa:amd64 10.1.3-0ubuntu0.4
|
394
|
+
libglib2.0-0:amd64 2.40.2-0ubuntu1
|
395
|
+
libglib2.0-data 2.40.2-0ubuntu1
|
396
|
+
libgmp10:amd64 2:5.1.3+dfsg-1ubuntu1
|
397
|
+
libgnome2-0:amd64 2.32.1-4ubuntu1
|
398
|
+
libgnome2-bin 2.32.1-4ubuntu1
|
399
|
+
libgnome2-common 2.32.1-4ubuntu1
|
400
|
+
libgnomevfs2-0:amd64 1:2.24.4-1ubuntu6
|
401
|
+
libgnomevfs2-common 1:2.24.4-1ubuntu6
|
402
|
+
libgnuinet-java 1.1.2-2build1
|
403
|
+
libgnujaf-java 1.1.1-8build1
|
404
|
+
libgnumail-java 1.1.2-9ubuntu3
|
405
|
+
libgnutls-openssl27:amd64 2.12.23-12ubuntu2.2
|
406
|
+
libgnutls26:amd64 2.12.23-12ubuntu2.2
|
407
|
+
libgomp1:amd64 4.8.2-19ubuntu1
|
408
|
+
libgpg-error0:amd64 1.12-0.2ubuntu1
|
409
|
+
libgpgme11:amd64 1.4.3-0.1ubuntu5.1
|
410
|
+
libgphoto2-6:amd64 2.5.3.1-1ubuntu2.2
|
411
|
+
libgphoto2-l10n 2.5.3.1-1ubuntu2.2
|
412
|
+
libgphoto2-port10:amd64 2.5.3.1-1ubuntu2.2
|
413
|
+
libgpm2:amd64 1.20.4-6.1
|
414
|
+
libgraphite2-3:amd64 1.2.4-1ubuntu1
|
415
|
+
libgs9 9.10~dfsg-0ubuntu10.2
|
416
|
+
libgs9-common 9.10~dfsg-0ubuntu10.2
|
417
|
+
libgsasl7 1.8.0-2ubuntu2
|
418
|
+
libgssapi-krb5-2:amd64 1.12+dfsg-2ubuntu5.1
|
419
|
+
libgssapi3-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
420
|
+
libgssrpc4:amd64 1.12+dfsg-2ubuntu5.1
|
421
|
+
libgtk-3-0:amd64 3.10.8-0ubuntu1.5
|
422
|
+
libgtk-3-bin 3.10.8-0ubuntu1.5
|
423
|
+
libgtk-3-common 3.10.8-0ubuntu1.5
|
424
|
+
libgtk2.0-0:amd64 2.24.23-0ubuntu1.2
|
425
|
+
libgtk2.0-bin 2.24.23-0ubuntu1.2
|
426
|
+
libgtk2.0-common 2.24.23-0ubuntu1.2
|
427
|
+
libguava-java 15.0-2ubuntu1
|
428
|
+
libgudev-1.0-0:amd64 1:204-5ubuntu20.12
|
429
|
+
libgusb2:amd64 0.1.6-5
|
430
|
+
libharfbuzz0b:amd64 0.9.27-1ubuntu1
|
431
|
+
libhcrypto4-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
432
|
+
libheimbase1-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
433
|
+
libheimntlm0-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
434
|
+
libhtml-template-perl 2.95-1
|
435
|
+
libhttpclient-java 4.3.3-1
|
436
|
+
libhttpcore-java 4.3.2-2
|
437
|
+
libhttpmime-java 4.3.3-1
|
438
|
+
libhx509-5-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
439
|
+
libice-dev:amd64 2:1.0.8-2
|
440
|
+
libice6:amd64 2:1.0.8-2
|
441
|
+
libicu4j-4.4-java 4.4.2.2-1
|
442
|
+
libicu52:amd64 52.1-3ubuntu0.3
|
443
|
+
libidl-common 0.8.14-0.2ubuntu4
|
444
|
+
libidl0:amd64 0.8.14-0.2ubuntu4
|
445
|
+
libidn11:amd64 1.28-1ubuntu2
|
446
|
+
libieee1284-3:amd64 0.2.11-12
|
447
|
+
libijs-0.35 0.35-8build1
|
448
|
+
libilmbase6:amd64 1.0.1-6ubuntu1
|
449
|
+
libio-multiplex-perl 1.13-1
|
450
|
+
libio-pty-perl 1:1.08-1build4
|
451
|
+
libio-socket-inet6-perl 2.71-1
|
452
|
+
libio-socket-ssl-perl 1.965-1ubuntu1
|
453
|
+
libio-string-perl 1.08-3
|
454
|
+
libio-stringy-perl 2.110-5
|
455
|
+
libipc-run-perl 0.92-1
|
456
|
+
libisc95 1:9.9.5.dfsg-3ubuntu0.2
|
457
|
+
libisccc90 1:9.9.5.dfsg-3ubuntu0.2
|
458
|
+
libisccfg90 1:9.9.5.dfsg-3ubuntu0.2
|
459
|
+
libisl10:amd64 0.12.2-1
|
460
|
+
libisorelax-java 20041111-8
|
461
|
+
libitm1:amd64 4.8.2-19ubuntu1
|
462
|
+
libiw30:amd64 30~pre9-8ubuntu1
|
463
|
+
libjasper1:amd64 1.900.1-14ubuntu3.2
|
464
|
+
libjaxp1.3-java 1.3.05-2ubuntu3
|
465
|
+
libjbig0:amd64 2.0-2ubuntu4.1
|
466
|
+
libjbig2dec0 0.11+20120125-1ubuntu1
|
467
|
+
libjetty-java 6.1.26-1ubuntu1.1
|
468
|
+
libjpeg-turbo8:amd64 1.3.0-0ubuntu2
|
469
|
+
libjpeg62:amd64 6b1-4ubuntu1
|
470
|
+
libjpeg8:amd64 8c-2ubuntu8
|
471
|
+
libjs-jquery 1.7.2+dfsg-2ubuntu1
|
472
|
+
libjs-jquery-mousewheel 8-2
|
473
|
+
libjs-sphinxdoc 1.2.2+dfsg-1ubuntu1.1
|
474
|
+
libjs-underscore 1.4.4-2ubuntu1
|
475
|
+
libjson-c2:amd64 0.11-3ubuntu1.2
|
476
|
+
libjson0:amd64 0.11-3ubuntu1.2
|
477
|
+
libjsr305-java 0.1~+svn49-4
|
478
|
+
libk5crypto3:amd64 1.12+dfsg-2ubuntu5.1
|
479
|
+
libkadm5clnt-mit9:amd64 1.12+dfsg-2ubuntu5.1
|
480
|
+
libkadm5srv-mit8:amd64 1.12+dfsg-2ubuntu5.1
|
481
|
+
libkadm5srv-mit9:amd64 1.12+dfsg-2ubuntu5.1
|
482
|
+
libkdb5-7:amd64 1.12+dfsg-2ubuntu5.1
|
483
|
+
libkeyutils1:amd64 1.5.6-1
|
484
|
+
libklibc 2.0.3-0ubuntu1
|
485
|
+
libkmod2:amd64 15-0ubuntu6
|
486
|
+
libknopflerfish-osgi-framework-java 2.3.3-3
|
487
|
+
libkrb5-26-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
488
|
+
libkrb5-3:amd64 1.12+dfsg-2ubuntu5.1
|
489
|
+
libkrb5-dev 1.12+dfsg-2ubuntu5.1
|
490
|
+
libkrb5support0:amd64 1.12+dfsg-2ubuntu5.1
|
491
|
+
libkyotocabinet16:amd64 1.2.76-4
|
492
|
+
liblcms2-2:amd64 2.5-0ubuntu4
|
493
|
+
libldap-2.4-2:amd64 2.4.31-1+nmu2ubuntu8.1
|
494
|
+
libldap2-dev:amd64 2.4.31-1+nmu2ubuntu8.1
|
495
|
+
libldns1 1.6.17-1
|
496
|
+
libllvm3.4:amd64 1:3.4-1ubuntu3
|
497
|
+
liblocale-gettext-perl 1.05-7build3
|
498
|
+
liblockfile-bin 1.09-6ubuntu1
|
499
|
+
liblockfile1:amd64 1.09-6ubuntu1
|
500
|
+
liblog-message-simple-perl 0.10-1
|
501
|
+
liblog4j1.2-java 1.2.17-4ubuntu3
|
502
|
+
liblqr-1-0:amd64 0.4.1-2ubuntu1
|
503
|
+
libltdl-dev:amd64 2.4.2-1.7ubuntu1
|
504
|
+
libltdl7:amd64 2.4.2-1.7ubuntu1
|
505
|
+
liblua5.2-0:amd64 5.2.3-1
|
506
|
+
liblucene3-contrib-java 3.6.2+dfsg-2
|
507
|
+
liblucene3-java 3.6.2+dfsg-2
|
508
|
+
liblwres90 1:9.9.5.dfsg-3ubuntu0.2
|
509
|
+
liblzma5:amd64 5.1.1alpha+20120614-2ubuntu2
|
510
|
+
liblzo2-2:amd64 2.06-1.2ubuntu1.1
|
511
|
+
libmagic1:amd64 1:5.14-2ubuntu3.3
|
512
|
+
libmagickcore5:amd64 8:6.7.7.10-6ubuntu3
|
513
|
+
libmagickcore5-extra:amd64 8:6.7.7.10-6ubuntu3
|
514
|
+
libmagickwand5:amd64 8:6.7.7.10-6ubuntu3
|
515
|
+
libmail-dkim-perl 0.40-1
|
516
|
+
libmail-sendmail-perl 0.79.16-1
|
517
|
+
libmailtools-perl 2.12-1
|
518
|
+
libmailutils4 1:2.99.98-1.1
|
519
|
+
libmcrypt4 2.5.8-3.1ubuntu1
|
520
|
+
libmime-tools-perl 5.505-1
|
521
|
+
libmodule-pluggable-perl 5.1-1
|
522
|
+
libmount1:amd64 2.20.1-5.1ubuntu20.4
|
523
|
+
libmpc3:amd64 1.0.1-1ubuntu1
|
524
|
+
libmpdec2:amd64 2.4.0-6
|
525
|
+
libmpfr4:amd64 3.1.2-1
|
526
|
+
libmsv-java 2009.1+dfsg1-4
|
527
|
+
libmx4j-java 3.0.2-13ubuntu1
|
528
|
+
libmysqlclient-dev 5.5.43-0ubuntu0.14.04.1
|
529
|
+
libmysqlclient18:amd64 5.5.43-0ubuntu0.14.04.1
|
530
|
+
libncurses5:amd64 5.9+20140118-1ubuntu1
|
531
|
+
libncurses5-dev:amd64 5.9+20140118-1ubuntu1
|
532
|
+
libncursesw5:amd64 5.9+20140118-1ubuntu1
|
533
|
+
libnet-cidr-perl 0.17-1
|
534
|
+
libnet-daemon-perl 0.48-1
|
535
|
+
libnet-dns-perl 0.68-1.2build1
|
536
|
+
libnet-ip-perl 1.26-1
|
537
|
+
libnet-libidn-perl 0.12.ds-1build4
|
538
|
+
libnet-rblclient-perl 0.5-2
|
539
|
+
libnet-server-perl 2.007-3
|
540
|
+
libnet-smtp-ssl-perl 1.01-3
|
541
|
+
libnet-ssleay-perl 1.58-1
|
542
|
+
libnetpbm10 2:10.0-15ubuntu2
|
543
|
+
libnewt0.52:amd64 0.52.15-2ubuntu5
|
544
|
+
libnfnetlink0:amd64 1.0.1-2
|
545
|
+
libnih-dbus1:amd64 1.0.3-4ubuntu25
|
546
|
+
libnih1:amd64 1.0.3-4ubuntu25
|
547
|
+
libnl-3-200:amd64 3.2.21-1
|
548
|
+
libnl-genl-3-200:amd64 3.2.21-1
|
549
|
+
libnspr4:amd64 2:4.10.7-0ubuntu0.14.04.1
|
550
|
+
libnss3:amd64 2:3.17.4-0ubuntu0.14.04.1
|
551
|
+
libnss3-nssdb 2:3.17.4-0ubuntu0.14.04.1
|
552
|
+
libntlm0:amd64 1.4-1
|
553
|
+
libnuma1:amd64 2.0.9~rc5-1ubuntu3.14.04.1
|
554
|
+
libogg0:amd64 1.3.1-1ubuntu1
|
555
|
+
libopenexr6:amd64 1.6.1-7ubuntu1
|
556
|
+
liborbit-2-0:amd64 1:2.14.19-0.3
|
557
|
+
liborbit2:amd64 1:2.14.19-0.3
|
558
|
+
libossp-uuid16 1.6.2-1.3ubuntu1
|
559
|
+
libp11-kit0:amd64 0.20.2-2ubuntu2
|
560
|
+
libpam-cap:amd64 1:2.24-0ubuntu2
|
561
|
+
libpam-modules:amd64 1.1.8-1ubuntu2
|
562
|
+
libpam-modules-bin 1.1.8-1ubuntu2
|
563
|
+
libpam-runtime 1.1.8-1ubuntu2
|
564
|
+
libpam-systemd:amd64 204-5ubuntu20.12
|
565
|
+
libpam-tmpdir 0.09
|
566
|
+
libpam0g:amd64 1.1.8-1ubuntu2
|
567
|
+
libpango-1.0-0:amd64 1.36.3-1ubuntu1.1
|
568
|
+
libpangocairo-1.0-0:amd64 1.36.3-1ubuntu1.1
|
569
|
+
libpangoft2-1.0-0:amd64 1.36.3-1ubuntu1.1
|
570
|
+
libpaper-utils 1.1.24+nmu2ubuntu3
|
571
|
+
libpaper1:amd64 1.1.24+nmu2ubuntu3
|
572
|
+
libparse-debianchangelog-perl 1.2.0-1ubuntu1
|
573
|
+
libparse-syslog-perl 1.10-2ubuntu1
|
574
|
+
libparted0debian1:amd64 2.3-19ubuntu1
|
575
|
+
libpcap0.8:amd64 1.5.3-2
|
576
|
+
libpci3:amd64 1:3.2.1-1ubuntu5
|
577
|
+
libpciaccess0:amd64 0.13.2-1
|
578
|
+
libpcre3:amd64 1:8.31-2ubuntu2
|
579
|
+
libpcre3-dev:amd64 1:8.31-2ubuntu2
|
580
|
+
libpcrecpp0:amd64 1:8.31-2ubuntu2
|
581
|
+
libpcsclite1:amd64 1.8.10-1ubuntu1
|
582
|
+
libperl-dev 5.18.2-2ubuntu1
|
583
|
+
libperl5.18 5.18.2-2ubuntu1
|
584
|
+
libpipeline1:amd64 1.3.0-1
|
585
|
+
libpixman-1-0:amd64 0.30.2-2ubuntu1
|
586
|
+
libplrpc-perl 0.2020-2
|
587
|
+
libplymouth2:amd64 0.8.8-0ubuntu17.1
|
588
|
+
libpng12-0:amd64 1.2.50-1ubuntu2
|
589
|
+
libpod-latex-perl 0.61-1
|
590
|
+
libpolkit-agent-1-0:amd64 0.105-4ubuntu2.14.04.1
|
591
|
+
libpolkit-backend-1-0:amd64 0.105-4ubuntu2.14.04.1
|
592
|
+
libpolkit-gobject-1-0:amd64 0.105-4ubuntu2.14.04.1
|
593
|
+
libpopt0:amd64 1.16-8ubuntu1
|
594
|
+
libpq-dev 9.3.8-0ubuntu0.4.04
|
595
|
+
libpq5 9.3.8-0ubuntu0.4.04
|
596
|
+
libprocps3:amd64 1:3.3.9-1ubuntu2.2
|
597
|
+
libpthread-stubs0-dev:amd64 0.3-4
|
598
|
+
libpulse0:amd64 1:4.0-0ubuntu11.1
|
599
|
+
libpython-dev:amd64 2.7.5-5ubuntu3
|
600
|
+
libpython-stdlib:amd64 2.7.5-5ubuntu3
|
601
|
+
libpython2.7:amd64 2.7.6-8
|
602
|
+
libpython2.7-dev:amd64 2.7.6-8
|
603
|
+
libpython2.7-minimal:amd64 2.7.6-8
|
604
|
+
libpython2.7-stdlib:amd64 2.7.6-8
|
605
|
+
libpython3-dev:amd64 3.4.0-0ubuntu2
|
606
|
+
libpython3-stdlib:amd64 3.4.0-0ubuntu2
|
607
|
+
libpython3.4:amd64 3.4.0-2ubuntu1
|
608
|
+
libpython3.4-dev:amd64 3.4.0-2ubuntu1
|
609
|
+
libpython3.4-minimal:amd64 3.4.0-2ubuntu1
|
610
|
+
libpython3.4-stdlib:amd64 3.4.0-2ubuntu1
|
611
|
+
libquadmath0:amd64 4.8.2-19ubuntu1
|
612
|
+
libreadline-dev:amd64 6.3-4ubuntu2
|
613
|
+
libreadline6:amd64 6.3-4ubuntu2
|
614
|
+
libreadline6-dev:amd64 6.3-4ubuntu2
|
615
|
+
libregexp-java 1.5-3build1
|
616
|
+
librelaxng-datatype-java 1.0+ds1-3
|
617
|
+
libroken18-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
618
|
+
librsvg2-2:amd64 2.40.2-1
|
619
|
+
librsvg2-common:amd64 2.40.2-1
|
620
|
+
librtmp0:amd64 2.4+20121230.gitdf6c518-1
|
621
|
+
libruby1.9.1 1.9.3.484-2ubuntu1.2
|
622
|
+
libsane:amd64 1.0.23-3ubuntu3.1
|
623
|
+
libsane-common 1.0.23-3ubuntu3.1
|
624
|
+
libsasl2-2:amd64 2.1.25.dfsg1-17build1
|
625
|
+
libsasl2-dev 2.1.25.dfsg1-17build1
|
626
|
+
libsasl2-modules:amd64 2.1.25.dfsg1-17build1
|
627
|
+
libsasl2-modules-db:amd64 2.1.25.dfsg1-17build1
|
628
|
+
libsctp-dev 1.0.15+dfsg-1
|
629
|
+
libsctp1:amd64 1.0.15+dfsg-1
|
630
|
+
libsecret-1-0:amd64 0.16-0ubuntu1
|
631
|
+
libsecret-common 0.16-0ubuntu1
|
632
|
+
libselinux1:amd64 2.2.2-1ubuntu0.1
|
633
|
+
libsemanage-common 2.2-1
|
634
|
+
libsemanage1:amd64 2.2-1
|
635
|
+
libsensors4:amd64 1:3.3.4-2ubuntu1
|
636
|
+
libsepol1:amd64 2.2-1ubuntu0.1
|
637
|
+
libserf-1-1:amd64 1.3.3-1ubuntu0.1
|
638
|
+
libservlet2.5-java 6.0.39-1
|
639
|
+
libservlet3.0-java 7.0.52-1ubuntu0.1
|
640
|
+
libsigc++-2.0-0c2a:amd64 2.2.10-0.2ubuntu2
|
641
|
+
libsigsegv2:amd64 2.10-2
|
642
|
+
libslang2:amd64 2.2.4-15ubuntu1
|
643
|
+
libslf4j-java 1.7.5-2
|
644
|
+
libsm-dev:amd64 2:1.2.1-2
|
645
|
+
libsm6:amd64 2:1.2.1-2
|
646
|
+
libsndfile1:amd64 1.0.25-7ubuntu2
|
647
|
+
libsocket6-perl 0.25-1
|
648
|
+
libsolr-java 3.6.2+dfsg-2
|
649
|
+
libsqlite0 2.8.17-10ubuntu2
|
650
|
+
libsqlite3-0:amd64 3.8.2-1ubuntu2
|
651
|
+
libsqlite3-dev:amd64 3.8.2-1ubuntu2
|
652
|
+
libss2:amd64 1.42.9-3ubuntu1.2
|
653
|
+
libssl-dev:amd64 1.0.1f-1ubuntu8
|
654
|
+
libssl-doc 1.0.1f-1ubuntu8
|
655
|
+
libssl0.9.8:amd64 0.9.8o-7ubuntu3.2.14.04.1
|
656
|
+
libssl1.0.0:amd64 1.0.1f-1ubuntu8
|
657
|
+
libstax-java 1.2.0-3build1
|
658
|
+
libstax2-api-java 3.1.1-1
|
659
|
+
libstdc++-4.8-dev:amd64 4.8.2-19ubuntu1
|
660
|
+
libstdc++6:amd64 4.8.2-19ubuntu1
|
661
|
+
libstdc++6-4.4-dev 4.4.7-8ubuntu1
|
662
|
+
libstdc++6-4.6-dev 4.6.4-6ubuntu2
|
663
|
+
libsub-name-perl 0.05-1build4
|
664
|
+
libsvn1:amd64 1.8.8-1ubuntu3.1
|
665
|
+
libswitch-perl 2.16-2
|
666
|
+
libsys-hostname-long-perl 1.4-3
|
667
|
+
libsystemd-daemon0:amd64 204-5ubuntu20.12
|
668
|
+
libsystemd-login0:amd64 204-5ubuntu20.12
|
669
|
+
libt1-5 5.1.2-3.6ubuntu1
|
670
|
+
libtasn1-6:amd64 3.4-3ubuntu0.3
|
671
|
+
libtcl8.5:amd64 8.5.15-2ubuntu1
|
672
|
+
libtcl8.6:amd64 8.6.1-4ubuntu1
|
673
|
+
libtdb1:amd64 1.2.12-1
|
674
|
+
libterm-readkey-perl 2.31-1
|
675
|
+
libterm-ui-perl 0.42-1
|
676
|
+
libtext-charwidth-perl 0.04-7build3
|
677
|
+
libtext-iconv-perl 1.7-5build2
|
678
|
+
libtext-soundex-perl 3.4-1build1
|
679
|
+
libtext-wrapi18n-perl 0.06-7
|
680
|
+
libthai-data 0.1.20-3
|
681
|
+
libthai0:amd64 0.1.20-3
|
682
|
+
libtiff5:amd64 4.0.3-7ubuntu0.3
|
683
|
+
libtimedate-perl 2.3000-1
|
684
|
+
libtinfo-dev:amd64 5.9+20140118-1ubuntu1
|
685
|
+
libtinfo5:amd64 5.9+20140118-1ubuntu1
|
686
|
+
libtokyocabinet9:amd64 1.4.48-2
|
687
|
+
libtomcat6-java 6.0.39-1
|
688
|
+
libtool 2.4.2-1.7ubuntu1
|
689
|
+
libtre5:amd64 0.8.0-3ubuntu1
|
690
|
+
libtsan0:amd64 4.8.2-19ubuntu1
|
691
|
+
libtxc-dxtn-s2tc0:amd64 0~git20131104-1.1
|
692
|
+
libudev1:amd64 204-5ubuntu20.12
|
693
|
+
libudisks2-0:amd64 2.1.3-1
|
694
|
+
libunistring0:amd64 0.9.3-5ubuntu3
|
695
|
+
libunix-syslog-perl 1.1-2build5
|
696
|
+
libusb-0.1-4:amd64 2:0.1.12-23.3ubuntu1
|
697
|
+
libusb-1.0-0:amd64 2:1.0.17-1ubuntu2
|
698
|
+
libustr-1.0-1:amd64 1.0.4-3ubuntu2
|
699
|
+
libuuid1:amd64 2.20.1-5.1ubuntu20.4
|
700
|
+
libv4l-0:amd64 1.0.1-1
|
701
|
+
libv4lconvert0:amd64 1.0.1-1
|
702
|
+
libv8-3.14.5 3.14.5.8-5ubuntu2
|
703
|
+
libv8-dev 3.14.5.8-5ubuntu2
|
704
|
+
libvorbis0a:amd64 1.3.2-1.3ubuntu1
|
705
|
+
libvorbisenc2:amd64 1.3.2-1.3ubuntu1
|
706
|
+
libvorbisfile3:amd64 1.3.2-1.3ubuntu1
|
707
|
+
libvpx1:amd64 1.3.0-2
|
708
|
+
libwayland-client0:amd64 1.4.0-1ubuntu1
|
709
|
+
libwayland-cursor0:amd64 1.4.0-1ubuntu1
|
710
|
+
libwind0-heimdal:amd64 1.6~git20131207+dfsg-1ubuntu1.1
|
711
|
+
libwmf0.2-7:amd64 0.2.8.4-10.3ubuntu1
|
712
|
+
libwoodstox-java 1:4.1.3-1
|
713
|
+
libwrap0:amd64 7.6.q-25
|
714
|
+
libx11-6:amd64 2:1.6.2-1ubuntu2
|
715
|
+
libx11-data 2:1.6.2-1ubuntu2
|
716
|
+
libx11-dev:amd64 2:1.6.2-1ubuntu2
|
717
|
+
libx11-doc 2:1.6.2-1ubuntu2
|
718
|
+
libx11-xcb1:amd64 2:1.6.2-1ubuntu2
|
719
|
+
libxapian22 1.2.16-2ubuntu1
|
720
|
+
libxau-dev:amd64 1:1.0.8-1
|
721
|
+
libxau6:amd64 1:1.0.8-1
|
722
|
+
libxaw7:amd64 2:1.0.12-1
|
723
|
+
libxcb-dri2-0:amd64 1.10-2ubuntu1
|
724
|
+
libxcb-dri3-0:amd64 1.10-2ubuntu1
|
725
|
+
libxcb-glx0:amd64 1.10-2ubuntu1
|
726
|
+
libxcb-present0:amd64 1.10-2ubuntu1
|
727
|
+
libxcb-render0:amd64 1.10-2ubuntu1
|
728
|
+
libxcb-shape0:amd64 1.10-2ubuntu1
|
729
|
+
libxcb-shm0:amd64 1.10-2ubuntu1
|
730
|
+
libxcb-sync1:amd64 1.10-2ubuntu1
|
731
|
+
libxcb1:amd64 1.10-2ubuntu1
|
732
|
+
libxcb1-dev:amd64 1.10-2ubuntu1
|
733
|
+
libxcomposite1:amd64 1:0.4.4-1
|
734
|
+
libxcursor1:amd64 1:1.1.14-1
|
735
|
+
libxdamage1:amd64 1:1.1.4-1ubuntu1
|
736
|
+
libxdmcp-dev:amd64 1:1.1.1-1
|
737
|
+
libxdmcp6:amd64 1:1.1.1-1
|
738
|
+
libxerces2-java 2.11.0-7
|
739
|
+
libxext6:amd64 2:1.3.2-1ubuntu0.0.14.04.1
|
740
|
+
libxfixes3:amd64 1:5.0.1-1ubuntu1.1
|
741
|
+
libxft2:amd64 2.3.1-2
|
742
|
+
libxi6:amd64 2:1.7.1.901-1ubuntu1.1
|
743
|
+
libxinerama1:amd64 2:1.1.3-1
|
744
|
+
libxkbcommon0:amd64 0.4.1-0ubuntu1
|
745
|
+
libxml-commons-external-java 1.4.01-2build1
|
746
|
+
libxml-commons-resolver1.1-java 1.2-7build1
|
747
|
+
libxml2:amd64 2.9.1+dfsg1-3ubuntu4.4
|
748
|
+
libxml2-dev:amd64 2.9.1+dfsg1-3ubuntu4.4
|
749
|
+
libxml2-utils 2.9.1+dfsg1-3ubuntu4.4
|
750
|
+
libxmu6:amd64 2:1.1.1-1
|
751
|
+
libxmuu1:amd64 2:1.1.1-1
|
752
|
+
libxpm4:amd64 1:3.5.10-1
|
753
|
+
libxrandr2:amd64 2:1.4.2-1
|
754
|
+
libxrender1:amd64 1:0.9.8-1build0.14.04.1
|
755
|
+
libxshmfence1:amd64 1.1-2
|
756
|
+
libxslt1-dev:amd64 1.1.28-2build1
|
757
|
+
libxslt1.1:amd64 1.1.28-2build1
|
758
|
+
libxt-dev:amd64 1:1.1.4-1
|
759
|
+
libxt6:amd64 1:1.1.4-1
|
760
|
+
libxtables10 1.4.21-1ubuntu1
|
761
|
+
libxtst6:amd64 2:1.2.2-1
|
762
|
+
libxv1:amd64 2:1.0.10-1
|
763
|
+
libxxf86dga1:amd64 2:1.1.4-1
|
764
|
+
libxxf86vm1:amd64 1:1.1.3-1
|
765
|
+
libxz-java 1.4-1
|
766
|
+
libyaml-0-2:amd64 0.1.4-3ubuntu3.1
|
767
|
+
libyaml-dev:amd64 0.1.4-3ubuntu3.1
|
768
|
+
linux-firmware 1.127.12
|
769
|
+
linux-libc-dev:amd64 3.13.0-55.92
|
770
|
+
lksctp-tools 1.0.15+dfsg-1
|
771
|
+
locales 2.13+git20120306-12.1
|
772
|
+
lockfile-progs 0.1.17
|
773
|
+
login 1:4.1.5.1-1ubuntu9
|
774
|
+
logrotate 3.8.7-1ubuntu1
|
775
|
+
lsb-base 4.1+Debian11ubuntu6
|
776
|
+
lsb-release 4.1+Debian11ubuntu6
|
777
|
+
lshw 02.16-2ubuntu1.2
|
778
|
+
lsof 4.86+dfsg-1ubuntu2
|
779
|
+
ltrace 0.7.3-4ubuntu5.1
|
780
|
+
lxc-docker 1.6.2
|
781
|
+
lxc-docker-1.6.1 1.6.1
|
782
|
+
lxc-docker-1.6.2 1.6.2
|
783
|
+
m4 1.4.17-2ubuntu1
|
784
|
+
mailman 1:2.1.16-2ubuntu0.1
|
785
|
+
mailutils 1:2.99.98-1.1
|
786
|
+
mailutils-common 1:2.99.98-1.1
|
787
|
+
make 3.81-8.2ubuntu3
|
788
|
+
makedev 2.3.1-93ubuntu1
|
789
|
+
man-db 2.6.7.1-1ubuntu1
|
790
|
+
manpages 3.54-1ubuntu1
|
791
|
+
manpages-dev 3.54-1ubuntu1
|
792
|
+
mawk 1.3.3-17ubuntu2
|
793
|
+
mime-support 3.54ubuntu1.1
|
794
|
+
mingetty 1.08-2
|
795
|
+
mlocate 0.26-1ubuntu1
|
796
|
+
mlock 8:2007f~dfsg-2
|
797
|
+
module-init-tools 15-0ubuntu6
|
798
|
+
moreutils 0.50
|
799
|
+
mount 2.20.1-5.1ubuntu20.4
|
800
|
+
mountall 2.53
|
801
|
+
mtr-tiny 0.85-2
|
802
|
+
multiarch-support 2.19-0ubuntu6.6
|
803
|
+
mutt 1.5.21-6.4ubuntu2.1
|
804
|
+
mysql-client-5.5 5.5.43-0ubuntu0.14.04.1
|
805
|
+
mysql-client-core-5.5 5.5.43-0ubuntu0.14.04.1
|
806
|
+
mysql-common 5.5.43-0ubuntu0.14.04.1
|
807
|
+
mysql-server 5.5.43-0ubuntu0.14.04.1
|
808
|
+
mysql-server-5.5 5.5.43-0ubuntu0.14.04.1
|
809
|
+
mysql-server-core-5.5 5.5.43-0ubuntu0.14.04.1
|
810
|
+
nano 2.2.6-1ubuntu1
|
811
|
+
ncurses-base 5.9+20140118-1ubuntu1
|
812
|
+
ncurses-bin 5.9+20140118-1ubuntu1
|
813
|
+
ncurses-term 5.9+20140118-1ubuntu1
|
814
|
+
net-tools 1.60-25ubuntu2.1
|
815
|
+
netbase 5.2
|
816
|
+
netcat 1.10-40
|
817
|
+
netcat-openbsd 1.105-7ubuntu1
|
818
|
+
netcat-traditional 1.10-40
|
819
|
+
netpbm 2:10.0-15ubuntu2
|
820
|
+
nodejs 0.10.25~dfsg2-2ubuntu1
|
821
|
+
nomarch 1.4-3
|
822
|
+
ntfs-3g 1:2013.1.13AR.1-2ubuntu2
|
823
|
+
ntpdate 1:4.2.6.p5+dfsg-3ubuntu2.14.04.3
|
824
|
+
offlineimap 6.5.4-2
|
825
|
+
openbsd-inetd 0.20091229-2ubuntu3
|
826
|
+
openjdk-7-jdk:amd64 7u79-2.5.5-0ubuntu0.14.04.2
|
827
|
+
openjdk-7-jre:amd64 7u79-2.5.5-0ubuntu0.14.04.2
|
828
|
+
openjdk-7-jre-headless:amd64 7u79-2.5.5-0ubuntu0.14.04.2
|
829
|
+
openssh-client 1:6.6p1-2ubuntu2
|
830
|
+
openssh-server 1:6.6p1-2ubuntu2
|
831
|
+
openssh-sftp-server 1:6.6p1-2ubuntu2
|
832
|
+
openssl 1.0.1f-1ubuntu8
|
833
|
+
parted 2.3-19ubuntu1
|
834
|
+
passwd 1:4.1.5.1-1ubuntu9
|
835
|
+
patch 2.7.1-4ubuntu2
|
836
|
+
pax 1:20120606-2+deb7u1
|
837
|
+
pbzip2 1.1.8-1
|
838
|
+
pciutils 1:3.2.1-1ubuntu5
|
839
|
+
perl 5.18.2-2ubuntu1
|
840
|
+
perl-base 5.18.2-2ubuntu1
|
841
|
+
perl-modules 5.18.2-2ubuntu1
|
842
|
+
pflogsumm 1.1.5-1
|
843
|
+
php-auth 1.6.4-1
|
844
|
+
php-auth-sasl 1.0.6-1
|
845
|
+
php-db 1.7.14-2
|
846
|
+
php-http-request 1.4.4-4
|
847
|
+
php-log 1.12.7-1
|
848
|
+
php-mail 1.2.0-6
|
849
|
+
php-mail-mime 1.8.8-1
|
850
|
+
php-mdb2 2.5.0b5-1
|
851
|
+
php-net-dime 1.0.2-2
|
852
|
+
php-net-sieve 1.3.2-4
|
853
|
+
php-net-smtp 1.6.1-1
|
854
|
+
php-net-socket 1.0.14-1
|
855
|
+
php-net-url 1.0.15-3
|
856
|
+
php-pear 5.5.9+dfsg-1ubuntu4.9
|
857
|
+
php-soap 0.13.0-1
|
858
|
+
php-xml-parser 1.3.4-6
|
859
|
+
php5 5.5.9+dfsg-1ubuntu4.9
|
860
|
+
php5-cgi 5.5.9+dfsg-1ubuntu4.9
|
861
|
+
php5-cli 5.5.9+dfsg-1ubuntu4.9
|
862
|
+
php5-common 5.5.9+dfsg-1ubuntu4.9
|
863
|
+
php5-curl 5.5.9+dfsg-1ubuntu4.9
|
864
|
+
php5-dev 5.5.9+dfsg-1ubuntu4.9
|
865
|
+
php5-fpm 5.5.9+dfsg-1ubuntu4.9
|
866
|
+
php5-gd 5.5.9+dfsg-1ubuntu4.9
|
867
|
+
php5-gmp 5.5.9+dfsg-1ubuntu4.9
|
868
|
+
php5-imap 5.4.6-0ubuntu5
|
869
|
+
php5-intl 5.5.9+dfsg-1ubuntu4.9
|
870
|
+
php5-json 1.3.2-2build1
|
871
|
+
php5-mcrypt 5.4.6-0ubuntu5
|
872
|
+
php5-mysql 5.5.9+dfsg-1ubuntu4.9
|
873
|
+
php5-pspell 5.5.9+dfsg-1ubuntu4.9
|
874
|
+
php5-readline 5.5.9+dfsg-1ubuntu4.9
|
875
|
+
php5-sqlite 5.5.9+dfsg-1ubuntu4.9
|
876
|
+
php5-xmlrpc 5.5.9+dfsg-1ubuntu4.9
|
877
|
+
php5-xsl 5.5.9+dfsg-1ubuntu4.9
|
878
|
+
pidentd 3.0.19.ds1-7
|
879
|
+
pkg-config 0.26-1ubuntu4
|
880
|
+
pkg-php-tools 1.11
|
881
|
+
plymouth 0.8.8-0ubuntu17.1
|
882
|
+
plymouth-theme-ubuntu-text 0.8.8-0ubuntu17.1
|
883
|
+
po-debconf 1.0.16+nmu2ubuntu1
|
884
|
+
policykit-1 0.105-4ubuntu2.14.04.1
|
885
|
+
policykit-1-gnome 0.105-1ubuntu4
|
886
|
+
poppler-data 0.4.6-4
|
887
|
+
postfix 2.11.0-1ubuntu1
|
888
|
+
postfix-doc 2.11.0-1ubuntu1
|
889
|
+
postfix-pcre 2.11.0-1ubuntu1
|
890
|
+
postfix-policyd-spf-python 1.2-1
|
891
|
+
postgrey 1.34-1.2
|
892
|
+
powermgmt-base 1.31build1
|
893
|
+
ppp 2.4.5-5.1ubuntu2.2
|
894
|
+
pppconfig 2.3.19ubuntu1
|
895
|
+
procmail 3.22-21ubuntu0.1
|
896
|
+
procps 1:3.3.9-1ubuntu2.2
|
897
|
+
psmisc 22.20-1ubuntu2
|
898
|
+
pwauth 2.3.8-1
|
899
|
+
pwgen 2.06-1ubuntu4
|
900
|
+
python 2.7.5-5ubuntu3
|
901
|
+
python-apport 2.14.1-0ubuntu3.11
|
902
|
+
python-apt 0.9.3.5ubuntu1
|
903
|
+
python-apt-common 0.9.3.5ubuntu1
|
904
|
+
python-authres 0.602-1
|
905
|
+
python-chardet 2.0.1-2build2
|
906
|
+
python-configobj 4.7.2+ds-5build1
|
907
|
+
python-crypto 2.6.1-4build1
|
908
|
+
python-dbus 1.2.0-2build2
|
909
|
+
python-dbus-dev 1.2.0-2build2
|
910
|
+
python-debian 0.1.21+nmu2ubuntu2
|
911
|
+
python-dev 2.7.5-5ubuntu3
|
912
|
+
python-dns 2.3.6-3
|
913
|
+
python-dnspython 1.11.1-1build1
|
914
|
+
python-gdbm 2.7.5-1ubuntu1
|
915
|
+
python-gi 3.12.0-1ubuntu1
|
916
|
+
python-gnupginterface 0.3.2-9.1ubuntu3
|
917
|
+
python-httplib2 0.8-2build1
|
918
|
+
python-ipaddr 2.1.10-1
|
919
|
+
python-ipcalc 0.5.2-0ubuntu1
|
920
|
+
python-keyring 3.5-1
|
921
|
+
python-launchpadlib 1.10.2+ds-2
|
922
|
+
python-lazr.restfulclient 0.13.3-1build1
|
923
|
+
python-lazr.uri 1.0.3-1build1
|
924
|
+
python-ldns 1.6.17-1
|
925
|
+
python-minimal 2.7.5-5ubuntu3
|
926
|
+
python-newt 0.52.15-2ubuntu5
|
927
|
+
python-oauth 1.0.1-3build2
|
928
|
+
python-openssl 0.13-2ubuntu6
|
929
|
+
python-pam 0.4.2-13.1ubuntu3
|
930
|
+
python-pkg-resources 3.3-1ubuntu1
|
931
|
+
python-problem-report 2.14.1-0ubuntu3.11
|
932
|
+
python-pycurl 7.19.3-0ubuntu3
|
933
|
+
python-requests 2.2.1-1ubuntu0.2
|
934
|
+
python-secretstorage 2.0.0-1ubuntu1.1
|
935
|
+
python-serial 2.6-1build1
|
936
|
+
python-simplejson 3.3.1-1ubuntu6
|
937
|
+
python-six 1.5.2-1
|
938
|
+
python-software-properties 0.92.37.3
|
939
|
+
python-spf 2.0.8-3
|
940
|
+
python-sqlite 1.0.1-11
|
941
|
+
python-support 1.0.15
|
942
|
+
python-twisted-bin 13.2.0-1ubuntu1
|
943
|
+
python-twisted-core 13.2.0-1ubuntu1
|
944
|
+
python-urllib3 1.7.1-1ubuntu3
|
945
|
+
python-wadllib 1.3.2-2build1
|
946
|
+
python-xapian 1.2.16-2ubuntu1
|
947
|
+
python-zope.interface 4.0.5-1ubuntu4
|
948
|
+
python2.7 2.7.6-8
|
949
|
+
python2.7-dev 2.7.6-8
|
950
|
+
python2.7-minimal 2.7.6-8
|
951
|
+
python3 3.4.0-0ubuntu2
|
952
|
+
python3-apport 2.14.1-0ubuntu3.11
|
953
|
+
python3-apt 0.9.3.5ubuntu1
|
954
|
+
python3-authres 0.602-1
|
955
|
+
python3-commandnotfound 0.3ubuntu12
|
956
|
+
python3-dbus 1.2.0-2build2
|
957
|
+
python3-dev 3.4.0-0ubuntu2
|
958
|
+
python3-distupgrade 1:0.220.7
|
959
|
+
python3-dns 3.0.4-1ubuntu1
|
960
|
+
python3-gdbm:amd64 3.4.0-0ubuntu1
|
961
|
+
python3-gi 3.12.0-1ubuntu1
|
962
|
+
python3-minimal 3.4.0-0ubuntu2
|
963
|
+
python3-problem-report 2.14.1-0ubuntu3.11
|
964
|
+
python3-pycurl 7.19.3-0ubuntu3
|
965
|
+
python3-software-properties 0.92.37.3
|
966
|
+
python3-spf 2.0.8-3
|
967
|
+
python3-update-manager 1:0.196.13
|
968
|
+
python3.4 3.4.0-2ubuntu1
|
969
|
+
python3.4-dev 3.4.0-2ubuntu1
|
970
|
+
python3.4-minimal 3.4.0-2ubuntu1
|
971
|
+
rar 2:4.2.0-1
|
972
|
+
rcm 1.2.3-1ubuntu2
|
973
|
+
readline-common 6.3-4ubuntu2
|
974
|
+
realpath 1.19
|
975
|
+
renameutils 0.12.0-3
|
976
|
+
resolvconf 1.69ubuntu1.1
|
977
|
+
ripole 0.2.0+20081101.0215-1
|
978
|
+
roundcube 0.9.5-4
|
979
|
+
roundcube-core 0.9.5-4
|
980
|
+
roundcube-mysql 0.9.5-4
|
981
|
+
roundcube-plugins 0.9.5-4
|
982
|
+
roundcube-plugins-extra 0.9.2-20130819
|
983
|
+
rsync 3.1.0-2ubuntu0.1
|
984
|
+
rsyslog 7.4.4-1ubuntu2.6
|
985
|
+
ruby 1:1.9.3.4
|
986
|
+
ruby1.9.1 1.9.3.484-2ubuntu1.2
|
987
|
+
run-one 1.17-0ubuntu1
|
988
|
+
safecat 1.13-2
|
989
|
+
sasl2-bin 2.1.25.dfsg1-17build1
|
990
|
+
screen 4.1.0~20120320gitdb59704-9
|
991
|
+
sed 4.2.2-4ubuntu1
|
992
|
+
sensible-utils 0.0.9
|
993
|
+
sgml-base 1.26+nmu4ubuntu1
|
994
|
+
sgml-data 2.0.9-1
|
995
|
+
shared-mime-info 1.2-0ubuntu3
|
996
|
+
shtool 2.0.8-6
|
997
|
+
software-properties-common 0.92.37.3
|
998
|
+
solr-common 3.6.2+dfsg-2
|
999
|
+
solr-tomcat 3.6.2+dfsg-2
|
1000
|
+
sound-theme-freedesktop 0.8-1
|
1001
|
+
sqlite3 3.8.2-1ubuntu2
|
1002
|
+
ssh-import-id 3.21-0ubuntu1
|
1003
|
+
sshfp 1.2.2-4
|
1004
|
+
ssl-cert 1.0.33
|
1005
|
+
stow 2.2.0-2
|
1006
|
+
strace 4.8-1ubuntu5
|
1007
|
+
subversion 1.8.8-1ubuntu3.1
|
1008
|
+
sudo 1.8.9p5-1ubuntu1.1
|
1009
|
+
swig 2.0.11-1ubuntu2
|
1010
|
+
swig2.0 2.0.11-1ubuntu2
|
1011
|
+
sysstat 10.2.0-1
|
1012
|
+
systemd-services 204-5ubuntu20.12
|
1013
|
+
systemd-shim 6-2bzr1
|
1014
|
+
sysv-rc 2.88dsf-41ubuntu6.2
|
1015
|
+
sysvinit-utils 2.88dsf-41ubuntu6.2
|
1016
|
+
tar 1.27.1-1
|
1017
|
+
tasksel 2.88ubuntu15
|
1018
|
+
tasksel-data 2.88ubuntu15
|
1019
|
+
tcl8.5 8.5.15-2ubuntu1
|
1020
|
+
tcpd 7.6.q-25
|
1021
|
+
tcpdump 4.5.1-2ubuntu1.2
|
1022
|
+
telnet 0.17-36build2
|
1023
|
+
time 1.7-24
|
1024
|
+
tinymce 3.4.8+dfsg0-1
|
1025
|
+
tmux 1.9a-1~ppa1~p
|
1026
|
+
tomcat6 6.0.39-1
|
1027
|
+
tomcat6-common 6.0.39-1
|
1028
|
+
traceroute 1:2.0.20-0ubuntu0.1
|
1029
|
+
tree 1.6.0-1
|
1030
|
+
ttf-dejavu-core 2.34-1ubuntu1
|
1031
|
+
tzdata 2015d-0ubuntu0.14.04
|
1032
|
+
tzdata-java 2015d-0ubuntu0.14.04
|
1033
|
+
ubuntu-keyring 2012.05.19
|
1034
|
+
ubuntu-minimal 1.325
|
1035
|
+
ubuntu-release-upgrader-core 1:0.220.7
|
1036
|
+
ucf 3.0027+nmu1
|
1037
|
+
udev 204-5ubuntu20.12
|
1038
|
+
udisks2 2.1.3-1
|
1039
|
+
unattended-upgrades 0.82.1ubuntu2.2
|
1040
|
+
unison 2.40.102-2ubuntu1
|
1041
|
+
unrar 1:5.0.10-1ubuntu0.14.04.1
|
1042
|
+
unzip 6.0-9ubuntu1.3
|
1043
|
+
update-inetd 4.43
|
1044
|
+
update-manager-core 1:0.196.13
|
1045
|
+
update-notifier-common 0.154.1ubuntu1
|
1046
|
+
upstart 1.12.1-0ubuntu4.2
|
1047
|
+
ureadahead 0.100.0-16
|
1048
|
+
usbutils 1:007-2ubuntu1
|
1049
|
+
util-linux 2.20.1-5.1ubuntu20.4
|
1050
|
+
uuid 1.6.2-1.3ubuntu1
|
1051
|
+
uuid-dev 2.20.1-5.1ubuntu20.4
|
1052
|
+
uuid-runtime 2.20.1-5.1ubuntu20.4
|
1053
|
+
vim-common 2:7.4.052-1ubuntu3
|
1054
|
+
vim-nox 2:7.4.052-1ubuntu3
|
1055
|
+
vim-runtime 2:7.4.052-1ubuntu3
|
1056
|
+
vim-tiny 2:7.4.052-1ubuntu3
|
1057
|
+
w3m 0.5.3-15
|
1058
|
+
wget 1.15-1ubuntu1.14.04.1
|
1059
|
+
whiptail 0.52.15-2ubuntu5
|
1060
|
+
whois 5.1.1
|
1061
|
+
x11-common 1:7.7+1ubuntu8.1
|
1062
|
+
x11-utils 7.7+1
|
1063
|
+
x11-xserver-utils 7.7+2ubuntu1
|
1064
|
+
x11proto-core-dev 7.0.26-1~ubuntu2
|
1065
|
+
x11proto-input-dev 2.3-1
|
1066
|
+
x11proto-kb-dev 1.0.6-2
|
1067
|
+
xauth 1:1.0.7-1ubuntu1
|
1068
|
+
xdg-utils 1.1.0~rc1-2ubuntu7.1
|
1069
|
+
xkb-data 2.10.1-1ubuntu1
|
1070
|
+
xml-core 0.13+nmu2
|
1071
|
+
xorg-sgml-doctools 1:1.11-1
|
1072
|
+
xtrans-dev 1.3.5-1~ubuntu14.04.1
|
1073
|
+
xz-utils 5.1.1alpha+20120614-2ubuntu2
|
1074
|
+
zip 3.0-8
|
1075
|
+
zlib1g:amd64 1:1.2.8.dfsg-1ubuntu1
|
1076
|
+
zlib1g-dev:amd64 1:1.2.8.dfsg-1ubuntu1
|
1077
|
+
znc 1.6.0-2~ubuntu14.04.2
|
1078
|
+
znc-dbg 1.6.0-2~ubuntu14.04.2
|
1079
|
+
znc-dev 1.6.0-2~ubuntu14.04.2
|
1080
|
+
znc-perl 1.6.0-2~ubuntu14.04.2
|
1081
|
+
znc-python 1.6.0-2~ubuntu14.04.2
|
1082
|
+
znc-tcl 1.6.0-2~ubuntu14.04.2
|
1083
|
+
zoo 2.10-27
|
1084
|
+
zsh 5.0.2-3ubuntu6
|
1085
|
+
zsh-beta 5.0.2-3ubuntu6
|
1086
|
+
zsh-common 5.0.2-3ubuntu6
|
1087
|
+
zsh-doc 5.0.2-3ubuntu6
|