fauxhai-ng 8.2.0 → 8.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/bin/fauxhai +8 -8
  3. data/lib/.DS_Store +0 -0
  4. data/lib/fauxhai.rb +5 -5
  5. data/lib/fauxhai/.DS_Store +0 -0
  6. data/lib/fauxhai/fetcher.rb +9 -8
  7. data/lib/fauxhai/mocker.rb +13 -13
  8. data/lib/fauxhai/platforms/.DS_Store +0 -0
  9. data/lib/fauxhai/platforms/amazon/2.json +3128 -3132
  10. data/lib/fauxhai/platforms/amazon/2016.03.json +2323 -2333
  11. data/lib/fauxhai/platforms/amazon/2016.09.json +2356 -2366
  12. data/lib/fauxhai/platforms/amazon/2017.03.json +2329 -2339
  13. data/lib/fauxhai/platforms/amazon/2017.09.json +2370 -2380
  14. data/lib/fauxhai/platforms/amazon/2018.03.json +2403 -2413
  15. data/lib/fauxhai/platforms/centos/6.9.json +1 -0
  16. data/lib/fauxhai/platforms/centos/7.7.1908.json +34 -34
  17. data/lib/fauxhai/platforms/centos/8.json +1153 -841
  18. data/lib/fauxhai/platforms/debian/10.json +31 -31
  19. data/lib/fauxhai/platforms/debian/8.11.json +1 -0
  20. data/lib/fauxhai/platforms/debian/9.11.json +33 -35
  21. data/lib/fauxhai/platforms/debian/{8.10.json → 9.12.json} +984 -1645
  22. data/lib/fauxhai/platforms/debian/9.8.json +36 -37
  23. data/lib/fauxhai/platforms/debian/9.9.json +37 -38
  24. data/lib/fauxhai/platforms/opensuse/15.0.json +1 -0
  25. data/lib/fauxhai/platforms/opensuse/15.1.json +40 -42
  26. data/lib/fauxhai/platforms/oracle/6.10.json +19 -19
  27. data/lib/fauxhai/platforms/oracle/6.9.json +1 -0
  28. data/lib/fauxhai/platforms/oracle/7.5.json +481 -497
  29. data/lib/fauxhai/platforms/suse/12.3.json +38 -40
  30. data/lib/fauxhai/platforms/suse/12.4.json +40 -42
  31. data/lib/fauxhai/platforms/suse/12.5.json +41 -40
  32. data/lib/fauxhai/platforms/suse/15.json +996 -998
  33. data/lib/fauxhai/platforms/ubuntu/.DS_Store +0 -0
  34. data/lib/fauxhai/platforms/ubuntu/16.04.json +2038 -1980
  35. data/lib/fauxhai/platforms/ubuntu/18.04.json +2098 -2110
  36. data/lib/fauxhai/platforms/ubuntu/20.04.json +2353 -2097
  37. data/lib/fauxhai/runner.rb +27 -27
  38. data/lib/fauxhai/runner/default.rb +128 -128
  39. data/lib/fauxhai/runner/windows.rb +77 -77
  40. data/lib/fauxhai/version.rb +1 -1
  41. metadata +6 -7
  42. data/lib/fauxhai/platforms/debian/8.9.json +0 -3614
@@ -1,99 +1,99 @@
1
1
  module Fauxhai
2
2
  class Runner
3
3
  module Windows
4
- require_relative 'default'
4
+ require_relative "default"
5
5
  include ::Fauxhai::Runner::Default
6
6
 
7
7
  def default_interface
8
- '0xe'
8
+ "0xe"
9
9
  end
10
10
 
11
11
  def network
12
12
  {
13
- 'interfaces' => {
13
+ "interfaces" => {
14
14
  "#{default_interface}" => {
15
- 'configuration' => {
16
- 'caption' => '[00000012] Ethernet Adapter',
17
- 'database_path' => '%SystemRoot%\\System32\\drivers\\etc',
18
- 'default_ip_gateway' => %w(default_gateway),
19
- 'description' => 'Ethernet Adapter',
20
- 'dhcp_enabled' => false,
21
- 'dns_domain_suffix_search_order' => [],
22
- 'dns_enabled_for_wins_resolution' => false,
23
- 'dns_host_name' => hostname,
24
- 'domain_dns_registration_enabled' => false,
25
- 'full_dns_registration_enabled' => true,
26
- 'gateway_cost_metric' => [0],
27
- 'index' => 12,
28
- 'interface_index' => 14,
29
- 'ip_address' => [ipaddress],
30
- 'ip_connection_metric' => 5,
31
- 'ip_enabled' => true,
32
- 'ip_filter_security_enabled' => false,
33
- 'ip_sec_permit_ip_protocols' => [],
34
- 'ip_sec_permit_tcp_ports' => [],
35
- 'ip_sec_permit_udp_ports' => [],
36
- 'ip_subnet' => %w(255.255.255.0 64),
37
- 'mac_address' => macaddress,
38
- 'service_name' => 'netkvm',
39
- 'setting_id' => '{00000000-0000-0000-0000-000000000000}',
40
- 'tcpip_netbios_options' => 0,
41
- 'tcp_window_size' => 64240,
42
- 'wins_enable_lm_hosts_lookup' => true,
43
- 'wins_scope_id' => '',
15
+ "configuration" => {
16
+ "caption" => "[00000012] Ethernet Adapter",
17
+ "database_path" => '%SystemRoot%\\System32\\drivers\\etc',
18
+ "default_ip_gateway" => %w{default_gateway},
19
+ "description" => "Ethernet Adapter",
20
+ "dhcp_enabled" => false,
21
+ "dns_domain_suffix_search_order" => [],
22
+ "dns_enabled_for_wins_resolution" => false,
23
+ "dns_host_name" => hostname,
24
+ "domain_dns_registration_enabled" => false,
25
+ "full_dns_registration_enabled" => true,
26
+ "gateway_cost_metric" => [0],
27
+ "index" => 12,
28
+ "interface_index" => 14,
29
+ "ip_address" => [ipaddress],
30
+ "ip_connection_metric" => 5,
31
+ "ip_enabled" => true,
32
+ "ip_filter_security_enabled" => false,
33
+ "ip_sec_permit_ip_protocols" => [],
34
+ "ip_sec_permit_tcp_ports" => [],
35
+ "ip_sec_permit_udp_ports" => [],
36
+ "ip_subnet" => %w{255.255.255.0 64},
37
+ "mac_address" => macaddress,
38
+ "service_name" => "netkvm",
39
+ "setting_id" => "{00000000-0000-0000-0000-000000000000}",
40
+ "tcpip_netbios_options" => 0,
41
+ "tcp_window_size" => 64240,
42
+ "wins_enable_lm_hosts_lookup" => true,
43
+ "wins_scope_id" => "",
44
44
  },
45
- 'instance' => {
46
- 'adapter_type' => 'Ethernet 802.3',
47
- 'adapter_type_id' => 0,
48
- 'availability' => 3,
49
- 'caption' => '[00000012] Ethernet Adapter',
50
- 'config_manager_error_code' => 0,
51
- 'config_manager_user_config' => false,
52
- 'creation_class_name' => 'Win32_NetworkAdapter',
53
- 'description' => 'Ethernet Adapter',
54
- 'device_id' => '12',
55
- 'guid' => '{00000000-0000-0000-0000-000000000000}',
56
- 'index' => 12,
57
- 'installed' => true,
58
- 'interface_index' => 14,
59
- 'mac_address' => macaddress,
60
- 'manufacturer' => '',
61
- 'max_number_controlled' => 0,
62
- 'name' => 'Ethernet Adapter',
63
- 'net_connection_id' => 'Ethernet',
64
- 'net_connection_status' => 2,
65
- 'net_enabled' => true,
66
- 'physical_adapter' => true,
67
- 'pnp_device_id' => 'PCI\\VEN_0000&DEV_0000&SUBSYS_000000000&REV_00\\0&0000000000&00',
68
- 'power_management_supported' => false,
69
- 'product_name' => 'Ethernet Adapter',
70
- 'service_name' => 'netkvm',
71
- 'speed' => '10000000000',
72
- 'system_creation_class_name' => 'Win32_ComputerSystem',
73
- 'system_name' => hostname,
74
- 'time_of_last_reset' => '20000101000001.000000+000'
45
+ "instance" => {
46
+ "adapter_type" => "Ethernet 802.3",
47
+ "adapter_type_id" => 0,
48
+ "availability" => 3,
49
+ "caption" => "[00000012] Ethernet Adapter",
50
+ "config_manager_error_code" => 0,
51
+ "config_manager_user_config" => false,
52
+ "creation_class_name" => "Win32_NetworkAdapter",
53
+ "description" => "Ethernet Adapter",
54
+ "device_id" => "12",
55
+ "guid" => "{00000000-0000-0000-0000-000000000000}",
56
+ "index" => 12,
57
+ "installed" => true,
58
+ "interface_index" => 14,
59
+ "mac_address" => macaddress,
60
+ "manufacturer" => "",
61
+ "max_number_controlled" => 0,
62
+ "name" => "Ethernet Adapter",
63
+ "net_connection_id" => "Ethernet",
64
+ "net_connection_status" => 2,
65
+ "net_enabled" => true,
66
+ "physical_adapter" => true,
67
+ "pnp_device_id" => 'PCI\\VEN_0000&DEV_0000&SUBSYS_000000000&REV_00\\0&0000000000&00',
68
+ "power_management_supported" => false,
69
+ "product_name" => "Ethernet Adapter",
70
+ "service_name" => "netkvm",
71
+ "speed" => "10000000000",
72
+ "system_creation_class_name" => "Win32_ComputerSystem",
73
+ "system_name" => hostname,
74
+ "time_of_last_reset" => "20000101000001.000000+000",
75
75
  },
76
- 'counters' => {},
77
- 'addresses' => {
76
+ "counters" => {},
77
+ "addresses" => {
78
78
  "#{ipaddress}" => {
79
- 'prefixlen' => '24',
80
- 'netmask' => '255.255.255.0',
81
- 'broadcast' => '10.0.0.255',
82
- 'family' => 'inet'
79
+ "prefixlen" => "24",
80
+ "netmask" => "255.255.255.0",
81
+ "broadcast" => "10.0.0.255",
82
+ "family" => "inet",
83
83
  },
84
84
  "#{macaddress}" => {
85
- 'family' => 'lladdr'
86
- }
85
+ "family" => "lladdr",
86
+ },
87
87
  },
88
- 'type' => 'Ethernet 802.3',
89
- 'arp' => {
90
- '10.0.0.1' => 'fe:ff:ff:ff:ff:ff'
88
+ "type" => "Ethernet 802.3",
89
+ "arp" => {
90
+ "10.0.0.1" => "fe:ff:ff:ff:ff:ff",
91
91
  },
92
- 'encapsulation' => 'Ethernet'
93
- }
92
+ "encapsulation" => "Ethernet",
93
+ },
94
94
  },
95
- 'default_gateway' => default_gateway,
96
- 'default_interface' => default_interface
95
+ "default_gateway" => default_gateway,
96
+ "default_interface" => default_interface,
97
97
  }
98
98
  end
99
99
  end
@@ -1,3 +1,3 @@
1
1
  module Fauxhai
2
- VERSION = '8.2.0'.freeze
2
+ VERSION = "8.3.0".freeze
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fauxhai-ng
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.2.0
4
+ version: 8.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Vargo
8
8
  - Tim Smith
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-05-17 00:00:00.000000000 Z
12
+ date: 2020-08-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: net-ssh
@@ -141,10 +141,9 @@ files:
141
141
  - lib/fauxhai/platforms/clearos/7.4.json
142
142
  - lib/fauxhai/platforms/debian/.DS_Store
143
143
  - lib/fauxhai/platforms/debian/10.json
144
- - lib/fauxhai/platforms/debian/8.10.json
145
144
  - lib/fauxhai/platforms/debian/8.11.json
146
- - lib/fauxhai/platforms/debian/8.9.json
147
145
  - lib/fauxhai/platforms/debian/9.11.json
146
+ - lib/fauxhai/platforms/debian/9.12.json
148
147
  - lib/fauxhai/platforms/debian/9.8.json
149
148
  - lib/fauxhai/platforms/debian/9.9.json
150
149
  - lib/fauxhai/platforms/dragonfly4/4.8-RELEASE.json
@@ -209,7 +208,7 @@ homepage: https://github.com/chefspec/fauxhai
209
208
  licenses:
210
209
  - MIT
211
210
  metadata: {}
212
- post_install_message:
211
+ post_install_message:
213
212
  rdoc_options: []
214
213
  require_paths:
215
214
  - lib
@@ -225,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
224
  version: '0'
226
225
  requirements: []
227
226
  rubygems_version: 3.1.2
228
- signing_key:
227
+ signing_key:
229
228
  specification_version: 4
230
229
  summary: Fauxhai provides an easy way to mock out your ohai data for testing with
231
230
  chefspec!
@@ -1,3614 +0,0 @@
1
- {
2
- "block_device": {
3
- "sda": {
4
- "logical_block_size": "512",
5
- "model": "VBOX HARDDISK",
6
- "physical_block_size": "512",
7
- "queue_depth": "31",
8
- "removable": "0",
9
- "rev": "1.0",
10
- "rotational": "1",
11
- "size": "16777216",
12
- "state": "running",
13
- "timeout": "30",
14
- "vendor": "ATA"
15
- },
16
- "sr0": {
17
- "logical_block_size": "512",
18
- "model": "CD-ROM",
19
- "physical_block_size": "512",
20
- "queue_depth": "1",
21
- "removable": "1",
22
- "rev": "1.0",
23
- "rotational": "1",
24
- "size": "2097151",
25
- "state": "running",
26
- "timeout": "30",
27
- "vendor": "VBOX"
28
- }
29
- },
30
- "chef_packages": {
31
- "chef": {
32
- "chef_root": "/opt/chef/embedded/lib/ruby/gems/2.4.0/gems/chef-13.2.20/lib",
33
- "version": "13.2.20"
34
- },
35
- "ohai": {
36
- "ohai_root": "/opt/chef/embedded/lib/ruby/gems/2.4.0/gems/ohai-13.2.0/lib/ohai",
37
- "version": "13.2.0"
38
- }
39
- },
40
- "command": {
41
- "ps": "ps -ef"
42
- },
43
- "counters": {
44
- "network": {
45
- "interfaces": {
46
- "eth0": {
47
- "rx": {
48
- "bytes": 0,
49
- "compressed": 0,
50
- "drop": 0,
51
- "errors": 0,
52
- "frame": 0,
53
- "multicast": 0,
54
- "overrun": 0,
55
- "packets": 0
56
- },
57
- "tx": {
58
- "bytes": 0,
59
- "carrier": 0,
60
- "collisions": 0,
61
- "compressed": 0,
62
- "drop": 0,
63
- "errors": 0,
64
- "overrun": 0,
65
- "packets": 0
66
- }
67
- },
68
- "lo": {
69
- "rx": {
70
- "bytes": 0,
71
- "drop": 0,
72
- "errors": 0,
73
- "overrun": 0,
74
- "packets": 0
75
- },
76
- "tx": {
77
- "bytes": 0,
78
- "carrier": 0,
79
- "collisions": 0,
80
- "drop": 0,
81
- "errors": 0,
82
- "packets": 0,
83
- "queuelen": "1"
84
- }
85
- }
86
- }
87
- }
88
- },
89
- "cpu": {
90
- "cores": 1,
91
- "real": 1,
92
- "total": 1
93
- },
94
- "current_user": "fauxhai",
95
- "dmi": {
96
- "base_board": {
97
- "all_records": [
98
- {
99
- "Asset Tag": "Not Specified",
100
- "Chassis Handle": "0x0003",
101
- "Contained Object Handles": "0",
102
- "Features": {
103
- "Board is a hosting board": null
104
- },
105
- "Location In Chassis": "Not Specified",
106
- "Manufacturer": "Oracle Corporation",
107
- "Product Name": "VirtualBox",
108
- "Serial Number": "0",
109
- "Type": "Motherboard",
110
- "Version": "1.2",
111
- "application_identifier": "Base Board Information",
112
- "record_id": "0x0008",
113
- "size": "2"
114
- }
115
- ],
116
- "asset_tag": "Not Specified",
117
- "chassis_handle": "0x0003",
118
- "contained_object_handles": "0",
119
- "location_in_chassis": "Not Specified",
120
- "manufacturer": "Oracle Corporation",
121
- "product_name": "VirtualBox",
122
- "serial_number": "0",
123
- "type": "Motherboard",
124
- "version": "1.2"
125
- },
126
- "bios": {
127
- "address": "0xE0000",
128
- "all_records": [
129
- {
130
- "Address": "0xE0000",
131
- "Characteristics": {
132
- "8042 keyboard services are supported (int 9h)": null,
133
- "ACPI is supported": null,
134
- "Boot from CD is supported": null,
135
- "CGA/mono video services are supported (int 10h)": null,
136
- "ISA is supported": null,
137
- "PCI is supported": null,
138
- "Selectable boot is supported": null
139
- },
140
- "ROM Size": "128 kB",
141
- "Release Date": "12/01/2006",
142
- "Runtime Size": "128 kB",
143
- "Vendor": "innotek GmbH",
144
- "Version": "VirtualBox",
145
- "application_identifier": "BIOS Information",
146
- "record_id": "0x0000",
147
- "size": "0"
148
- }
149
- ],
150
- "release_date": "12/01/2006",
151
- "rom_size": "128 kB",
152
- "runtime_size": "128 kB",
153
- "vendor": "innotek GmbH",
154
- "version": "VirtualBox"
155
- },
156
- "chassis": {
157
- "all_records": [
158
- {
159
- "Asset Tag": "Not Specified",
160
- "Boot-up State": "Safe",
161
- "Lock": "Not Present",
162
- "Manufacturer": "Oracle Corporation",
163
- "Power Supply State": "Safe",
164
- "Security Status": "None",
165
- "Serial Number": "Not Specified",
166
- "Thermal State": "Safe",
167
- "Type": "Other",
168
- "Version": "Not Specified",
169
- "application_identifier": "Chassis Information",
170
- "record_id": "0x0003",
171
- "size": "3"
172
- }
173
- ],
174
- "asset_tag": "Not Specified",
175
- "boot_up_state": "Safe",
176
- "lock": "Not Present",
177
- "manufacturer": "Oracle Corporation",
178
- "power_supply_state": "Safe",
179
- "security_status": "None",
180
- "serial_number": "Not Specified",
181
- "thermal_state": "Safe",
182
- "type": "Other",
183
- "version": "Not Specified"
184
- },
185
- "dmidecode_version": "2.12",
186
- "oem_strings": {
187
- "all_records": [
188
- {
189
- "String 1": "vboxVer_5.1.26",
190
- "String 2": "vboxRev_117224",
191
- "application_identifier": "OEM Strings",
192
- "record_id": "0x0002",
193
- "size": "11"
194
- }
195
- ],
196
- "string_1": "vboxVer_5.1.26",
197
- "string_2": "vboxRev_117224"
198
- },
199
- "smbios_version": "2.5",
200
- "structures": {
201
- "count": "10",
202
- "size": "450"
203
- },
204
- "system": {
205
- "all_records": [
206
- {
207
- "Family": "Virtual Machine",
208
- "Manufacturer": "innotek GmbH",
209
- "Product Name": "VirtualBox",
210
- "SKU Number": "Not Specified",
211
- "Serial Number": "0",
212
- "UUID": "30999B7D-4ECD-4FBC-A411-1C60BB9AA2C4",
213
- "Version": "1.2",
214
- "Wake-up Type": "Power Switch",
215
- "application_identifier": "System Information",
216
- "record_id": "0x0001",
217
- "size": "1"
218
- }
219
- ],
220
- "family": "Virtual Machine",
221
- "manufacturer": "innotek GmbH",
222
- "product_name": "VirtualBox",
223
- "serial_number": "0",
224
- "sku_number": "Not Specified",
225
- "uuid": "30999B7D-4ECD-4FBC-A411-1C60BB9AA2C4",
226
- "version": "1.2",
227
- "wake_up_type": "Power Switch"
228
- },
229
- "table_location": "0x000E1000"
230
- },
231
- "domain": "local",
232
- "etc": {
233
- "group": {
234
- "fauxhai": {
235
- "gid": 0,
236
- "members": [
237
- "fauxhai"
238
- ]
239
- }
240
- },
241
- "passwd": {
242
- "fauxhai": {
243
- "dir": "/home/fauxhai",
244
- "gecos": "Fauxhai",
245
- "gid": 0,
246
- "shell": "/bin/bash",
247
- "uid": 0
248
- }
249
- }
250
- },
251
- "filesystem": {
252
- "by_device": {
253
- "/dev/sda": {
254
- "mounts": []
255
- },
256
- "/dev/sda1": {
257
- "fs_type": "ext4",
258
- "inodes_available": "450130",
259
- "inodes_percent_used": "10%",
260
- "inodes_used": "49582",
261
- "kb_available": "6119880",
262
- "kb_size": "7736784",
263
- "kb_used": "1200856",
264
- "mount_options": [
265
- "rw",
266
- "relatime",
267
- "errors=remount-ro",
268
- "data=ordered"
269
- ],
270
- "mounts": [
271
- "/"
272
- ],
273
- "percent_used": "17%",
274
- "total_inodes": "499712",
275
- "uuid": "18f3f610-6877-445c-88dd-36bb51dbb963"
276
- },
277
- "/dev/sda2": {
278
- "mounts": []
279
- },
280
- "/dev/sda5": {
281
- "fs_type": "swap",
282
- "mounts": [],
283
- "uuid": "82dc5c79-dad5-4378-b87d-374617f2a5c2"
284
- },
285
- "/dev/sr0": {
286
- "mounts": []
287
- },
288
- "cgroup": {
289
- "fs_type": "cgroup",
290
- "mount_options": [
291
- "rw",
292
- "nosuid",
293
- "nodev",
294
- "noexec",
295
- "relatime",
296
- "perf_event"
297
- ],
298
- "mounts": [
299
- "/sys/fs/cgroup/systemd",
300
- "/sys/fs/cgroup/cpuset",
301
- "/sys/fs/cgroup/cpu,cpuacct",
302
- "/sys/fs/cgroup/devices",
303
- "/sys/fs/cgroup/freezer",
304
- "/sys/fs/cgroup/net_cls,net_prio",
305
- "/sys/fs/cgroup/blkio",
306
- "/sys/fs/cgroup/perf_event"
307
- ]
308
- },
309
- "debugfs": {
310
- "fs_type": "debugfs",
311
- "mount_options": [
312
- "rw",
313
- "relatime"
314
- ],
315
- "mounts": [
316
- "/sys/kernel/debug"
317
- ]
318
- },
319
- "devpts": {
320
- "fs_type": "devpts",
321
- "mount_options": [
322
- "rw",
323
- "nosuid",
324
- "noexec",
325
- "relatime",
326
- "gid=5",
327
- "mode=620",
328
- "ptmxmode=000"
329
- ],
330
- "mounts": [
331
- "/dev/pts"
332
- ]
333
- },
334
- "hugetlbfs": {
335
- "fs_type": "hugetlbfs",
336
- "mount_options": [
337
- "rw",
338
- "relatime"
339
- ],
340
- "mounts": [
341
- "/dev/hugepages"
342
- ]
343
- },
344
- "mqueue": {
345
- "fs_type": "mqueue",
346
- "mount_options": [
347
- "rw",
348
- "relatime"
349
- ],
350
- "mounts": [
351
- "/dev/mqueue"
352
- ]
353
- },
354
- "proc": {
355
- "fs_type": "proc",
356
- "mount_options": [
357
- "rw",
358
- "nosuid",
359
- "nodev",
360
- "noexec",
361
- "relatime"
362
- ],
363
- "mounts": [
364
- "/proc"
365
- ]
366
- },
367
- "pstore": {
368
- "fs_type": "pstore",
369
- "mount_options": [
370
- "rw",
371
- "nosuid",
372
- "nodev",
373
- "noexec",
374
- "relatime"
375
- ],
376
- "mounts": [
377
- "/sys/fs/pstore"
378
- ]
379
- },
380
- "rootfs": {
381
- "fs_type": "rootfs",
382
- "mount_options": [
383
- "rw"
384
- ],
385
- "mounts": [
386
- "/"
387
- ]
388
- },
389
- "rpc_pipefs": {
390
- "fs_type": "rpc_pipefs",
391
- "mount_options": [
392
- "rw",
393
- "relatime"
394
- ],
395
- "mounts": [
396
- "/run/rpc_pipefs"
397
- ]
398
- },
399
- "securityfs": {
400
- "fs_type": "securityfs",
401
- "mount_options": [
402
- "rw",
403
- "nosuid",
404
- "nodev",
405
- "noexec",
406
- "relatime"
407
- ],
408
- "mounts": [
409
- "/sys/kernel/security"
410
- ]
411
- },
412
- "sysfs": {
413
- "fs_type": "sysfs",
414
- "mount_options": [
415
- "rw",
416
- "nosuid",
417
- "nodev",
418
- "noexec",
419
- "relatime"
420
- ],
421
- "mounts": [
422
- "/sys"
423
- ]
424
- },
425
- "systemd-1": {
426
- "fs_type": "autofs",
427
- "mount_options": [
428
- "rw",
429
- "relatime",
430
- "fd=22",
431
- "pgrp=1",
432
- "timeout=300",
433
- "minproto=5",
434
- "maxproto=5",
435
- "direct"
436
- ],
437
- "mounts": [
438
- "/proc/sys/fs/binfmt_misc"
439
- ]
440
- },
441
- "tmpfs": {
442
- "fs_type": "tmpfs",
443
- "inodes_available": "128033",
444
- "inodes_percent_used": "1%",
445
- "inodes_used": "13",
446
- "kb_available": "512184",
447
- "kb_size": "512184",
448
- "kb_used": "0",
449
- "mount_options": [
450
- "ro",
451
- "nosuid",
452
- "nodev",
453
- "noexec",
454
- "mode=755"
455
- ],
456
- "mounts": [
457
- "/run",
458
- "/dev/shm",
459
- "/run/lock",
460
- "/sys/fs/cgroup"
461
- ],
462
- "percent_used": "0%",
463
- "total_inodes": "128046"
464
- },
465
- "udev": {
466
- "fs_type": "devtmpfs",
467
- "inodes_available": "125616",
468
- "inodes_percent_used": "1%",
469
- "inodes_used": "327",
470
- "kb_available": "10240",
471
- "kb_size": "10240",
472
- "kb_used": "0",
473
- "mount_options": [
474
- "rw",
475
- "relatime",
476
- "size=10240k",
477
- "nr_inodes=125943",
478
- "mode=755"
479
- ],
480
- "mounts": [
481
- "/dev"
482
- ],
483
- "percent_used": "0%",
484
- "total_inodes": "125943"
485
- }
486
- },
487
- "by_mountpoint": {
488
- "/": {
489
- "devices": [
490
- "/dev/sda1",
491
- "rootfs"
492
- ],
493
- "fs_type": "rootfs",
494
- "inodes_available": "450130",
495
- "inodes_percent_used": "10%",
496
- "inodes_used": "49582",
497
- "kb_available": "6119880",
498
- "kb_size": "7736784",
499
- "kb_used": "1200856",
500
- "mount_options": [
501
- "rw"
502
- ],
503
- "percent_used": "17%",
504
- "total_inodes": "499712",
505
- "uuid": "18f3f610-6877-445c-88dd-36bb51dbb963"
506
- },
507
- "/dev": {
508
- "devices": [
509
- "udev"
510
- ],
511
- "fs_type": "devtmpfs",
512
- "inodes_available": "125616",
513
- "inodes_percent_used": "1%",
514
- "inodes_used": "327",
515
- "kb_available": "10240",
516
- "kb_size": "10240",
517
- "kb_used": "0",
518
- "mount_options": [
519
- "rw",
520
- "relatime",
521
- "size=10240k",
522
- "nr_inodes=125943",
523
- "mode=755"
524
- ],
525
- "percent_used": "0%",
526
- "total_inodes": "125943"
527
- },
528
- "/dev/hugepages": {
529
- "devices": [
530
- "hugetlbfs"
531
- ],
532
- "fs_type": "hugetlbfs",
533
- "mount_options": [
534
- "rw",
535
- "relatime"
536
- ]
537
- },
538
- "/dev/mqueue": {
539
- "devices": [
540
- "mqueue"
541
- ],
542
- "fs_type": "mqueue",
543
- "mount_options": [
544
- "rw",
545
- "relatime"
546
- ]
547
- },
548
- "/dev/pts": {
549
- "devices": [
550
- "devpts"
551
- ],
552
- "fs_type": "devpts",
553
- "mount_options": [
554
- "rw",
555
- "nosuid",
556
- "noexec",
557
- "relatime",
558
- "gid=5",
559
- "mode=620",
560
- "ptmxmode=000"
561
- ]
562
- },
563
- "/dev/shm": {
564
- "devices": [
565
- "tmpfs"
566
- ],
567
- "fs_type": "tmpfs",
568
- "inodes_available": "128045",
569
- "inodes_percent_used": "1%",
570
- "inodes_used": "1",
571
- "kb_available": "512184",
572
- "kb_size": "512184",
573
- "kb_used": "0",
574
- "mount_options": [
575
- "rw",
576
- "nosuid",
577
- "nodev"
578
- ],
579
- "percent_used": "0%",
580
- "total_inodes": "128046"
581
- },
582
- "/proc": {
583
- "devices": [
584
- "proc"
585
- ],
586
- "fs_type": "proc",
587
- "mount_options": [
588
- "rw",
589
- "nosuid",
590
- "nodev",
591
- "noexec",
592
- "relatime"
593
- ]
594
- },
595
- "/proc/sys/fs/binfmt_misc": {
596
- "devices": [
597
- "systemd-1"
598
- ],
599
- "fs_type": "autofs",
600
- "mount_options": [
601
- "rw",
602
- "relatime",
603
- "fd=22",
604
- "pgrp=1",
605
- "timeout=300",
606
- "minproto=5",
607
- "maxproto=5",
608
- "direct"
609
- ]
610
- },
611
- "/run": {
612
- "devices": [
613
- "tmpfs"
614
- ],
615
- "fs_type": "tmpfs",
616
- "inodes_available": "127672",
617
- "inodes_percent_used": "1%",
618
- "inodes_used": "374",
619
- "kb_available": "200420",
620
- "kb_size": "204876",
621
- "kb_used": "4456",
622
- "mount_options": [
623
- "rw",
624
- "nosuid",
625
- "relatime",
626
- "size=204876k",
627
- "mode=755"
628
- ],
629
- "percent_used": "3%",
630
- "total_inodes": "128046"
631
- },
632
- "/run/lock": {
633
- "devices": [
634
- "tmpfs"
635
- ],
636
- "fs_type": "tmpfs",
637
- "inodes_available": "128043",
638
- "inodes_percent_used": "1%",
639
- "inodes_used": "3",
640
- "kb_available": "5120",
641
- "kb_size": "5120",
642
- "kb_used": "0",
643
- "mount_options": [
644
- "rw",
645
- "nosuid",
646
- "nodev",
647
- "noexec",
648
- "relatime",
649
- "size=5120k"
650
- ],
651
- "percent_used": "0%",
652
- "total_inodes": "128046"
653
- },
654
- "/run/rpc_pipefs": {
655
- "devices": [
656
- "rpc_pipefs"
657
- ],
658
- "fs_type": "rpc_pipefs",
659
- "mount_options": [
660
- "rw",
661
- "relatime"
662
- ]
663
- },
664
- "/sys": {
665
- "devices": [
666
- "sysfs"
667
- ],
668
- "fs_type": "sysfs",
669
- "mount_options": [
670
- "rw",
671
- "nosuid",
672
- "nodev",
673
- "noexec",
674
- "relatime"
675
- ]
676
- },
677
- "/sys/fs/cgroup": {
678
- "devices": [
679
- "tmpfs"
680
- ],
681
- "fs_type": "tmpfs",
682
- "inodes_available": "128033",
683
- "inodes_percent_used": "1%",
684
- "inodes_used": "13",
685
- "kb_available": "512184",
686
- "kb_size": "512184",
687
- "kb_used": "0",
688
- "mount_options": [
689
- "ro",
690
- "nosuid",
691
- "nodev",
692
- "noexec",
693
- "mode=755"
694
- ],
695
- "percent_used": "0%",
696
- "total_inodes": "128046"
697
- },
698
- "/sys/fs/cgroup/blkio": {
699
- "devices": [
700
- "cgroup"
701
- ],
702
- "fs_type": "cgroup",
703
- "mount_options": [
704
- "rw",
705
- "nosuid",
706
- "nodev",
707
- "noexec",
708
- "relatime",
709
- "blkio"
710
- ]
711
- },
712
- "/sys/fs/cgroup/cpu,cpuacct": {
713
- "devices": [
714
- "cgroup"
715
- ],
716
- "fs_type": "cgroup",
717
- "mount_options": [
718
- "rw",
719
- "nosuid",
720
- "nodev",
721
- "noexec",
722
- "relatime",
723
- "cpu",
724
- "cpuacct"
725
- ]
726
- },
727
- "/sys/fs/cgroup/cpuset": {
728
- "devices": [
729
- "cgroup"
730
- ],
731
- "fs_type": "cgroup",
732
- "mount_options": [
733
- "rw",
734
- "nosuid",
735
- "nodev",
736
- "noexec",
737
- "relatime",
738
- "cpuset"
739
- ]
740
- },
741
- "/sys/fs/cgroup/devices": {
742
- "devices": [
743
- "cgroup"
744
- ],
745
- "fs_type": "cgroup",
746
- "mount_options": [
747
- "rw",
748
- "nosuid",
749
- "nodev",
750
- "noexec",
751
- "relatime",
752
- "devices"
753
- ]
754
- },
755
- "/sys/fs/cgroup/freezer": {
756
- "devices": [
757
- "cgroup"
758
- ],
759
- "fs_type": "cgroup",
760
- "mount_options": [
761
- "rw",
762
- "nosuid",
763
- "nodev",
764
- "noexec",
765
- "relatime",
766
- "freezer"
767
- ]
768
- },
769
- "/sys/fs/cgroup/net_cls,net_prio": {
770
- "devices": [
771
- "cgroup"
772
- ],
773
- "fs_type": "cgroup",
774
- "mount_options": [
775
- "rw",
776
- "nosuid",
777
- "nodev",
778
- "noexec",
779
- "relatime",
780
- "net_cls",
781
- "net_prio"
782
- ]
783
- },
784
- "/sys/fs/cgroup/perf_event": {
785
- "devices": [
786
- "cgroup"
787
- ],
788
- "fs_type": "cgroup",
789
- "mount_options": [
790
- "rw",
791
- "nosuid",
792
- "nodev",
793
- "noexec",
794
- "relatime",
795
- "perf_event"
796
- ]
797
- },
798
- "/sys/fs/cgroup/systemd": {
799
- "devices": [
800
- "cgroup"
801
- ],
802
- "fs_type": "cgroup",
803
- "mount_options": [
804
- "rw",
805
- "nosuid",
806
- "nodev",
807
- "noexec",
808
- "relatime",
809
- "xattr",
810
- "release_agent=/lib/systemd/systemd-cgroups-agent",
811
- "name=systemd"
812
- ]
813
- },
814
- "/sys/fs/pstore": {
815
- "devices": [
816
- "pstore"
817
- ],
818
- "fs_type": "pstore",
819
- "mount_options": [
820
- "rw",
821
- "nosuid",
822
- "nodev",
823
- "noexec",
824
- "relatime"
825
- ]
826
- },
827
- "/sys/kernel/debug": {
828
- "devices": [
829
- "debugfs"
830
- ],
831
- "fs_type": "debugfs",
832
- "mount_options": [
833
- "rw",
834
- "relatime"
835
- ]
836
- },
837
- "/sys/kernel/security": {
838
- "devices": [
839
- "securityfs"
840
- ],
841
- "fs_type": "securityfs",
842
- "mount_options": [
843
- "rw",
844
- "nosuid",
845
- "nodev",
846
- "noexec",
847
- "relatime"
848
- ]
849
- }
850
- },
851
- "by_pair": {
852
- "/dev/sda,": {
853
- "device": "/dev/sda"
854
- },
855
- "/dev/sda1,/": {
856
- "device": "/dev/sda1",
857
- "fs_type": "ext4",
858
- "inodes_available": "450130",
859
- "inodes_percent_used": "10%",
860
- "inodes_used": "49582",
861
- "kb_available": "6119880",
862
- "kb_size": "7736784",
863
- "kb_used": "1200856",
864
- "mount": "/",
865
- "mount_options": [
866
- "rw",
867
- "relatime",
868
- "errors=remount-ro",
869
- "data=ordered"
870
- ],
871
- "percent_used": "17%",
872
- "total_inodes": "499712",
873
- "uuid": "18f3f610-6877-445c-88dd-36bb51dbb963"
874
- },
875
- "/dev/sda2,": {
876
- "device": "/dev/sda2"
877
- },
878
- "/dev/sda5,": {
879
- "device": "/dev/sda5",
880
- "fs_type": "swap",
881
- "uuid": "82dc5c79-dad5-4378-b87d-374617f2a5c2"
882
- },
883
- "/dev/sr0,": {
884
- "device": "/dev/sr0"
885
- },
886
- "cgroup,/sys/fs/cgroup/blkio": {
887
- "device": "cgroup",
888
- "fs_type": "cgroup",
889
- "mount": "/sys/fs/cgroup/blkio",
890
- "mount_options": [
891
- "rw",
892
- "nosuid",
893
- "nodev",
894
- "noexec",
895
- "relatime",
896
- "blkio"
897
- ]
898
- },
899
- "cgroup,/sys/fs/cgroup/cpu,cpuacct": {
900
- "device": "cgroup",
901
- "fs_type": "cgroup",
902
- "mount": "/sys/fs/cgroup/cpu,cpuacct",
903
- "mount_options": [
904
- "rw",
905
- "nosuid",
906
- "nodev",
907
- "noexec",
908
- "relatime",
909
- "cpu",
910
- "cpuacct"
911
- ]
912
- },
913
- "cgroup,/sys/fs/cgroup/cpuset": {
914
- "device": "cgroup",
915
- "fs_type": "cgroup",
916
- "mount": "/sys/fs/cgroup/cpuset",
917
- "mount_options": [
918
- "rw",
919
- "nosuid",
920
- "nodev",
921
- "noexec",
922
- "relatime",
923
- "cpuset"
924
- ]
925
- },
926
- "cgroup,/sys/fs/cgroup/devices": {
927
- "device": "cgroup",
928
- "fs_type": "cgroup",
929
- "mount": "/sys/fs/cgroup/devices",
930
- "mount_options": [
931
- "rw",
932
- "nosuid",
933
- "nodev",
934
- "noexec",
935
- "relatime",
936
- "devices"
937
- ]
938
- },
939
- "cgroup,/sys/fs/cgroup/freezer": {
940
- "device": "cgroup",
941
- "fs_type": "cgroup",
942
- "mount": "/sys/fs/cgroup/freezer",
943
- "mount_options": [
944
- "rw",
945
- "nosuid",
946
- "nodev",
947
- "noexec",
948
- "relatime",
949
- "freezer"
950
- ]
951
- },
952
- "cgroup,/sys/fs/cgroup/net_cls,net_prio": {
953
- "device": "cgroup",
954
- "fs_type": "cgroup",
955
- "mount": "/sys/fs/cgroup/net_cls,net_prio",
956
- "mount_options": [
957
- "rw",
958
- "nosuid",
959
- "nodev",
960
- "noexec",
961
- "relatime",
962
- "net_cls",
963
- "net_prio"
964
- ]
965
- },
966
- "cgroup,/sys/fs/cgroup/perf_event": {
967
- "device": "cgroup",
968
- "fs_type": "cgroup",
969
- "mount": "/sys/fs/cgroup/perf_event",
970
- "mount_options": [
971
- "rw",
972
- "nosuid",
973
- "nodev",
974
- "noexec",
975
- "relatime",
976
- "perf_event"
977
- ]
978
- },
979
- "cgroup,/sys/fs/cgroup/systemd": {
980
- "device": "cgroup",
981
- "fs_type": "cgroup",
982
- "mount": "/sys/fs/cgroup/systemd",
983
- "mount_options": [
984
- "rw",
985
- "nosuid",
986
- "nodev",
987
- "noexec",
988
- "relatime",
989
- "xattr",
990
- "release_agent=/lib/systemd/systemd-cgroups-agent",
991
- "name=systemd"
992
- ]
993
- },
994
- "debugfs,/sys/kernel/debug": {
995
- "device": "debugfs",
996
- "fs_type": "debugfs",
997
- "mount": "/sys/kernel/debug",
998
- "mount_options": [
999
- "rw",
1000
- "relatime"
1001
- ]
1002
- },
1003
- "devpts,/dev/pts": {
1004
- "device": "devpts",
1005
- "fs_type": "devpts",
1006
- "mount": "/dev/pts",
1007
- "mount_options": [
1008
- "rw",
1009
- "nosuid",
1010
- "noexec",
1011
- "relatime",
1012
- "gid=5",
1013
- "mode=620",
1014
- "ptmxmode=000"
1015
- ]
1016
- },
1017
- "hugetlbfs,/dev/hugepages": {
1018
- "device": "hugetlbfs",
1019
- "fs_type": "hugetlbfs",
1020
- "mount": "/dev/hugepages",
1021
- "mount_options": [
1022
- "rw",
1023
- "relatime"
1024
- ]
1025
- },
1026
- "mqueue,/dev/mqueue": {
1027
- "device": "mqueue",
1028
- "fs_type": "mqueue",
1029
- "mount": "/dev/mqueue",
1030
- "mount_options": [
1031
- "rw",
1032
- "relatime"
1033
- ]
1034
- },
1035
- "proc,/proc": {
1036
- "device": "proc",
1037
- "fs_type": "proc",
1038
- "mount": "/proc",
1039
- "mount_options": [
1040
- "rw",
1041
- "nosuid",
1042
- "nodev",
1043
- "noexec",
1044
- "relatime"
1045
- ]
1046
- },
1047
- "pstore,/sys/fs/pstore": {
1048
- "device": "pstore",
1049
- "fs_type": "pstore",
1050
- "mount": "/sys/fs/pstore",
1051
- "mount_options": [
1052
- "rw",
1053
- "nosuid",
1054
- "nodev",
1055
- "noexec",
1056
- "relatime"
1057
- ]
1058
- },
1059
- "rootfs,/": {
1060
- "device": "rootfs",
1061
- "fs_type": "rootfs",
1062
- "mount": "/",
1063
- "mount_options": [
1064
- "rw"
1065
- ]
1066
- },
1067
- "rpc_pipefs,/run/rpc_pipefs": {
1068
- "device": "rpc_pipefs",
1069
- "fs_type": "rpc_pipefs",
1070
- "mount": "/run/rpc_pipefs",
1071
- "mount_options": [
1072
- "rw",
1073
- "relatime"
1074
- ]
1075
- },
1076
- "securityfs,/sys/kernel/security": {
1077
- "device": "securityfs",
1078
- "fs_type": "securityfs",
1079
- "mount": "/sys/kernel/security",
1080
- "mount_options": [
1081
- "rw",
1082
- "nosuid",
1083
- "nodev",
1084
- "noexec",
1085
- "relatime"
1086
- ]
1087
- },
1088
- "sysfs,/sys": {
1089
- "device": "sysfs",
1090
- "fs_type": "sysfs",
1091
- "mount": "/sys",
1092
- "mount_options": [
1093
- "rw",
1094
- "nosuid",
1095
- "nodev",
1096
- "noexec",
1097
- "relatime"
1098
- ]
1099
- },
1100
- "systemd-1,/proc/sys/fs/binfmt_misc": {
1101
- "device": "systemd-1",
1102
- "fs_type": "autofs",
1103
- "mount": "/proc/sys/fs/binfmt_misc",
1104
- "mount_options": [
1105
- "rw",
1106
- "relatime",
1107
- "fd=22",
1108
- "pgrp=1",
1109
- "timeout=300",
1110
- "minproto=5",
1111
- "maxproto=5",
1112
- "direct"
1113
- ]
1114
- },
1115
- "tmpfs,/dev/shm": {
1116
- "device": "tmpfs",
1117
- "fs_type": "tmpfs",
1118
- "inodes_available": "128045",
1119
- "inodes_percent_used": "1%",
1120
- "inodes_used": "1",
1121
- "kb_available": "512184",
1122
- "kb_size": "512184",
1123
- "kb_used": "0",
1124
- "mount": "/dev/shm",
1125
- "mount_options": [
1126
- "rw",
1127
- "nosuid",
1128
- "nodev"
1129
- ],
1130
- "percent_used": "0%",
1131
- "total_inodes": "128046"
1132
- },
1133
- "tmpfs,/run": {
1134
- "device": "tmpfs",
1135
- "fs_type": "tmpfs",
1136
- "inodes_available": "127672",
1137
- "inodes_percent_used": "1%",
1138
- "inodes_used": "374",
1139
- "kb_available": "200420",
1140
- "kb_size": "204876",
1141
- "kb_used": "4456",
1142
- "mount": "/run",
1143
- "mount_options": [
1144
- "rw",
1145
- "nosuid",
1146
- "relatime",
1147
- "size=204876k",
1148
- "mode=755"
1149
- ],
1150
- "percent_used": "3%",
1151
- "total_inodes": "128046"
1152
- },
1153
- "tmpfs,/run/lock": {
1154
- "device": "tmpfs",
1155
- "fs_type": "tmpfs",
1156
- "inodes_available": "128043",
1157
- "inodes_percent_used": "1%",
1158
- "inodes_used": "3",
1159
- "kb_available": "5120",
1160
- "kb_size": "5120",
1161
- "kb_used": "0",
1162
- "mount": "/run/lock",
1163
- "mount_options": [
1164
- "rw",
1165
- "nosuid",
1166
- "nodev",
1167
- "noexec",
1168
- "relatime",
1169
- "size=5120k"
1170
- ],
1171
- "percent_used": "0%",
1172
- "total_inodes": "128046"
1173
- },
1174
- "tmpfs,/sys/fs/cgroup": {
1175
- "device": "tmpfs",
1176
- "fs_type": "tmpfs",
1177
- "inodes_available": "128033",
1178
- "inodes_percent_used": "1%",
1179
- "inodes_used": "13",
1180
- "kb_available": "512184",
1181
- "kb_size": "512184",
1182
- "kb_used": "0",
1183
- "mount": "/sys/fs/cgroup",
1184
- "mount_options": [
1185
- "ro",
1186
- "nosuid",
1187
- "nodev",
1188
- "noexec",
1189
- "mode=755"
1190
- ],
1191
- "percent_used": "0%",
1192
- "total_inodes": "128046"
1193
- },
1194
- "udev,/dev": {
1195
- "device": "udev",
1196
- "fs_type": "devtmpfs",
1197
- "inodes_available": "125616",
1198
- "inodes_percent_used": "1%",
1199
- "inodes_used": "327",
1200
- "kb_available": "10240",
1201
- "kb_size": "10240",
1202
- "kb_used": "0",
1203
- "mount": "/dev",
1204
- "mount_options": [
1205
- "rw",
1206
- "relatime",
1207
- "size=10240k",
1208
- "nr_inodes=125943",
1209
- "mode=755"
1210
- ],
1211
- "percent_used": "0%",
1212
- "total_inodes": "125943"
1213
- }
1214
- }
1215
- },
1216
- "fips": {
1217
- "kernel": {
1218
- "enabled": false
1219
- }
1220
- },
1221
- "fqdn": "fauxhai.local",
1222
- "hostname": "Fauxhai",
1223
- "idle": "30 days 15 hours 07 minutes 30 seconds",
1224
- "idletime_seconds": 2646450,
1225
- "init_package": "systemd",
1226
- "ipaddress": "10.0.0.2",
1227
- "kernel": {
1228
- "machine": "x86_64",
1229
- "modules": {
1230
- "ablk_helper": {
1231
- "refcount": "1",
1232
- "size": "12572"
1233
- },
1234
- "ac": {
1235
- "refcount": "0",
1236
- "size": "12715"
1237
- },
1238
- "ac97_bus": {
1239
- "refcount": "1",
1240
- "size": "12510"
1241
- },
1242
- "aes_x86_64": {
1243
- "refcount": "1",
1244
- "size": "16719"
1245
- },
1246
- "aesni_intel": {
1247
- "refcount": "0",
1248
- "size": "151423"
1249
- },
1250
- "ahci": {
1251
- "refcount": "2",
1252
- "size": "33334",
1253
- "version": "3.0"
1254
- },
1255
- "ata_generic": {
1256
- "refcount": "0",
1257
- "size": "12490",
1258
- "version": "0.2.15"
1259
- },
1260
- "ata_piix": {
1261
- "refcount": "0",
1262
- "size": "33592",
1263
- "version": "2.13"
1264
- },
1265
- "auth_rpcgss": {
1266
- "refcount": "1",
1267
- "size": "51209"
1268
- },
1269
- "autofs4": {
1270
- "refcount": "2",
1271
- "size": "35529"
1272
- },
1273
- "battery": {
1274
- "refcount": "0",
1275
- "size": "13356"
1276
- },
1277
- "button": {
1278
- "refcount": "0",
1279
- "size": "12944"
1280
- },
1281
- "cdrom": {
1282
- "refcount": "1",
1283
- "size": "47424"
1284
- },
1285
- "crc16": {
1286
- "refcount": "1",
1287
- "size": "12343"
1288
- },
1289
- "crc32_pclmul": {
1290
- "refcount": "0",
1291
- "size": "12915"
1292
- },
1293
- "crc32c_intel": {
1294
- "refcount": "0",
1295
- "size": "21809"
1296
- },
1297
- "crc_itu_t": {
1298
- "refcount": "1",
1299
- "size": "12347"
1300
- },
1301
- "crc_t10dif": {
1302
- "refcount": "1",
1303
- "size": "12431"
1304
- },
1305
- "crct10dif_common": {
1306
- "refcount": "3",
1307
- "size": "12356"
1308
- },
1309
- "crct10dif_generic": {
1310
- "refcount": "0",
1311
- "size": "12581"
1312
- },
1313
- "crct10dif_pclmul": {
1314
- "refcount": "1",
1315
- "size": "13387"
1316
- },
1317
- "cryptd": {
1318
- "refcount": "2",
1319
- "size": "14516"
1320
- },
1321
- "e1000": {
1322
- "refcount": "0",
1323
- "size": "122545",
1324
- "version": "7.3.21-k8-NAPI"
1325
- },
1326
- "ehci_hcd": {
1327
- "refcount": "1",
1328
- "size": "69837"
1329
- },
1330
- "ehci_pci": {
1331
- "refcount": "0",
1332
- "size": "12512"
1333
- },
1334
- "evdev": {
1335
- "refcount": "7",
1336
- "size": "17445"
1337
- },
1338
- "ext4": {
1339
- "refcount": "1",
1340
- "size": "481990"
1341
- },
1342
- "fscache": {
1343
- "refcount": "1",
1344
- "size": "45542"
1345
- },
1346
- "gf128mul": {
1347
- "refcount": "1",
1348
- "size": "12970"
1349
- },
1350
- "glue_helper": {
1351
- "refcount": "1",
1352
- "size": "12695"
1353
- },
1354
- "hid": {
1355
- "refcount": "2",
1356
- "size": "102264"
1357
- },
1358
- "hid_generic": {
1359
- "refcount": "0",
1360
- "size": "12393"
1361
- },
1362
- "i2c_core": {
1363
- "refcount": "1",
1364
- "size": "46012"
1365
- },
1366
- "i2c_piix4": {
1367
- "refcount": "0",
1368
- "size": "20864"
1369
- },
1370
- "isofs": {
1371
- "refcount": "0",
1372
- "size": "38965"
1373
- },
1374
- "jbd2": {
1375
- "refcount": "1",
1376
- "size": "82514"
1377
- },
1378
- "joydev": {
1379
- "refcount": "0",
1380
- "size": "17063"
1381
- },
1382
- "libahci": {
1383
- "refcount": "1",
1384
- "size": "27158"
1385
- },
1386
- "libata": {
1387
- "refcount": "4",
1388
- "size": "177508",
1389
- "version": "3.00"
1390
- },
1391
- "lockd": {
1392
- "refcount": "2",
1393
- "size": "83389"
1394
- },
1395
- "lrw": {
1396
- "refcount": "1",
1397
- "size": "12757"
1398
- },
1399
- "mbcache": {
1400
- "refcount": "1",
1401
- "size": "17171"
1402
- },
1403
- "nfs": {
1404
- "refcount": "0",
1405
- "size": "192232"
1406
- },
1407
- "nfs_acl": {
1408
- "refcount": "1",
1409
- "size": "12511"
1410
- },
1411
- "nfsd": {
1412
- "refcount": "2",
1413
- "size": "267034"
1414
- },
1415
- "ohci_hcd": {
1416
- "refcount": "1",
1417
- "size": "42982"
1418
- },
1419
- "ohci_pci": {
1420
- "refcount": "0",
1421
- "size": "12808"
1422
- },
1423
- "oid_registry": {
1424
- "refcount": "1",
1425
- "size": "12419"
1426
- },
1427
- "parport": {
1428
- "refcount": "2",
1429
- "size": "35749"
1430
- },
1431
- "parport_pc": {
1432
- "refcount": "0",
1433
- "size": "26300"
1434
- },
1435
- "pcspkr": {
1436
- "refcount": "0",
1437
- "size": "12595"
1438
- },
1439
- "ppdev": {
1440
- "refcount": "0",
1441
- "size": "16782"
1442
- },
1443
- "processor": {
1444
- "refcount": "0",
1445
- "size": "28221"
1446
- },
1447
- "psmouse": {
1448
- "refcount": "0",
1449
- "size": "99249"
1450
- },
1451
- "scsi_mod": {
1452
- "refcount": "4",
1453
- "size": "191405"
1454
- },
1455
- "sd_mod": {
1456
- "refcount": "3",
1457
- "size": "44356"
1458
- },
1459
- "serio_raw": {
1460
- "refcount": "0",
1461
- "size": "12849"
1462
- },
1463
- "sg": {
1464
- "refcount": "0",
1465
- "size": "29973",
1466
- "version": "3.5.34"
1467
- },
1468
- "snd": {
1469
- "refcount": "4",
1470
- "size": "65338"
1471
- },
1472
- "snd_ac97_codec": {
1473
- "refcount": "1",
1474
- "size": "118711"
1475
- },
1476
- "snd_intel8x0": {
1477
- "refcount": "0",
1478
- "size": "34948"
1479
- },
1480
- "snd_pcm": {
1481
- "refcount": "2",
1482
- "size": "88662"
1483
- },
1484
- "snd_timer": {
1485
- "refcount": "1",
1486
- "size": "26720"
1487
- },
1488
- "soundcore": {
1489
- "refcount": "1",
1490
- "size": "13026"
1491
- },
1492
- "sr_mod": {
1493
- "refcount": "0",
1494
- "size": "21903"
1495
- },
1496
- "sunrpc": {
1497
- "refcount": "6",
1498
- "size": "237406"
1499
- },
1500
- "thermal_sys": {
1501
- "refcount": "2",
1502
- "size": "27642"
1503
- },
1504
- "udf": {
1505
- "refcount": "0",
1506
- "size": "87759"
1507
- },
1508
- "usb_common": {
1509
- "refcount": "1",
1510
- "size": "12440"
1511
- },
1512
- "usbcore": {
1513
- "refcount": "5",
1514
- "size": "195468"
1515
- },
1516
- "usbhid": {
1517
- "refcount": "0",
1518
- "size": "44460"
1519
- },
1520
- "video": {
1521
- "refcount": "0",
1522
- "size": "18096"
1523
- }
1524
- },
1525
- "name": "Linux",
1526
- "os": "GNU/Linux",
1527
- "processor": "unknown",
1528
- "release": "3.16.0-4-amd64",
1529
- "version": "#1 SMP Debian 3.16.43-2+deb8u2 (2017-06-26)"
1530
- },
1531
- "keys": {
1532
- "ssh": {
1533
- "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local",
1534
- "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local"
1535
- }
1536
- },
1537
- "languages": {
1538
- "powershell": null,
1539
- "ruby": {
1540
- "bin_dir": "/usr/local/bin",
1541
- "gem_bin": "/usr/local/bin/gem",
1542
- "gems_dir": "/usr/local/gems",
1543
- "ruby_bin": "/usr/local/bin/ruby"
1544
- }
1545
- },
1546
- "lsb": {
1547
- "codename": "jessie",
1548
- "description": "Debian GNU/Linux 8.9 (jessie)",
1549
- "id": "Debian",
1550
- "release": "8.9"
1551
- },
1552
- "macaddress": "11:11:11:11:11:11",
1553
- "machinename": "Fauxhai",
1554
- "memory": {
1555
- "total": "1048576kB"
1556
- },
1557
- "network": {
1558
- "default_gateway": "10.0.0.1",
1559
- "default_interface": "eth0",
1560
- "interfaces": {
1561
- "eth0": {
1562
- "addresses": {
1563
- "10.0.0.2": {
1564
- "broadcast": "10.0.0.255",
1565
- "family": "inet",
1566
- "ip_scope": "RFC1918 PRIVATE",
1567
- "netmask": "255.255.255.0",
1568
- "prefixlen": "24",
1569
- "scope": "Global"
1570
- },
1571
- "11:11:11:11:11:11": {
1572
- "family": "lladdr"
1573
- },
1574
- "fe80::11:1111:1111:1111": {
1575
- "family": "inet6",
1576
- "ip_scope": "LINK LOCAL UNICAST",
1577
- "prefixlen": "64",
1578
- "scope": "Link",
1579
- "tags": []
1580
- }
1581
- },
1582
- "arp": {
1583
- "10.0.0.1": "fe:ff:ff:ff:ff:ff"
1584
- },
1585
- "encapsulation": "Ethernet",
1586
- "flags": [
1587
- "BROADCAST",
1588
- "MULTICAST",
1589
- "UP",
1590
- "LOWER_UP"
1591
- ],
1592
- "mtu": "1500",
1593
- "number": "0",
1594
- "ring_params": {},
1595
- "routes": [
1596
- {
1597
- "destination": "default",
1598
- "family": "inet",
1599
- "via": "10.0.0.1"
1600
- },
1601
- {
1602
- "destination": "10.0.0.0/24",
1603
- "family": "inet",
1604
- "proto": "kernel",
1605
- "scope": "link",
1606
- "src": "10.0.0.2"
1607
- },
1608
- {
1609
- "destination": "fe80::/64",
1610
- "family": "inet6",
1611
- "metric": "256",
1612
- "proto": "kernel"
1613
- }
1614
- ],
1615
- "state": "up",
1616
- "type": "eth"
1617
- },
1618
- "lo": {
1619
- "addresses": {
1620
- "127.0.0.1": {
1621
- "family": "inet",
1622
- "ip_scope": "LOOPBACK",
1623
- "netmask": "255.0.0.0",
1624
- "prefixlen": "8",
1625
- "scope": "Node"
1626
- },
1627
- "::1": {
1628
- "family": "inet6",
1629
- "ip_scope": "LINK LOCAL LOOPBACK",
1630
- "prefixlen": "128",
1631
- "scope": "Node",
1632
- "tags": []
1633
- }
1634
- },
1635
- "encapsulation": "Loopback",
1636
- "flags": [
1637
- "LOOPBACK",
1638
- "UP",
1639
- "LOWER_UP"
1640
- ],
1641
- "mtu": "65536",
1642
- "state": "unknown"
1643
- }
1644
- }
1645
- },
1646
- "ohai_time": 1501554470.3836412,
1647
- "os": "linux",
1648
- "os_version": "3.16.0-4-amd64",
1649
- "packages": {
1650
- "acl": {
1651
- "arch": "amd64",
1652
- "version": "2.2.52-2"
1653
- },
1654
- "acpi": {
1655
- "arch": "amd64",
1656
- "version": "1.7-1"
1657
- },
1658
- "acpi-support-base": {
1659
- "arch": "all",
1660
- "version": "0.142-6"
1661
- },
1662
- "acpid": {
1663
- "arch": "amd64",
1664
- "version": "1:2.0.23-2"
1665
- },
1666
- "adduser": {
1667
- "arch": "all",
1668
- "version": "3.113+nmu3"
1669
- },
1670
- "anacron": {
1671
- "arch": "amd64",
1672
- "version": "2.3-23"
1673
- },
1674
- "apt": {
1675
- "arch": "amd64",
1676
- "version": "1.0.9.8.4"
1677
- },
1678
- "apt-listchanges": {
1679
- "arch": "all",
1680
- "version": "2.85.13+nmu1"
1681
- },
1682
- "apt-utils": {
1683
- "arch": "amd64",
1684
- "version": "1.0.9.8.4"
1685
- },
1686
- "aptitude": {
1687
- "arch": "amd64",
1688
- "version": "0.6.11-1+b1"
1689
- },
1690
- "aptitude-common": {
1691
- "arch": "all",
1692
- "version": "0.6.11-1"
1693
- },
1694
- "aptitude-doc-en": {
1695
- "arch": "all",
1696
- "version": "0.6.11-1"
1697
- },
1698
- "at": {
1699
- "arch": "amd64",
1700
- "version": "3.1.16-1"
1701
- },
1702
- "avahi-autoipd": {
1703
- "arch": "amd64",
1704
- "version": "0.6.31-5"
1705
- },
1706
- "base-files": {
1707
- "arch": "amd64",
1708
- "version": "8+deb8u9"
1709
- },
1710
- "base-passwd": {
1711
- "arch": "amd64",
1712
- "version": "3.5.37"
1713
- },
1714
- "bash": {
1715
- "arch": "amd64",
1716
- "version": "4.3-11+deb8u1"
1717
- },
1718
- "bash-completion": {
1719
- "arch": "all",
1720
- "version": "1:2.1-4"
1721
- },
1722
- "bc": {
1723
- "arch": "amd64",
1724
- "version": "1.06.95-9"
1725
- },
1726
- "bind9-host": {
1727
- "arch": "amd64",
1728
- "version": "1:9.9.5.dfsg-9+deb8u13"
1729
- },
1730
- "bluetooth": {
1731
- "arch": "all",
1732
- "version": "5.23-2"
1733
- },
1734
- "bluez": {
1735
- "arch": "amd64",
1736
- "version": "5.23-2+b1"
1737
- },
1738
- "bsd-mailx": {
1739
- "arch": "amd64",
1740
- "version": "8.1.2-0.20141216cvs-2"
1741
- },
1742
- "bsdmainutils": {
1743
- "arch": "amd64",
1744
- "version": "9.0.6"
1745
- },
1746
- "bsdutils": {
1747
- "arch": "amd64",
1748
- "version": "1:2.25.2-6"
1749
- },
1750
- "busybox": {
1751
- "arch": "amd64",
1752
- "version": "1:1.22.0-9+deb8u1"
1753
- },
1754
- "bzip2": {
1755
- "arch": "amd64",
1756
- "version": "1.0.6-7+b3"
1757
- },
1758
- "ca-certificates": {
1759
- "arch": "all",
1760
- "version": "20141019+deb8u3"
1761
- },
1762
- "chef": {
1763
- "arch": "amd64",
1764
- "version": "13.2.20-1"
1765
- },
1766
- "console-setup": {
1767
- "arch": "all",
1768
- "version": "1.123"
1769
- },
1770
- "console-setup-linux": {
1771
- "arch": "all",
1772
- "version": "1.123"
1773
- },
1774
- "coreutils": {
1775
- "arch": "amd64",
1776
- "version": "8.23-4"
1777
- },
1778
- "cpio": {
1779
- "arch": "amd64",
1780
- "version": "2.11+dfsg-4.1+deb8u1"
1781
- },
1782
- "crda": {
1783
- "arch": "amd64",
1784
- "version": "3.13-1"
1785
- },
1786
- "cron": {
1787
- "arch": "amd64",
1788
- "version": "3.0pl1-127+deb8u1"
1789
- },
1790
- "curl": {
1791
- "arch": "amd64",
1792
- "version": "7.38.0-4+deb8u5"
1793
- },
1794
- "dash": {
1795
- "arch": "amd64",
1796
- "version": "0.5.7-4+b1"
1797
- },
1798
- "dbus": {
1799
- "arch": "amd64",
1800
- "version": "1.8.22-0+deb8u1"
1801
- },
1802
- "dc": {
1803
- "arch": "amd64",
1804
- "version": "1.06.95-9"
1805
- },
1806
- "debconf": {
1807
- "arch": "all",
1808
- "version": "1.5.56+deb8u1"
1809
- },
1810
- "debconf-i18n": {
1811
- "arch": "all",
1812
- "version": "1.5.56+deb8u1"
1813
- },
1814
- "debian-archive-keyring": {
1815
- "arch": "all",
1816
- "version": "2017.5~deb8u1"
1817
- },
1818
- "debian-faq": {
1819
- "arch": "all",
1820
- "version": "5.0.3"
1821
- },
1822
- "debianutils": {
1823
- "arch": "amd64",
1824
- "version": "4.4+b1"
1825
- },
1826
- "dictionaries-common": {
1827
- "arch": "all",
1828
- "version": "1.23.17"
1829
- },
1830
- "diffutils": {
1831
- "arch": "amd64",
1832
- "version": "1:3.3-1+b1"
1833
- },
1834
- "discover": {
1835
- "arch": "amd64",
1836
- "version": "2.1.2-7"
1837
- },
1838
- "discover-data": {
1839
- "arch": "all",
1840
- "version": "2.2013.01.11"
1841
- },
1842
- "dmidecode": {
1843
- "arch": "amd64",
1844
- "version": "2.12-3"
1845
- },
1846
- "dmsetup": {
1847
- "arch": "amd64",
1848
- "version": "2:1.02.90-2.2+deb8u1"
1849
- },
1850
- "dnsutils": {
1851
- "arch": "amd64",
1852
- "version": "1:9.9.5.dfsg-9+deb8u13"
1853
- },
1854
- "doc-debian": {
1855
- "arch": "all",
1856
- "version": "6.2"
1857
- },
1858
- "docutils-common": {
1859
- "arch": "all",
1860
- "version": "0.12+dfsg-1"
1861
- },
1862
- "docutils-doc": {
1863
- "arch": "all",
1864
- "version": "0.12+dfsg-1"
1865
- },
1866
- "dpkg": {
1867
- "arch": "amd64",
1868
- "version": "1.17.27"
1869
- },
1870
- "e2fslibs": {
1871
- "arch": "amd64",
1872
- "version": "1.42.12-2+b1"
1873
- },
1874
- "e2fsprogs": {
1875
- "arch": "amd64",
1876
- "version": "1.42.12-2+b1"
1877
- },
1878
- "eject": {
1879
- "arch": "amd64",
1880
- "version": "2.1.5+deb1+cvs20081104-13.1+deb8u1"
1881
- },
1882
- "emacsen-common": {
1883
- "arch": "all",
1884
- "version": "2.0.8"
1885
- },
1886
- "exim4": {
1887
- "arch": "all",
1888
- "version": "4.84.2-2+deb8u4"
1889
- },
1890
- "exim4-base": {
1891
- "arch": "amd64",
1892
- "version": "4.84.2-2+deb8u4"
1893
- },
1894
- "exim4-config": {
1895
- "arch": "all",
1896
- "version": "4.84.2-2+deb8u4"
1897
- },
1898
- "exim4-daemon-light": {
1899
- "arch": "amd64",
1900
- "version": "4.84.2-2+deb8u4"
1901
- },
1902
- "file": {
1903
- "arch": "amd64",
1904
- "version": "1:5.22+15-2+deb8u3"
1905
- },
1906
- "findutils": {
1907
- "arch": "amd64",
1908
- "version": "4.4.2-9+b1"
1909
- },
1910
- "fontconfig": {
1911
- "arch": "amd64",
1912
- "version": "2.11.0-6.3+deb8u1"
1913
- },
1914
- "fontconfig-config": {
1915
- "arch": "all",
1916
- "version": "2.11.0-6.3+deb8u1"
1917
- },
1918
- "fonts-dejavu-core": {
1919
- "arch": "all",
1920
- "version": "2.34-1"
1921
- },
1922
- "ftp": {
1923
- "arch": "amd64",
1924
- "version": "0.17-31"
1925
- },
1926
- "gcc-4.8-base": {
1927
- "arch": "amd64",
1928
- "version": "4.8.4-1"
1929
- },
1930
- "gcc-4.9-base": {
1931
- "arch": "amd64",
1932
- "version": "4.9.2-10"
1933
- },
1934
- "geoip-database": {
1935
- "arch": "all",
1936
- "version": "20150317-1"
1937
- },
1938
- "gettext-base": {
1939
- "arch": "amd64",
1940
- "version": "0.19.3-2"
1941
- },
1942
- "gnupg": {
1943
- "arch": "amd64",
1944
- "version": "1.4.18-7+deb8u3"
1945
- },
1946
- "gnupg-agent": {
1947
- "arch": "amd64",
1948
- "version": "2.0.26-6+deb8u1"
1949
- },
1950
- "gnupg2": {
1951
- "arch": "amd64",
1952
- "version": "2.0.26-6+deb8u1"
1953
- },
1954
- "gpgv": {
1955
- "arch": "amd64",
1956
- "version": "1.4.18-7+deb8u3"
1957
- },
1958
- "grep": {
1959
- "arch": "amd64",
1960
- "version": "2.20-4.1"
1961
- },
1962
- "groff-base": {
1963
- "arch": "amd64",
1964
- "version": "1.22.2-8"
1965
- },
1966
- "grub-common": {
1967
- "arch": "amd64",
1968
- "version": "2.02~beta2-22+deb8u1"
1969
- },
1970
- "grub-pc": {
1971
- "arch": "amd64",
1972
- "version": "2.02~beta2-22+deb8u1"
1973
- },
1974
- "grub-pc-bin": {
1975
- "arch": "amd64",
1976
- "version": "2.02~beta2-22+deb8u1"
1977
- },
1978
- "grub2-common": {
1979
- "arch": "amd64",
1980
- "version": "2.02~beta2-22+deb8u1"
1981
- },
1982
- "gzip": {
1983
- "arch": "amd64",
1984
- "version": "1.6-4"
1985
- },
1986
- "hicolor-icon-theme": {
1987
- "arch": "all",
1988
- "version": "0.13-1"
1989
- },
1990
- "host": {
1991
- "arch": "all",
1992
- "version": "1:9.9.5.dfsg-9+deb8u13"
1993
- },
1994
- "hostname": {
1995
- "arch": "amd64",
1996
- "version": "3.15"
1997
- },
1998
- "iamerican": {
1999
- "arch": "all",
2000
- "version": "3.3.02-6"
2001
- },
2002
- "ibritish": {
2003
- "arch": "all",
2004
- "version": "3.3.02-6"
2005
- },
2006
- "ienglish-common": {
2007
- "arch": "all",
2008
- "version": "3.3.02-6"
2009
- },
2010
- "ifupdown": {
2011
- "arch": "amd64",
2012
- "version": "0.7.53.1"
2013
- },
2014
- "info": {
2015
- "arch": "amd64",
2016
- "version": "5.2.0.dfsg.1-6"
2017
- },
2018
- "init": {
2019
- "arch": "amd64",
2020
- "version": "1.22"
2021
- },
2022
- "init-system-helpers": {
2023
- "arch": "all",
2024
- "version": "1.22"
2025
- },
2026
- "initramfs-tools": {
2027
- "arch": "all",
2028
- "version": "0.120+deb8u3"
2029
- },
2030
- "initscripts": {
2031
- "arch": "amd64",
2032
- "version": "2.88dsf-59"
2033
- },
2034
- "insserv": {
2035
- "arch": "amd64",
2036
- "version": "1.14.0-5"
2037
- },
2038
- "install-info": {
2039
- "arch": "amd64",
2040
- "version": "5.2.0.dfsg.1-6"
2041
- },
2042
- "installation-report": {
2043
- "arch": "all",
2044
- "version": "2.58"
2045
- },
2046
- "iproute2": {
2047
- "arch": "amd64",
2048
- "version": "3.16.0-2"
2049
- },
2050
- "iptables": {
2051
- "arch": "amd64",
2052
- "version": "1.4.21-2+b1"
2053
- },
2054
- "iputils-ping": {
2055
- "arch": "amd64",
2056
- "version": "3:20121221-5+b2"
2057
- },
2058
- "isc-dhcp-client": {
2059
- "arch": "amd64",
2060
- "version": "4.3.1-6+deb8u2"
2061
- },
2062
- "isc-dhcp-common": {
2063
- "arch": "amd64",
2064
- "version": "4.3.1-6+deb8u2"
2065
- },
2066
- "iso-codes": {
2067
- "arch": "all",
2068
- "version": "3.57-1"
2069
- },
2070
- "ispell": {
2071
- "arch": "amd64",
2072
- "version": "3.3.02-6"
2073
- },
2074
- "iw": {
2075
- "arch": "amd64",
2076
- "version": "3.17-1"
2077
- },
2078
- "kbd": {
2079
- "arch": "amd64",
2080
- "version": "1.15.5-2"
2081
- },
2082
- "keyboard-configuration": {
2083
- "arch": "all",
2084
- "version": "1.123"
2085
- },
2086
- "klibc-utils": {
2087
- "arch": "amd64",
2088
- "version": "2.0.4-2"
2089
- },
2090
- "kmod": {
2091
- "arch": "amd64",
2092
- "version": "18-3"
2093
- },
2094
- "krb5-locales": {
2095
- "arch": "all",
2096
- "version": "1.12.1+dfsg-19+deb8u2"
2097
- },
2098
- "laptop-detect": {
2099
- "arch": "amd64",
2100
- "version": "0.13.7"
2101
- },
2102
- "less": {
2103
- "arch": "amd64",
2104
- "version": "458-3"
2105
- },
2106
- "libacl1": {
2107
- "arch": "amd64",
2108
- "version": "2.2.52-2"
2109
- },
2110
- "libalgorithm-c3-perl": {
2111
- "arch": "all",
2112
- "version": "0.09-1"
2113
- },
2114
- "libapt-inst1.5": {
2115
- "arch": "amd64",
2116
- "version": "1.0.9.8.4"
2117
- },
2118
- "libapt-pkg4.12": {
2119
- "arch": "amd64",
2120
- "version": "1.0.9.8.4"
2121
- },
2122
- "libarchive-extract-perl": {
2123
- "arch": "all",
2124
- "version": "0.72-1"
2125
- },
2126
- "libasprintf0c2": {
2127
- "arch": "amd64",
2128
- "version": "0.19.3-2"
2129
- },
2130
- "libassuan0": {
2131
- "arch": "amd64",
2132
- "version": "2.1.2-2"
2133
- },
2134
- "libatk1.0-0": {
2135
- "arch": "amd64",
2136
- "version": "2.14.0-1"
2137
- },
2138
- "libatk1.0-data": {
2139
- "arch": "all",
2140
- "version": "2.14.0-1"
2141
- },
2142
- "libattr1": {
2143
- "arch": "amd64",
2144
- "version": "1:2.4.47-2"
2145
- },
2146
- "libaudit-common": {
2147
- "arch": "all",
2148
- "version": "1:2.4-1"
2149
- },
2150
- "libaudit1": {
2151
- "arch": "amd64",
2152
- "version": "1:2.4-1+b1"
2153
- },
2154
- "libauthen-sasl-perl": {
2155
- "arch": "all",
2156
- "version": "2.1600-1"
2157
- },
2158
- "libavahi-client3": {
2159
- "arch": "amd64",
2160
- "version": "0.6.31-5"
2161
- },
2162
- "libavahi-common-data": {
2163
- "arch": "amd64",
2164
- "version": "0.6.31-5"
2165
- },
2166
- "libavahi-common3": {
2167
- "arch": "amd64",
2168
- "version": "0.6.31-5"
2169
- },
2170
- "libbind9-90": {
2171
- "arch": "amd64",
2172
- "version": "1:9.9.5.dfsg-9+deb8u13"
2173
- },
2174
- "libblkid1": {
2175
- "arch": "amd64",
2176
- "version": "2.25.2-6"
2177
- },
2178
- "libboost-iostreams1.55.0": {
2179
- "arch": "amd64",
2180
- "version": "1.55.0+dfsg-3"
2181
- },
2182
- "libbsd0": {
2183
- "arch": "amd64",
2184
- "version": "0.7.0-2"
2185
- },
2186
- "libbz2-1.0": {
2187
- "arch": "amd64",
2188
- "version": "1.0.6-7+b3"
2189
- },
2190
- "libc-bin": {
2191
- "arch": "amd64",
2192
- "version": "2.19-18+deb8u10"
2193
- },
2194
- "libc6": {
2195
- "arch": "amd64",
2196
- "version": "2.19-18+deb8u10"
2197
- },
2198
- "libcairo2": {
2199
- "arch": "amd64",
2200
- "version": "1.14.0-2.1+deb8u2"
2201
- },
2202
- "libcap-ng0": {
2203
- "arch": "amd64",
2204
- "version": "0.7.4-2"
2205
- },
2206
- "libcap2": {
2207
- "arch": "amd64",
2208
- "version": "1:2.24-8"
2209
- },
2210
- "libcap2-bin": {
2211
- "arch": "amd64",
2212
- "version": "1:2.24-8"
2213
- },
2214
- "libcgi-fast-perl": {
2215
- "arch": "all",
2216
- "version": "1:2.04-1"
2217
- },
2218
- "libcgi-pm-perl": {
2219
- "arch": "all",
2220
- "version": "4.09-1"
2221
- },
2222
- "libclass-accessor-perl": {
2223
- "arch": "all",
2224
- "version": "0.34-1"
2225
- },
2226
- "libclass-c3-perl": {
2227
- "arch": "all",
2228
- "version": "0.26-1"
2229
- },
2230
- "libclass-c3-xs-perl": {
2231
- "arch": "amd64",
2232
- "version": "0.13-2+b1"
2233
- },
2234
- "libclass-isa-perl": {
2235
- "arch": "all",
2236
- "version": "0.36-5"
2237
- },
2238
- "libcomerr2": {
2239
- "arch": "amd64",
2240
- "version": "1.42.12-2+b1"
2241
- },
2242
- "libcpan-meta-perl": {
2243
- "arch": "all",
2244
- "version": "2.142690-1"
2245
- },
2246
- "libcryptsetup4": {
2247
- "arch": "amd64",
2248
- "version": "2:1.6.6-5"
2249
- },
2250
- "libcups2": {
2251
- "arch": "amd64",
2252
- "version": "1.7.5-11+deb8u1"
2253
- },
2254
- "libcurl3": {
2255
- "arch": "amd64",
2256
- "version": "7.38.0-4+deb8u5"
2257
- },
2258
- "libcurl3-gnutls": {
2259
- "arch": "amd64",
2260
- "version": "7.38.0-4+deb8u5"
2261
- },
2262
- "libcwidget3": {
2263
- "arch": "amd64",
2264
- "version": "0.5.17-2"
2265
- },
2266
- "libdaemon0": {
2267
- "arch": "amd64",
2268
- "version": "0.14-6"
2269
- },
2270
- "libdata-optlist-perl": {
2271
- "arch": "all",
2272
- "version": "0.109-1"
2273
- },
2274
- "libdata-section-perl": {
2275
- "arch": "all",
2276
- "version": "0.200006-1"
2277
- },
2278
- "libdatrie1": {
2279
- "arch": "amd64",
2280
- "version": "0.2.8-1"
2281
- },
2282
- "libdb5.3": {
2283
- "arch": "amd64",
2284
- "version": "5.3.28-9"
2285
- },
2286
- "libdbus-1-3": {
2287
- "arch": "amd64",
2288
- "version": "1.8.22-0+deb8u1"
2289
- },
2290
- "libdebconfclient0": {
2291
- "arch": "amd64",
2292
- "version": "0.192"
2293
- },
2294
- "libdevmapper1.02.1": {
2295
- "arch": "amd64",
2296
- "version": "2:1.02.90-2.2+deb8u1"
2297
- },
2298
- "libdiscover2": {
2299
- "arch": "amd64",
2300
- "version": "2.1.2-7"
2301
- },
2302
- "libdns-export100": {
2303
- "arch": "amd64",
2304
- "version": "1:9.9.5.dfsg-9+deb8u13"
2305
- },
2306
- "libdns100": {
2307
- "arch": "amd64",
2308
- "version": "1:9.9.5.dfsg-9+deb8u13"
2309
- },
2310
- "libedit2": {
2311
- "arch": "amd64",
2312
- "version": "3.1-20140620-2"
2313
- },
2314
- "libencode-locale-perl": {
2315
- "arch": "all",
2316
- "version": "1.03-1"
2317
- },
2318
- "libestr0": {
2319
- "arch": "amd64",
2320
- "version": "0.1.9-1.1"
2321
- },
2322
- "libevent-2.0-5": {
2323
- "arch": "amd64",
2324
- "version": "2.0.21-stable-2+deb8u1"
2325
- },
2326
- "libexpat1": {
2327
- "arch": "amd64",
2328
- "version": "2.1.0-6+deb8u4"
2329
- },
2330
- "libfcgi-perl": {
2331
- "arch": "amd64",
2332
- "version": "0.77-1+deb8u1"
2333
- },
2334
- "libffi6": {
2335
- "arch": "amd64",
2336
- "version": "3.1-2+deb8u1"
2337
- },
2338
- "libfile-listing-perl": {
2339
- "arch": "all",
2340
- "version": "6.04-1"
2341
- },
2342
- "libfont-afm-perl": {
2343
- "arch": "all",
2344
- "version": "1.20-1"
2345
- },
2346
- "libfontconfig1": {
2347
- "arch": "amd64",
2348
- "version": "2.11.0-6.3+deb8u1"
2349
- },
2350
- "libfreetype6": {
2351
- "arch": "amd64",
2352
- "version": "2.5.2-3+deb8u2"
2353
- },
2354
- "libfuse2": {
2355
- "arch": "amd64",
2356
- "version": "2.9.3-15+deb8u2"
2357
- },
2358
- "libgc1c2": {
2359
- "arch": "amd64",
2360
- "version": "1:7.2d-6.4"
2361
- },
2362
- "libgcc1": {
2363
- "arch": "amd64",
2364
- "version": "1:4.9.2-10"
2365
- },
2366
- "libgcrypt20": {
2367
- "arch": "amd64",
2368
- "version": "1.6.3-2+deb8u4"
2369
- },
2370
- "libgdbm3": {
2371
- "arch": "amd64",
2372
- "version": "1.8.3-13.1"
2373
- },
2374
- "libgdk-pixbuf2.0-0": {
2375
- "arch": "amd64",
2376
- "version": "2.31.1-2+deb8u5"
2377
- },
2378
- "libgdk-pixbuf2.0-common": {
2379
- "arch": "all",
2380
- "version": "2.31.1-2+deb8u5"
2381
- },
2382
- "libgeoip1": {
2383
- "arch": "amd64",
2384
- "version": "1.6.2-4"
2385
- },
2386
- "libglib2.0-0": {
2387
- "arch": "amd64",
2388
- "version": "2.42.1-1+b1"
2389
- },
2390
- "libglib2.0-data": {
2391
- "arch": "all",
2392
- "version": "2.42.1-1"
2393
- },
2394
- "libgmp10": {
2395
- "arch": "amd64",
2396
- "version": "2:6.0.0+dfsg-6"
2397
- },
2398
- "libgnutls-deb0-28": {
2399
- "arch": "amd64",
2400
- "version": "3.3.8-6+deb8u7"
2401
- },
2402
- "libgnutls-openssl27": {
2403
- "arch": "amd64",
2404
- "version": "3.3.8-6+deb8u7"
2405
- },
2406
- "libgpg-error0": {
2407
- "arch": "amd64",
2408
- "version": "1.17-3"
2409
- },
2410
- "libgpgme11": {
2411
- "arch": "amd64",
2412
- "version": "1.5.1-6"
2413
- },
2414
- "libgpm2": {
2415
- "arch": "amd64",
2416
- "version": "1.20.4-6.1+b2"
2417
- },
2418
- "libgraphite2-3": {
2419
- "arch": "amd64",
2420
- "version": "1.3.10-1~deb8u1"
2421
- },
2422
- "libgssapi-krb5-2": {
2423
- "arch": "amd64",
2424
- "version": "1.12.1+dfsg-19+deb8u2"
2425
- },
2426
- "libgtk2.0-0": {
2427
- "arch": "amd64",
2428
- "version": "2.24.25-3+deb8u2"
2429
- },
2430
- "libgtk2.0-bin": {
2431
- "arch": "amd64",
2432
- "version": "2.24.25-3+deb8u2"
2433
- },
2434
- "libgtk2.0-common": {
2435
- "arch": "all",
2436
- "version": "2.24.25-3+deb8u2"
2437
- },
2438
- "libharfbuzz0b": {
2439
- "arch": "amd64",
2440
- "version": "0.9.35-2"
2441
- },
2442
- "libhogweed2": {
2443
- "arch": "amd64",
2444
- "version": "2.7.1-5+deb8u2"
2445
- },
2446
- "libhtml-form-perl": {
2447
- "arch": "all",
2448
- "version": "6.03-1"
2449
- },
2450
- "libhtml-format-perl": {
2451
- "arch": "all",
2452
- "version": "2.11-1"
2453
- },
2454
- "libhtml-parser-perl": {
2455
- "arch": "amd64",
2456
- "version": "3.71-1+b3"
2457
- },
2458
- "libhtml-tagset-perl": {
2459
- "arch": "all",
2460
- "version": "3.20-2"
2461
- },
2462
- "libhtml-tree-perl": {
2463
- "arch": "all",
2464
- "version": "5.03-1"
2465
- },
2466
- "libhttp-cookies-perl": {
2467
- "arch": "all",
2468
- "version": "6.01-1"
2469
- },
2470
- "libhttp-daemon-perl": {
2471
- "arch": "all",
2472
- "version": "6.01-1"
2473
- },
2474
- "libhttp-date-perl": {
2475
- "arch": "all",
2476
- "version": "6.02-1"
2477
- },
2478
- "libhttp-message-perl": {
2479
- "arch": "all",
2480
- "version": "6.06-1"
2481
- },
2482
- "libhttp-negotiate-perl": {
2483
- "arch": "all",
2484
- "version": "6.00-2"
2485
- },
2486
- "libicu52": {
2487
- "arch": "amd64",
2488
- "version": "52.1-8+deb8u5"
2489
- },
2490
- "libidn11": {
2491
- "arch": "amd64",
2492
- "version": "1.29-1+deb8u2"
2493
- },
2494
- "libintl-perl": {
2495
- "arch": "all",
2496
- "version": "1.23-1+deb8u1"
2497
- },
2498
- "libio-html-perl": {
2499
- "arch": "all",
2500
- "version": "1.001-1"
2501
- },
2502
- "libio-socket-ip-perl": {
2503
- "arch": "all",
2504
- "version": "0.32-1"
2505
- },
2506
- "libio-socket-ssl-perl": {
2507
- "arch": "all",
2508
- "version": "2.002-2+deb8u2"
2509
- },
2510
- "libio-string-perl": {
2511
- "arch": "all",
2512
- "version": "1.08-3"
2513
- },
2514
- "libirs-export91": {
2515
- "arch": "amd64",
2516
- "version": "1:9.9.5.dfsg-9+deb8u13"
2517
- },
2518
- "libisc-export95": {
2519
- "arch": "amd64",
2520
- "version": "1:9.9.5.dfsg-9+deb8u13"
2521
- },
2522
- "libisc95": {
2523
- "arch": "amd64",
2524
- "version": "1:9.9.5.dfsg-9+deb8u13"
2525
- },
2526
- "libisccc90": {
2527
- "arch": "amd64",
2528
- "version": "1:9.9.5.dfsg-9+deb8u13"
2529
- },
2530
- "libisccfg-export90": {
2531
- "arch": "amd64",
2532
- "version": "1:9.9.5.dfsg-9+deb8u13"
2533
- },
2534
- "libisccfg90": {
2535
- "arch": "amd64",
2536
- "version": "1:9.9.5.dfsg-9+deb8u13"
2537
- },
2538
- "libiw30": {
2539
- "arch": "amd64",
2540
- "version": "30~pre9-8"
2541
- },
2542
- "libjasper1": {
2543
- "arch": "amd64",
2544
- "version": "1.900.1-debian1-2.4+deb8u3"
2545
- },
2546
- "libjbig0": {
2547
- "arch": "amd64",
2548
- "version": "2.1-3.1"
2549
- },
2550
- "libjpeg62-turbo": {
2551
- "arch": "amd64",
2552
- "version": "1:1.3.1-12"
2553
- },
2554
- "libjson-c2": {
2555
- "arch": "amd64",
2556
- "version": "0.11-4"
2557
- },
2558
- "libk5crypto3": {
2559
- "arch": "amd64",
2560
- "version": "1.12.1+dfsg-19+deb8u2"
2561
- },
2562
- "libkeyutils1": {
2563
- "arch": "amd64",
2564
- "version": "1.5.9-5+b1"
2565
- },
2566
- "libklibc": {
2567
- "arch": "amd64",
2568
- "version": "2.0.4-2"
2569
- },
2570
- "libkmod2": {
2571
- "arch": "amd64",
2572
- "version": "18-3"
2573
- },
2574
- "libkrb5-3": {
2575
- "arch": "amd64",
2576
- "version": "1.12.1+dfsg-19+deb8u2"
2577
- },
2578
- "libkrb5support0": {
2579
- "arch": "amd64",
2580
- "version": "1.12.1+dfsg-19+deb8u2"
2581
- },
2582
- "libksba8": {
2583
- "arch": "amd64",
2584
- "version": "1.3.2-1+deb8u1"
2585
- },
2586
- "liblcms2-2": {
2587
- "arch": "amd64",
2588
- "version": "2.6-3+deb8u1"
2589
- },
2590
- "libldap-2.4-2": {
2591
- "arch": "amd64",
2592
- "version": "2.4.40+dfsg-1+deb8u3"
2593
- },
2594
- "liblocale-gettext-perl": {
2595
- "arch": "amd64",
2596
- "version": "1.05-8+b1"
2597
- },
2598
- "liblockfile-bin": {
2599
- "arch": "amd64",
2600
- "version": "1.09-6"
2601
- },
2602
- "liblockfile1": {
2603
- "arch": "amd64",
2604
- "version": "1.09-6"
2605
- },
2606
- "liblog-message-perl": {
2607
- "arch": "all",
2608
- "version": "0.8-1"
2609
- },
2610
- "liblog-message-simple-perl": {
2611
- "arch": "all",
2612
- "version": "0.10-2"
2613
- },
2614
- "liblogging-stdlog0": {
2615
- "arch": "amd64",
2616
- "version": "1.0.4-1"
2617
- },
2618
- "liblognorm1": {
2619
- "arch": "amd64",
2620
- "version": "1.0.1-3"
2621
- },
2622
- "liblwp-mediatypes-perl": {
2623
- "arch": "all",
2624
- "version": "6.02-1"
2625
- },
2626
- "liblwp-protocol-https-perl": {
2627
- "arch": "all",
2628
- "version": "6.06-2"
2629
- },
2630
- "liblwres90": {
2631
- "arch": "amd64",
2632
- "version": "1:9.9.5.dfsg-9+deb8u13"
2633
- },
2634
- "liblzma5": {
2635
- "arch": "amd64",
2636
- "version": "5.1.1alpha+20120614-2+b3"
2637
- },
2638
- "libmagic1": {
2639
- "arch": "amd64",
2640
- "version": "1:5.22+15-2+deb8u3"
2641
- },
2642
- "libmailtools-perl": {
2643
- "arch": "all",
2644
- "version": "2.13-1"
2645
- },
2646
- "libmnl0": {
2647
- "arch": "amd64",
2648
- "version": "1.0.3-5"
2649
- },
2650
- "libmodule-build-perl": {
2651
- "arch": "all",
2652
- "version": "0.421000-2+deb8u1"
2653
- },
2654
- "libmodule-pluggable-perl": {
2655
- "arch": "all",
2656
- "version": "5.1-1"
2657
- },
2658
- "libmodule-signature-perl": {
2659
- "arch": "all",
2660
- "version": "0.73-1+deb8u2"
2661
- },
2662
- "libmount1": {
2663
- "arch": "amd64",
2664
- "version": "2.25.2-6"
2665
- },
2666
- "libmro-compat-perl": {
2667
- "arch": "all",
2668
- "version": "0.12-1"
2669
- },
2670
- "libncurses5": {
2671
- "arch": "amd64",
2672
- "version": "5.9+20140913-1+b1"
2673
- },
2674
- "libncursesw5": {
2675
- "arch": "amd64",
2676
- "version": "5.9+20140913-1+b1"
2677
- },
2678
- "libnet-http-perl": {
2679
- "arch": "all",
2680
- "version": "6.07-1"
2681
- },
2682
- "libnet-smtp-ssl-perl": {
2683
- "arch": "all",
2684
- "version": "1.01-3"
2685
- },
2686
- "libnet-ssleay-perl": {
2687
- "arch": "amd64",
2688
- "version": "1.65-1+deb8u1"
2689
- },
2690
- "libnetfilter-acct1": {
2691
- "arch": "amd64",
2692
- "version": "1.0.2-1.1"
2693
- },
2694
- "libnettle4": {
2695
- "arch": "amd64",
2696
- "version": "2.7.1-5+deb8u2"
2697
- },
2698
- "libnewt0.52": {
2699
- "arch": "amd64",
2700
- "version": "0.52.17-1+b1"
2701
- },
2702
- "libnfnetlink0": {
2703
- "arch": "amd64",
2704
- "version": "1.0.1-3"
2705
- },
2706
- "libnfsidmap2": {
2707
- "arch": "amd64",
2708
- "version": "0.25-5"
2709
- },
2710
- "libnl-3-200": {
2711
- "arch": "amd64",
2712
- "version": "3.2.24-2"
2713
- },
2714
- "libnl-genl-3-200": {
2715
- "arch": "amd64",
2716
- "version": "3.2.24-2"
2717
- },
2718
- "libp11-kit0": {
2719
- "arch": "amd64",
2720
- "version": "0.20.7-1"
2721
- },
2722
- "libpackage-constants-perl": {
2723
- "arch": "all",
2724
- "version": "0.04-1"
2725
- },
2726
- "libpam-modules": {
2727
- "arch": "amd64",
2728
- "version": "1.1.8-3.1+deb8u2+b1"
2729
- },
2730
- "libpam-modules-bin": {
2731
- "arch": "amd64",
2732
- "version": "1.1.8-3.1+deb8u2+b1"
2733
- },
2734
- "libpam-runtime": {
2735
- "arch": "all",
2736
- "version": "1.1.8-3.1+deb8u2"
2737
- },
2738
- "libpam0g": {
2739
- "arch": "amd64",
2740
- "version": "1.1.8-3.1+deb8u2+b1"
2741
- },
2742
- "libpango-1.0-0": {
2743
- "arch": "amd64",
2744
- "version": "1.36.8-3"
2745
- },
2746
- "libpangocairo-1.0-0": {
2747
- "arch": "amd64",
2748
- "version": "1.36.8-3"
2749
- },
2750
- "libpangoft2-1.0-0": {
2751
- "arch": "amd64",
2752
- "version": "1.36.8-3"
2753
- },
2754
- "libpaper-utils": {
2755
- "arch": "amd64",
2756
- "version": "1.1.24+nmu4"
2757
- },
2758
- "libpaper1": {
2759
- "arch": "amd64",
2760
- "version": "1.1.24+nmu4"
2761
- },
2762
- "libparams-util-perl": {
2763
- "arch": "amd64",
2764
- "version": "1.07-2+b1"
2765
- },
2766
- "libparse-debianchangelog-perl": {
2767
- "arch": "all",
2768
- "version": "1.2.0-1.1"
2769
- },
2770
- "libpci3": {
2771
- "arch": "amd64",
2772
- "version": "1:3.2.1-3"
2773
- },
2774
- "libpcre3": {
2775
- "arch": "amd64",
2776
- "version": "2:8.35-3.3+deb8u4"
2777
- },
2778
- "libpcsclite1": {
2779
- "arch": "amd64",
2780
- "version": "1.8.13-1+deb8u1"
2781
- },
2782
- "libperl4-corelibs-perl": {
2783
- "arch": "all",
2784
- "version": "0.003-1"
2785
- },
2786
- "libpipeline1": {
2787
- "arch": "amd64",
2788
- "version": "1.4.0-1"
2789
- },
2790
- "libpixman-1-0": {
2791
- "arch": "amd64",
2792
- "version": "0.32.6-3"
2793
- },
2794
- "libpng12-0": {
2795
- "arch": "amd64",
2796
- "version": "1.2.50-2+deb8u3"
2797
- },
2798
- "libpod-latex-perl": {
2799
- "arch": "all",
2800
- "version": "0.61-1"
2801
- },
2802
- "libpod-readme-perl": {
2803
- "arch": "all",
2804
- "version": "0.11-1"
2805
- },
2806
- "libpopt0": {
2807
- "arch": "amd64",
2808
- "version": "1.16-10"
2809
- },
2810
- "libprocps3": {
2811
- "arch": "amd64",
2812
- "version": "2:3.3.9-9"
2813
- },
2814
- "libpsl0": {
2815
- "arch": "amd64",
2816
- "version": "0.5.1-1"
2817
- },
2818
- "libpth20": {
2819
- "arch": "amd64",
2820
- "version": "2.0.7-20"
2821
- },
2822
- "libpython-stdlib": {
2823
- "arch": "amd64",
2824
- "version": "2.7.9-1"
2825
- },
2826
- "libpython2.7-minimal": {
2827
- "arch": "amd64",
2828
- "version": "2.7.9-2+deb8u1"
2829
- },
2830
- "libpython2.7-stdlib": {
2831
- "arch": "amd64",
2832
- "version": "2.7.9-2+deb8u1"
2833
- },
2834
- "libreadline6": {
2835
- "arch": "amd64",
2836
- "version": "6.3-8+b3"
2837
- },
2838
- "libregexp-common-perl": {
2839
- "arch": "all",
2840
- "version": "2013031301-1"
2841
- },
2842
- "librtmp1": {
2843
- "arch": "amd64",
2844
- "version": "2.4+20150115.gita107cef-1+deb8u1"
2845
- },
2846
- "libsasl2-2": {
2847
- "arch": "amd64",
2848
- "version": "2.1.26.dfsg1-13+deb8u1"
2849
- },
2850
- "libsasl2-modules": {
2851
- "arch": "amd64",
2852
- "version": "2.1.26.dfsg1-13+deb8u1"
2853
- },
2854
- "libsasl2-modules-db": {
2855
- "arch": "amd64",
2856
- "version": "2.1.26.dfsg1-13+deb8u1"
2857
- },
2858
- "libselinux1": {
2859
- "arch": "amd64",
2860
- "version": "2.3-2"
2861
- },
2862
- "libsemanage-common": {
2863
- "arch": "all",
2864
- "version": "2.3-1"
2865
- },
2866
- "libsemanage1": {
2867
- "arch": "amd64",
2868
- "version": "2.3-1+b1"
2869
- },
2870
- "libsepol1": {
2871
- "arch": "amd64",
2872
- "version": "2.3-2"
2873
- },
2874
- "libsigc++-2.0-0c2a": {
2875
- "arch": "amd64",
2876
- "version": "2.4.0-1"
2877
- },
2878
- "libsigsegv2": {
2879
- "arch": "amd64",
2880
- "version": "2.10-4+b1"
2881
- },
2882
- "libslang2": {
2883
- "arch": "amd64",
2884
- "version": "2.3.0-2"
2885
- },
2886
- "libsmartcols1": {
2887
- "arch": "amd64",
2888
- "version": "2.25.2-6"
2889
- },
2890
- "libsoftware-license-perl": {
2891
- "arch": "all",
2892
- "version": "0.103010-3"
2893
- },
2894
- "libsqlite3-0": {
2895
- "arch": "amd64",
2896
- "version": "3.8.7.1-1+deb8u2"
2897
- },
2898
- "libss2": {
2899
- "arch": "amd64",
2900
- "version": "1.42.12-2+b1"
2901
- },
2902
- "libssh2-1": {
2903
- "arch": "amd64",
2904
- "version": "1.4.3-4.1+deb8u1"
2905
- },
2906
- "libssl1.0.0": {
2907
- "arch": "amd64",
2908
- "version": "1.0.1t-1+deb8u6"
2909
- },
2910
- "libstdc++6": {
2911
- "arch": "amd64",
2912
- "version": "4.9.2-10"
2913
- },
2914
- "libsub-exporter-perl": {
2915
- "arch": "all",
2916
- "version": "0.986-1"
2917
- },
2918
- "libsub-install-perl": {
2919
- "arch": "all",
2920
- "version": "0.928-1"
2921
- },
2922
- "libsub-name-perl": {
2923
- "arch": "amd64",
2924
- "version": "0.12-1"
2925
- },
2926
- "libswitch-perl": {
2927
- "arch": "all",
2928
- "version": "2.17-2"
2929
- },
2930
- "libsystemd0": {
2931
- "arch": "amd64",
2932
- "version": "215-17+deb8u7"
2933
- },
2934
- "libtasn1-6": {
2935
- "arch": "amd64",
2936
- "version": "4.2-3+deb8u3"
2937
- },
2938
- "libterm-ui-perl": {
2939
- "arch": "all",
2940
- "version": "0.42-1"
2941
- },
2942
- "libtext-charwidth-perl": {
2943
- "arch": "amd64",
2944
- "version": "0.04-7+b3"
2945
- },
2946
- "libtext-iconv-perl": {
2947
- "arch": "amd64",
2948
- "version": "1.7-5+b2"
2949
- },
2950
- "libtext-soundex-perl": {
2951
- "arch": "amd64",
2952
- "version": "3.4-1+b2"
2953
- },
2954
- "libtext-template-perl": {
2955
- "arch": "all",
2956
- "version": "1.46-1"
2957
- },
2958
- "libtext-unidecode-perl": {
2959
- "arch": "all",
2960
- "version": "1.22-1"
2961
- },
2962
- "libtext-wrapi18n-perl": {
2963
- "arch": "all",
2964
- "version": "0.06-7"
2965
- },
2966
- "libthai-data": {
2967
- "arch": "all",
2968
- "version": "0.1.21-1"
2969
- },
2970
- "libthai0": {
2971
- "arch": "amd64",
2972
- "version": "0.1.21-1"
2973
- },
2974
- "libtiff5": {
2975
- "arch": "amd64",
2976
- "version": "4.0.3-12.3+deb8u4"
2977
- },
2978
- "libtimedate-perl": {
2979
- "arch": "all",
2980
- "version": "2.3000-2"
2981
- },
2982
- "libtinfo5": {
2983
- "arch": "amd64",
2984
- "version": "5.9+20140913-1+b1"
2985
- },
2986
- "libtirpc1": {
2987
- "arch": "amd64",
2988
- "version": "0.2.5-1+deb8u1"
2989
- },
2990
- "libtokyocabinet9": {
2991
- "arch": "amd64",
2992
- "version": "1.4.48-3"
2993
- },
2994
- "libudev1": {
2995
- "arch": "amd64",
2996
- "version": "215-17+deb8u7"
2997
- },
2998
- "liburi-perl": {
2999
- "arch": "all",
3000
- "version": "1.64-1"
3001
- },
3002
- "libusb-0.1-4": {
3003
- "arch": "amd64",
3004
- "version": "2:0.1.12-25"
3005
- },
3006
- "libusb-1.0-0": {
3007
- "arch": "amd64",
3008
- "version": "2:1.0.19-1"
3009
- },
3010
- "libustr-1.0-1": {
3011
- "arch": "amd64",
3012
- "version": "1.0.4-3+b2"
3013
- },
3014
- "libuuid-perl": {
3015
- "arch": "amd64",
3016
- "version": "0.05-1+b1"
3017
- },
3018
- "libuuid1": {
3019
- "arch": "amd64",
3020
- "version": "2.25.2-6"
3021
- },
3022
- "libwebp5": {
3023
- "arch": "amd64",
3024
- "version": "0.4.1-1.2+b2"
3025
- },
3026
- "libwebpdemux1": {
3027
- "arch": "amd64",
3028
- "version": "0.4.1-1.2+b2"
3029
- },
3030
- "libwebpmux1": {
3031
- "arch": "amd64",
3032
- "version": "0.4.1-1.2+b2"
3033
- },
3034
- "libwrap0": {
3035
- "arch": "amd64",
3036
- "version": "7.6.q-25"
3037
- },
3038
- "libwww-perl": {
3039
- "arch": "all",
3040
- "version": "6.08-1"
3041
- },
3042
- "libwww-robotrules-perl": {
3043
- "arch": "all",
3044
- "version": "6.01-1"
3045
- },
3046
- "libx11-6": {
3047
- "arch": "amd64",
3048
- "version": "2:1.6.2-3"
3049
- },
3050
- "libx11-data": {
3051
- "arch": "all",
3052
- "version": "2:1.6.2-3"
3053
- },
3054
- "libxapian22": {
3055
- "arch": "amd64",
3056
- "version": "1.2.19-1+deb8u1"
3057
- },
3058
- "libxau6": {
3059
- "arch": "amd64",
3060
- "version": "1:1.0.8-1"
3061
- },
3062
- "libxcb-render0": {
3063
- "arch": "amd64",
3064
- "version": "1.10-3+b1"
3065
- },
3066
- "libxcb-shm0": {
3067
- "arch": "amd64",
3068
- "version": "1.10-3+b1"
3069
- },
3070
- "libxcb1": {
3071
- "arch": "amd64",
3072
- "version": "1.10-3+b1"
3073
- },
3074
- "libxcomposite1": {
3075
- "arch": "amd64",
3076
- "version": "1:0.4.4-1"
3077
- },
3078
- "libxcursor1": {
3079
- "arch": "amd64",
3080
- "version": "1:1.1.14-1+b1"
3081
- },
3082
- "libxdamage1": {
3083
- "arch": "amd64",
3084
- "version": "1:1.1.4-2+b1"
3085
- },
3086
- "libxdmcp6": {
3087
- "arch": "amd64",
3088
- "version": "1:1.1.1-1+b1"
3089
- },
3090
- "libxext6": {
3091
- "arch": "amd64",
3092
- "version": "2:1.3.3-1"
3093
- },
3094
- "libxfixes3": {
3095
- "arch": "amd64",
3096
- "version": "1:5.0.1-2+b2"
3097
- },
3098
- "libxi6": {
3099
- "arch": "amd64",
3100
- "version": "2:1.7.4-1+b2"
3101
- },
3102
- "libxinerama1": {
3103
- "arch": "amd64",
3104
- "version": "2:1.1.3-1+b1"
3105
- },
3106
- "libxml-libxml-perl": {
3107
- "arch": "amd64",
3108
- "version": "2.0116+dfsg-1+deb8u1"
3109
- },
3110
- "libxml-namespacesupport-perl": {
3111
- "arch": "all",
3112
- "version": "1.11-1"
3113
- },
3114
- "libxml-parser-perl": {
3115
- "arch": "amd64",
3116
- "version": "2.41-3"
3117
- },
3118
- "libxml-sax-base-perl": {
3119
- "arch": "all",
3120
- "version": "1.07-1"
3121
- },
3122
- "libxml-sax-expat-perl": {
3123
- "arch": "all",
3124
- "version": "0.40-2"
3125
- },
3126
- "libxml-sax-perl": {
3127
- "arch": "all",
3128
- "version": "0.99+dfsg-2"
3129
- },
3130
- "libxml2": {
3131
- "arch": "amd64",
3132
- "version": "2.9.1+dfsg1-5+deb8u4"
3133
- },
3134
- "libxmuu1": {
3135
- "arch": "amd64",
3136
- "version": "2:1.1.2-1"
3137
- },
3138
- "libxrandr2": {
3139
- "arch": "amd64",
3140
- "version": "2:1.4.2-1+b1"
3141
- },
3142
- "libxrender1": {
3143
- "arch": "amd64",
3144
- "version": "1:0.9.8-1+b1"
3145
- },
3146
- "libxtables10": {
3147
- "arch": "amd64",
3148
- "version": "1.4.21-2+b1"
3149
- },
3150
- "linux-base": {
3151
- "arch": "all",
3152
- "version": "3.5"
3153
- },
3154
- "linux-image-3.16.0-4-amd64": {
3155
- "arch": "amd64",
3156
- "version": "3.16.43-2+deb8u2"
3157
- },
3158
- "linux-image-amd64": {
3159
- "arch": "amd64",
3160
- "version": "3.16+63"
3161
- },
3162
- "locales": {
3163
- "arch": "all",
3164
- "version": "2.19-18+deb8u10"
3165
- },
3166
- "login": {
3167
- "arch": "amd64",
3168
- "version": "1:4.2-3+deb8u4"
3169
- },
3170
- "logrotate": {
3171
- "arch": "amd64",
3172
- "version": "3.8.7-1+b1"
3173
- },
3174
- "lsb-base": {
3175
- "arch": "all",
3176
- "version": "4.1+Debian13+nmu1"
3177
- },
3178
- "lsb-release": {
3179
- "arch": "all",
3180
- "version": "4.1+Debian13+nmu1"
3181
- },
3182
- "lsof": {
3183
- "arch": "amd64",
3184
- "version": "4.86+dfsg-1"
3185
- },
3186
- "m4": {
3187
- "arch": "amd64",
3188
- "version": "1.4.17-4"
3189
- },
3190
- "man-db": {
3191
- "arch": "amd64",
3192
- "version": "2.7.0.2-5"
3193
- },
3194
- "manpages": {
3195
- "arch": "all",
3196
- "version": "3.74-1"
3197
- },
3198
- "mawk": {
3199
- "arch": "amd64",
3200
- "version": "1.3.3-17"
3201
- },
3202
- "mime-support": {
3203
- "arch": "all",
3204
- "version": "3.58"
3205
- },
3206
- "mlocate": {
3207
- "arch": "amd64",
3208
- "version": "0.26-1"
3209
- },
3210
- "mount": {
3211
- "arch": "amd64",
3212
- "version": "2.25.2-6"
3213
- },
3214
- "multiarch-support": {
3215
- "arch": "amd64",
3216
- "version": "2.19-18+deb8u10"
3217
- },
3218
- "mutt": {
3219
- "arch": "amd64",
3220
- "version": "1.5.23-3"
3221
- },
3222
- "nano": {
3223
- "arch": "amd64",
3224
- "version": "2.2.6-3"
3225
- },
3226
- "ncurses-base": {
3227
- "arch": "all",
3228
- "version": "5.9+20140913-1"
3229
- },
3230
- "ncurses-bin": {
3231
- "arch": "amd64",
3232
- "version": "5.9+20140913-1+b1"
3233
- },
3234
- "ncurses-term": {
3235
- "arch": "all",
3236
- "version": "5.9+20140913-1"
3237
- },
3238
- "net-tools": {
3239
- "arch": "amd64",
3240
- "version": "1.60-26+b1"
3241
- },
3242
- "netbase": {
3243
- "arch": "all",
3244
- "version": "5.3"
3245
- },
3246
- "netcat-traditional": {
3247
- "arch": "amd64",
3248
- "version": "1.10-41"
3249
- },
3250
- "nfacct": {
3251
- "arch": "amd64",
3252
- "version": "1.0.1-1.1"
3253
- },
3254
- "nfs-common": {
3255
- "arch": "amd64",
3256
- "version": "1:1.2.8-9"
3257
- },
3258
- "openssh-client": {
3259
- "arch": "amd64",
3260
- "version": "1:6.7p1-5+deb8u3"
3261
- },
3262
- "openssh-server": {
3263
- "arch": "amd64",
3264
- "version": "1:6.7p1-5+deb8u3"
3265
- },
3266
- "openssh-sftp-server": {
3267
- "arch": "amd64",
3268
- "version": "1:6.7p1-5+deb8u3"
3269
- },
3270
- "openssl": {
3271
- "arch": "amd64",
3272
- "version": "1.0.1t-1+deb8u6"
3273
- },
3274
- "os-prober": {
3275
- "arch": "amd64",
3276
- "version": "1.65+deb8u1"
3277
- },
3278
- "passwd": {
3279
- "arch": "amd64",
3280
- "version": "1:4.2-3+deb8u4"
3281
- },
3282
- "patch": {
3283
- "arch": "amd64",
3284
- "version": "2.7.5-1"
3285
- },
3286
- "pciutils": {
3287
- "arch": "amd64",
3288
- "version": "1:3.2.1-3"
3289
- },
3290
- "perl": {
3291
- "arch": "amd64",
3292
- "version": "5.20.2-3+deb8u8"
3293
- },
3294
- "perl-base": {
3295
- "arch": "amd64",
3296
- "version": "5.20.2-3+deb8u8"
3297
- },
3298
- "perl-modules": {
3299
- "arch": "all",
3300
- "version": "5.20.2-3+deb8u8"
3301
- },
3302
- "pinentry-gtk2": {
3303
- "arch": "amd64",
3304
- "version": "0.8.3-2"
3305
- },
3306
- "popularity-contest": {
3307
- "arch": "all",
3308
- "version": "1.61"
3309
- },
3310
- "powertop": {
3311
- "arch": "amd64",
3312
- "version": "2.6.1-1"
3313
- },
3314
- "procmail": {
3315
- "arch": "amd64",
3316
- "version": "3.22-24"
3317
- },
3318
- "procps": {
3319
- "arch": "amd64",
3320
- "version": "2:3.3.9-9"
3321
- },
3322
- "psmisc": {
3323
- "arch": "amd64",
3324
- "version": "22.21-2"
3325
- },
3326
- "python": {
3327
- "arch": "amd64",
3328
- "version": "2.7.9-1"
3329
- },
3330
- "python-apt": {
3331
- "arch": "amd64",
3332
- "version": "0.9.3.12"
3333
- },
3334
- "python-apt-common": {
3335
- "arch": "all",
3336
- "version": "0.9.3.12"
3337
- },
3338
- "python-chardet": {
3339
- "arch": "all",
3340
- "version": "2.3.0-1"
3341
- },
3342
- "python-debian": {
3343
- "arch": "all",
3344
- "version": "0.1.27"
3345
- },
3346
- "python-debianbts": {
3347
- "arch": "all",
3348
- "version": "1.12"
3349
- },
3350
- "python-defusedxml": {
3351
- "arch": "all",
3352
- "version": "0.4.1-2"
3353
- },
3354
- "python-docutils": {
3355
- "arch": "all",
3356
- "version": "0.12+dfsg-1"
3357
- },
3358
- "python-minimal": {
3359
- "arch": "amd64",
3360
- "version": "2.7.9-1"
3361
- },
3362
- "python-pil": {
3363
- "arch": "amd64",
3364
- "version": "2.6.1-2+deb8u3"
3365
- },
3366
- "python-pkg-resources": {
3367
- "arch": "all",
3368
- "version": "5.5.1-1"
3369
- },
3370
- "python-pygments": {
3371
- "arch": "all",
3372
- "version": "2.0.1+dfsg-1.1+deb8u1"
3373
- },
3374
- "python-reportbug": {
3375
- "arch": "all",
3376
- "version": "6.6.3"
3377
- },
3378
- "python-roman": {
3379
- "arch": "all",
3380
- "version": "2.0.0-1"
3381
- },
3382
- "python-six": {
3383
- "arch": "all",
3384
- "version": "1.8.0-1"
3385
- },
3386
- "python-soappy": {
3387
- "arch": "all",
3388
- "version": "0.12.22-1"
3389
- },
3390
- "python-support": {
3391
- "arch": "all",
3392
- "version": "1.0.15"
3393
- },
3394
- "python-wstools": {
3395
- "arch": "all",
3396
- "version": "0.4.3-2"
3397
- },
3398
- "python2.7": {
3399
- "arch": "amd64",
3400
- "version": "2.7.9-2+deb8u1"
3401
- },
3402
- "python2.7-minimal": {
3403
- "arch": "amd64",
3404
- "version": "2.7.9-2+deb8u1"
3405
- },
3406
- "readline-common": {
3407
- "arch": "all",
3408
- "version": "6.3-8"
3409
- },
3410
- "rename": {
3411
- "arch": "all",
3412
- "version": "0.20-3"
3413
- },
3414
- "reportbug": {
3415
- "arch": "all",
3416
- "version": "6.6.3"
3417
- },
3418
- "rpcbind": {
3419
- "arch": "amd64",
3420
- "version": "0.2.1-6+deb8u2"
3421
- },
3422
- "rsyslog": {
3423
- "arch": "amd64",
3424
- "version": "8.4.2-1+deb8u2"
3425
- },
3426
- "sed": {
3427
- "arch": "amd64",
3428
- "version": "4.2.2-4+deb8u1"
3429
- },
3430
- "sensible-utils": {
3431
- "arch": "all",
3432
- "version": "0.0.9"
3433
- },
3434
- "sgml-base": {
3435
- "arch": "all",
3436
- "version": "1.26+nmu4"
3437
- },
3438
- "shared-mime-info": {
3439
- "arch": "amd64",
3440
- "version": "1.3-1"
3441
- },
3442
- "startpar": {
3443
- "arch": "amd64",
3444
- "version": "0.59-3"
3445
- },
3446
- "systemd": {
3447
- "arch": "amd64",
3448
- "version": "215-17+deb8u7"
3449
- },
3450
- "systemd-sysv": {
3451
- "arch": "amd64",
3452
- "version": "215-17+deb8u7"
3453
- },
3454
- "sysv-rc": {
3455
- "arch": "all",
3456
- "version": "2.88dsf-59"
3457
- },
3458
- "sysvinit-utils": {
3459
- "arch": "amd64",
3460
- "version": "2.88dsf-59"
3461
- },
3462
- "tar": {
3463
- "arch": "amd64",
3464
- "version": "1.27.1-2+deb8u1"
3465
- },
3466
- "task-english": {
3467
- "arch": "all",
3468
- "version": "3.31+deb8u1"
3469
- },
3470
- "task-laptop": {
3471
- "arch": "all",
3472
- "version": "3.31+deb8u1"
3473
- },
3474
- "task-ssh-server": {
3475
- "arch": "all",
3476
- "version": "3.31+deb8u1"
3477
- },
3478
- "tasksel": {
3479
- "arch": "all",
3480
- "version": "3.31+deb8u1"
3481
- },
3482
- "tasksel-data": {
3483
- "arch": "all",
3484
- "version": "3.31+deb8u1"
3485
- },
3486
- "tcpd": {
3487
- "arch": "amd64",
3488
- "version": "7.6.q-25"
3489
- },
3490
- "telnet": {
3491
- "arch": "amd64",
3492
- "version": "0.17-36"
3493
- },
3494
- "texinfo": {
3495
- "arch": "amd64",
3496
- "version": "5.2.0.dfsg.1-6"
3497
- },
3498
- "time": {
3499
- "arch": "amd64",
3500
- "version": "1.7-25"
3501
- },
3502
- "traceroute": {
3503
- "arch": "amd64",
3504
- "version": "1:2.0.20-2+b1"
3505
- },
3506
- "tzdata": {
3507
- "arch": "all",
3508
- "version": "2017b-0+deb8u1"
3509
- },
3510
- "ucf": {
3511
- "arch": "all",
3512
- "version": "3.0030"
3513
- },
3514
- "udev": {
3515
- "arch": "amd64",
3516
- "version": "215-17+deb8u7"
3517
- },
3518
- "usbutils": {
3519
- "arch": "amd64",
3520
- "version": "1:007-2"
3521
- },
3522
- "util-linux": {
3523
- "arch": "amd64",
3524
- "version": "2.25.2-6"
3525
- },
3526
- "util-linux-locales": {
3527
- "arch": "all",
3528
- "version": "2.25.2-6"
3529
- },
3530
- "vim-common": {
3531
- "arch": "amd64",
3532
- "version": "2:7.4.488-7+deb8u3"
3533
- },
3534
- "vim-tiny": {
3535
- "arch": "amd64",
3536
- "version": "2:7.4.488-7+deb8u3"
3537
- },
3538
- "w3m": {
3539
- "arch": "amd64",
3540
- "version": "0.5.3-19+deb8u2"
3541
- },
3542
- "wamerican": {
3543
- "arch": "all",
3544
- "version": "7.1-1"
3545
- },
3546
- "wget": {
3547
- "arch": "amd64",
3548
- "version": "1.16-1+deb8u2"
3549
- },
3550
- "whiptail": {
3551
- "arch": "amd64",
3552
- "version": "0.52.17-1+b1"
3553
- },
3554
- "whois": {
3555
- "arch": "amd64",
3556
- "version": "5.2.7"
3557
- },
3558
- "wireless-regdb": {
3559
- "arch": "all",
3560
- "version": "2016.06.10-1~deb8u1"
3561
- },
3562
- "wireless-tools": {
3563
- "arch": "amd64",
3564
- "version": "30~pre9-8"
3565
- },
3566
- "wpasupplicant": {
3567
- "arch": "amd64",
3568
- "version": "2.3-1+deb8u4"
3569
- },
3570
- "xauth": {
3571
- "arch": "amd64",
3572
- "version": "1:1.0.9-1"
3573
- },
3574
- "xdg-user-dirs": {
3575
- "arch": "amd64",
3576
- "version": "0.15-2"
3577
- },
3578
- "xkb-data": {
3579
- "arch": "all",
3580
- "version": "2.12-1"
3581
- },
3582
- "xml-core": {
3583
- "arch": "all",
3584
- "version": "0.13+nmu2"
3585
- },
3586
- "xz-utils": {
3587
- "arch": "amd64",
3588
- "version": "5.1.1alpha+20120614-2+b3"
3589
- },
3590
- "zlib1g": {
3591
- "arch": "amd64",
3592
- "version": "1:1.2.8.dfsg-2+b1"
3593
- }
3594
- },
3595
- "platform": "debian",
3596
- "platform_family": "debian",
3597
- "platform_version": "8.9",
3598
- "root_group": "root",
3599
- "shard_seed": 101094353,
3600
- "shells": [
3601
- "/bin/sh",
3602
- "/bin/dash",
3603
- "/bin/bash",
3604
- "/bin/rbash"
3605
- ],
3606
- "time": {
3607
- "timezone": "GMT"
3608
- },
3609
- "uptime": "30 days 15 hours 07 minutes 30 seconds",
3610
- "uptime_seconds": 2646450,
3611
- "virtualization": {
3612
- "systems": {}
3613
- }
3614
- }