fauxhai 5.0.0 → 5.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0b8d663e94c02a869eec4b51d28c72e93228330e
4
- data.tar.gz: 4dd4ca11d9cd5be74b1dd76f24cb9e55103b91e4
3
+ metadata.gz: d3e4f15e453f0590ded22ec1c8f36fa39888db24
4
+ data.tar.gz: 33a40c41c1ae364a64b9d356af2b9dcbc29adc6d
5
5
  SHA512:
6
- metadata.gz: 3cc24dac4c9d312ef1af52227375b147a90bf7eccf42ee523a4f1438d7646425b0791d921a7ac2067583d43d5257a781b70d56ac876cec180eaf15e2773a769e
7
- data.tar.gz: 446e5b6c2e11a7177dbcea765a96749bc76af5321b8b0cd15efd45905cf42752263590a2af4112809f275fd3dbd984a8f7333cc7774a709a013477345bd789c0
6
+ metadata.gz: 1ebec6e2994e85e01438fae664eb3a28edddc32105ffd628fa072c66a2bcfd07c79677656b5efe04efba3c1ac028303705686e005a4cdbbe363f10f20cc2861f
7
+ data.tar.gz: 4fab3b75be996f6bb50170eaee75384090141818b51abf207677747d4287a68a3081d93ef8b22a1e98c7ebc75cad5e483a9a19184038cfe7ec0d850ed83addb5
@@ -1,6 +1,7 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  sudo: false
4
+ dist: trusty
4
5
 
5
6
  rvm:
6
7
  - 2.2.7
@@ -1,5 +1,22 @@
1
1
  # Fauxhai Changelog
2
2
 
3
+ ## v5.1.0 (2017-06-20)
4
+
5
+ - Added new platform data:
6
+
7
+ - `Oracle Linux` 5.11, 6.9, 7.3
8
+ - `Debian` 9.0
9
+ - `DragonflyBSD` 4.8-RELEASE
10
+
11
+ - Platform versions updated for Chef 13:
12
+
13
+ - `Oracle Linux` 5.10, 6.8, 7.2
14
+ - `SUSE Enterprise Linux` 12.1, 12.2
15
+
16
+ - Newly deprecated platform versions:
17
+
18
+ - `DragonflyBSD` 4.2-RELEASE
19
+
3
20
  ## v5.0.0 (2017-06-12)
4
21
 
5
22
  - Added new platform data:
@@ -47,10 +47,11 @@ This file lists each platform known to Fauxhai and the available versions for ea
47
47
  - 7.11
48
48
  - 8.7
49
49
  - 8.8
50
+ - 9.0
50
51
 
51
52
  ### dragonfly4
52
53
 
53
- - 4.2-RELEASE
54
+ - 4.8-RELEASE
54
55
 
55
56
  ### fedora
56
57
 
@@ -101,8 +102,11 @@ This file lists each platform known to Fauxhai and the available versions for ea
101
102
  ### oracle
102
103
 
103
104
  - 5.10
105
+ - 5.11
104
106
  - 6.8
107
+ - 6.9
105
108
  - 7.2
109
+ - 7.3
106
110
 
107
111
  ### raspbian
108
112
 
data/README.md CHANGED
@@ -19,7 +19,7 @@ describe 'awesome_cookbook::default' do
19
19
  end
20
20
  ```
21
21
 
22
- Alternatively, you can pull "real" ohai data from an existing server:
22
+ Alternatively, you can pull "real" Ohai data from an existing server:
23
23
 
24
24
  ```ruby
25
25
  require 'chefspec'
@@ -57,7 +57,7 @@ Fauxhai provides a bunch of default attributes so that you don't need to mock ou
57
57
 
58
58
  ### Overriding
59
59
 
60
- `Fauxhai.mock` will also accept a block with override attributes that are merged with all the default attributes. For example, the default Ubutnu 12.04 mock uses `Ruby 1.9.3`. Maybe your system is using `ree`, and you want to verify that the cookbooks work with that data as well:
60
+ `Fauxhai.mock` will also accept a block with override attributes that are merged with all the default attributes. For example, the default Ubuntu 12.04 mock uses `Ruby 1.9.3`. Maybe your system is using `ree`, and you want to verify that the cookbooks work with that data as well:
61
61
 
62
62
  ```ruby
63
63
  require 'chefspec'
@@ -76,15 +76,15 @@ describe 'awesome_cookbook::default' do
76
76
  end
77
77
  ```
78
78
 
79
- The `node` block variable allows you to set any Ohai attribute on the mock that you want. This provides an easy way to manage your environments. If you find that you are overridding attributes like OS or platform, you should see the section on Contributing.
79
+ The `node` block variable allows you to set any Ohai attribute on the mock that you want. This provides an easy way to manage your environments. If you find that you are overriding attributes like OS or platform, you should see the section on Contributing.
80
80
 
81
81
  ### Fetching
82
82
 
83
- Alternatively, if you do not want to mock the data, Fauxhai provides a `fetch` mechanism for collecting "real" ohai data from a remote server or local file. Maybe you want to test against the fully-replicated environment for a front-facing server in your pool. Just pass in the `url` option instead of a `platform`:
83
+ Alternatively, if you do not want to mock the data, Fauxhai provides a `fetch` mechanism for collecting "real" Ohai data from a remote server or local file. Maybe you want to test against the fully-replicated environment for a front-facing server in your pool. Just pass in the `url` option instead of a `platform`:
84
84
 
85
85
  The `fetch` method supports all the same options as the Net-SSH command, such as `:user`, `:password`, `:key_file`, etc.
86
86
 
87
- The `fetch` method will cache the JSON file in a temporary path on your local machine. Similar to gems like VCR, this allows fauxhai to use the cached copy, making your test suite run faster. You can optionally force a cache miss by passing the `:force_cache_miss => true` option to the `fetch` initializer. **Because this is real data, there may be a security concern. Secure your laptop accordingly.**
87
+ The `fetch` method will cache the JSON file in a temporary path on your local machine. Similar to gems like VCR, this allows Fauxhai to use the cached copy, making your test suite run faster. You can optionally force a cache miss by passing the `:force_cache_miss => true` option to the `fetch` initializer. **Because this is real data, there may be a security concern. Secure your laptop accordingly.**
88
88
 
89
89
  ```ruby
90
90
  require 'chefspec'
@@ -101,7 +101,7 @@ describe 'awesome_cookbook::default' do
101
101
  end
102
102
  ```
103
103
 
104
- This will ssh into the machine (you must have authorization to run `sudo ohai` on that machine), download a copy of the ohai output, and optionally cache that data inside the test directory (speeding up future tests).
104
+ This will ssh into the machine (you must have authorization to run `sudo ohai` on that machine), download a copy of the Ohai output, and optionally cache that data inside the test directory (speeding up future tests).
105
105
 
106
106
  ### Overriding + Fetching
107
107
 
@@ -126,7 +126,7 @@ end
126
126
 
127
127
  ### Fixturing
128
128
 
129
- If you want to use fauxhai as "fixture" data, you can store real JSON in your project and use the `:path` option:
129
+ If you want to use Fauxhai as "fixture" data, you can store real JSON in your project and use the `:path` option:
130
130
 
131
131
  ```ruby
132
132
  require 'chefspec'
@@ -156,7 +156,7 @@ end
156
156
 
157
157
  ### Disabling Fetching from Github
158
158
 
159
- On environments that does not have access to the internet, you can disable fetching fauxhai data from github as follow:
159
+ On environments that does not have access to the internet, you can disable fetching Fauxhai data from GitHub as follow:
160
160
 
161
161
  ```ruby
162
162
  require 'chefspec'
@@ -170,7 +170,7 @@ end
170
170
 
171
171
  ## Testing Multiple Versions
172
172
 
173
- It's a common use case to test multiple version of the same operating system. Here's a simple example to get your started. This is more rspec-related that fauxhai related, but here ya go:
173
+ It's a common use case to test multiple version of the same operating system. Here's a simple example to get your started. This is more rspec-related that Fauxhai related, but here ya go:
174
174
 
175
175
  ```ruby
176
176
  require 'chefspec'
@@ -0,0 +1,3153 @@
1
+ {
2
+ "block_device": {
3
+ "sr0": {
4
+ "size": "2097151",
5
+ "removable": "1",
6
+ "model": "CD-ROM",
7
+ "rev": "1.0",
8
+ "state": "running",
9
+ "timeout": "30",
10
+ "vendor": "VBOX",
11
+ "queue_depth": "1",
12
+ "rotational": "1",
13
+ "physical_block_size": "512",
14
+ "logical_block_size": "512"
15
+ },
16
+ "sda": {
17
+ "size": "16777216",
18
+ "removable": "0",
19
+ "model": "VBOX HARDDISK",
20
+ "rev": "1.0",
21
+ "state": "running",
22
+ "timeout": "30",
23
+ "vendor": "ATA",
24
+ "queue_depth": "31",
25
+ "rotational": "1",
26
+ "physical_block_size": "512",
27
+ "logical_block_size": "512"
28
+ }
29
+ },
30
+ "chef_packages": {
31
+ "ohai": {
32
+ "version": "13.1.0",
33
+ "ohai_root": "/opt/chef/embedded/lib/ruby/gems/2.4.0/gems/ohai-13.1.0/lib/ohai"
34
+ },
35
+ "chef": {
36
+ "version": "13.1.31",
37
+ "chef_root": "/opt/chef/embedded/lib/ruby/gems/2.4.0/gems/chef-13.1.31/lib"
38
+ }
39
+ },
40
+ "command": {
41
+ "ps": "ps -ef"
42
+ },
43
+ "counters": {
44
+ "network": {
45
+ "interfaces": {
46
+ "lo": {
47
+ "tx": {
48
+ "queuelen": "1",
49
+ "bytes": 0,
50
+ "packets": 0,
51
+ "errors": 0,
52
+ "drop": 0,
53
+ "carrier": 0,
54
+ "collisions": 0
55
+ },
56
+ "rx": {
57
+ "bytes": 0,
58
+ "packets": 0,
59
+ "errors": 0,
60
+ "drop": 0,
61
+ "overrun": 0
62
+ }
63
+ },
64
+ "eth0": {
65
+ "rx": {
66
+ "bytes": 0,
67
+ "packets": 0,
68
+ "errors": 0,
69
+ "drop": 0,
70
+ "overrun": 0,
71
+ "frame": 0,
72
+ "compressed": 0,
73
+ "multicast": 0
74
+ },
75
+ "tx": {
76
+ "bytes": 0,
77
+ "packets": 0,
78
+ "errors": 0,
79
+ "drop": 0,
80
+ "overrun": 0,
81
+ "collisions": 0,
82
+ "carrier": 0,
83
+ "compressed": 0
84
+ }
85
+ }
86
+ }
87
+ }
88
+ },
89
+ "cpu": {
90
+ "real": 1,
91
+ "total": 1,
92
+ "cores": 1
93
+ },
94
+ "current_user": "fauxhai",
95
+ "dmi": {
96
+ "dmidecode_version": "3.0",
97
+ "smbios_version": "2.5",
98
+ "structures": {
99
+ "count": "10",
100
+ "size": "450"
101
+ },
102
+ "table_location": "0x000E1000",
103
+ "bios": {
104
+ "all_records": [
105
+ {
106
+ "record_id": "0x0000",
107
+ "size": "0",
108
+ "application_identifier": "BIOS Information",
109
+ "Vendor": "innotek GmbH",
110
+ "Version": "VirtualBox",
111
+ "Release Date": "12/01/2006",
112
+ "Address": "0xE0000",
113
+ "Runtime Size": "128 kB",
114
+ "ROM Size": "128 kB",
115
+ "Characteristics": {
116
+ "ISA is supported": null,
117
+ "PCI is supported": null,
118
+ "Boot from CD is supported": null,
119
+ "Selectable boot is supported": null,
120
+ "8042 keyboard services are supported (int 9h)": null,
121
+ "CGA/mono video services are supported (int 10h)": null,
122
+ "ACPI is supported": null
123
+ }
124
+ }
125
+ ],
126
+ "vendor": "innotek GmbH",
127
+ "version": "VirtualBox",
128
+ "release_date": "12/01/2006",
129
+ "address": "0xE0000",
130
+ "runtime_size": "128 kB",
131
+ "rom_size": "128 kB"
132
+ },
133
+ "system": {
134
+ "all_records": [
135
+ {
136
+ "record_id": "0x0001",
137
+ "size": "1",
138
+ "application_identifier": "System Information",
139
+ "Manufacturer": "innotek GmbH",
140
+ "Product Name": "VirtualBox",
141
+ "Version": "1.2",
142
+ "Serial Number": "0",
143
+ "UUID": "7A6D9202-229A-4154-9E6B-C00A8BD9778E",
144
+ "Wake-up Type": "Power Switch",
145
+ "SKU Number": "Not Specified",
146
+ "Family": "Virtual Machine"
147
+ }
148
+ ],
149
+ "manufacturer": "innotek GmbH",
150
+ "product_name": "VirtualBox",
151
+ "version": "1.2",
152
+ "serial_number": "0",
153
+ "uuid": "7A6D9202-229A-4154-9E6B-C00A8BD9778E",
154
+ "wake_up_type": "Power Switch",
155
+ "sku_number": "Not Specified",
156
+ "family": "Virtual Machine"
157
+ },
158
+ "base_board": {
159
+ "all_records": [
160
+ {
161
+ "record_id": "0x0008",
162
+ "size": "2",
163
+ "application_identifier": "Base Board Information",
164
+ "Manufacturer": "Oracle Corporation",
165
+ "Product Name": "VirtualBox",
166
+ "Version": "1.2",
167
+ "Serial Number": "0",
168
+ "Asset Tag": "Not Specified",
169
+ "Features": {
170
+ "Board is a hosting board": null
171
+ },
172
+ "Location In Chassis": "Not Specified",
173
+ "Chassis Handle": "0x0003",
174
+ "Type": "Motherboard",
175
+ "Contained Object Handles": "0"
176
+ }
177
+ ],
178
+ "manufacturer": "Oracle Corporation",
179
+ "product_name": "VirtualBox",
180
+ "version": "1.2",
181
+ "serial_number": "0",
182
+ "asset_tag": "Not Specified",
183
+ "location_in_chassis": "Not Specified",
184
+ "chassis_handle": "0x0003",
185
+ "type": "Motherboard",
186
+ "contained_object_handles": "0"
187
+ },
188
+ "chassis": {
189
+ "all_records": [
190
+ {
191
+ "record_id": "0x0003",
192
+ "size": "3",
193
+ "application_identifier": "Chassis Information",
194
+ "Manufacturer": "Oracle Corporation",
195
+ "Type": "Other",
196
+ "Lock": "Not Present",
197
+ "Version": "Not Specified",
198
+ "Serial Number": "Not Specified",
199
+ "Asset Tag": "Not Specified",
200
+ "Boot-up State": "Safe",
201
+ "Power Supply State": "Safe",
202
+ "Thermal State": "Safe",
203
+ "Security Status": "None"
204
+ }
205
+ ],
206
+ "manufacturer": "Oracle Corporation",
207
+ "type": "Other",
208
+ "lock": "Not Present",
209
+ "version": "Not Specified",
210
+ "serial_number": "Not Specified",
211
+ "asset_tag": "Not Specified",
212
+ "boot_up_state": "Safe",
213
+ "power_supply_state": "Safe",
214
+ "thermal_state": "Safe",
215
+ "security_status": "None"
216
+ },
217
+ "oem_strings": {
218
+ "all_records": [
219
+ {
220
+ "record_id": "0x0002",
221
+ "size": "11",
222
+ "application_identifier": "OEM Strings",
223
+ "String 1": "vboxVer_5.1.22",
224
+ "String 2": "vboxRev_115126"
225
+ }
226
+ ],
227
+ "string_1": "vboxVer_5.1.22",
228
+ "string_2": "vboxRev_115126"
229
+ }
230
+ },
231
+ "domain": "local",
232
+ "etc": {
233
+ "passwd": {
234
+ "fauxhai": {
235
+ "dir": "/home/fauxhai",
236
+ "gid": 0,
237
+ "uid": 0,
238
+ "shell": "/bin/bash",
239
+ "gecos": "Fauxhai"
240
+ }
241
+ },
242
+ "group": {
243
+ "fauxhai": {
244
+ "gid": 0,
245
+ "members": [
246
+ "fauxhai"
247
+ ]
248
+ }
249
+ }
250
+ },
251
+ "filesystem": {
252
+ "by_device": {
253
+ "udev": {
254
+ "kb_size": "499128",
255
+ "kb_used": "0",
256
+ "kb_available": "499128",
257
+ "percent_used": "0%",
258
+ "total_inodes": "124782",
259
+ "inodes_used": "335",
260
+ "inodes_available": "124447",
261
+ "inodes_percent_used": "1%",
262
+ "fs_type": "devtmpfs",
263
+ "mount_options": [
264
+ "rw",
265
+ "nosuid",
266
+ "relatime",
267
+ "size=499128k",
268
+ "nr_inodes=124782",
269
+ "mode=755"
270
+ ],
271
+ "mounts": [
272
+ "/dev"
273
+ ]
274
+ },
275
+ "tmpfs": {
276
+ "kb_size": "102044",
277
+ "kb_used": "0",
278
+ "kb_available": "102044",
279
+ "percent_used": "0%",
280
+ "total_inodes": "127556",
281
+ "inodes_used": "10",
282
+ "inodes_available": "127546",
283
+ "inodes_percent_used": "1%",
284
+ "fs_type": "tmpfs",
285
+ "mount_options": [
286
+ "rw",
287
+ "nosuid",
288
+ "nodev",
289
+ "relatime",
290
+ "size=102044k",
291
+ "mode=700"
292
+ ],
293
+ "mounts": [
294
+ "/run",
295
+ "/dev/shm",
296
+ "/run/lock",
297
+ "/sys/fs/cgroup",
298
+ "/run/user/0"
299
+ ]
300
+ },
301
+ "/dev/sda1": {
302
+ "kb_size": "7158264",
303
+ "kb_used": "1154536",
304
+ "kb_available": "5620396",
305
+ "percent_used": "18%",
306
+ "total_inodes": "458752",
307
+ "inodes_used": "48226",
308
+ "inodes_available": "410526",
309
+ "inodes_percent_used": "11%",
310
+ "fs_type": "ext4",
311
+ "mount_options": [
312
+ "rw",
313
+ "relatime",
314
+ "errors=remount-ro",
315
+ "data=ordered"
316
+ ],
317
+ "uuid": "841ff5ab-5da9-45e8-9615-3214179452f4",
318
+ "mounts": [
319
+ "/"
320
+ ]
321
+ },
322
+ "sysfs": {
323
+ "fs_type": "sysfs",
324
+ "mount_options": [
325
+ "rw",
326
+ "nosuid",
327
+ "nodev",
328
+ "noexec",
329
+ "relatime"
330
+ ],
331
+ "mounts": [
332
+ "/sys"
333
+ ]
334
+ },
335
+ "proc": {
336
+ "fs_type": "proc",
337
+ "mount_options": [
338
+ "rw",
339
+ "nosuid",
340
+ "nodev",
341
+ "noexec",
342
+ "relatime"
343
+ ],
344
+ "mounts": [
345
+ "/proc"
346
+ ]
347
+ },
348
+ "devpts": {
349
+ "fs_type": "devpts",
350
+ "mount_options": [
351
+ "rw",
352
+ "nosuid",
353
+ "noexec",
354
+ "relatime",
355
+ "gid=5",
356
+ "mode=620",
357
+ "ptmxmode=000"
358
+ ],
359
+ "mounts": [
360
+ "/dev/pts"
361
+ ]
362
+ },
363
+ "securityfs": {
364
+ "fs_type": "securityfs",
365
+ "mount_options": [
366
+ "rw",
367
+ "nosuid",
368
+ "nodev",
369
+ "noexec",
370
+ "relatime"
371
+ ],
372
+ "mounts": [
373
+ "/sys/kernel/security"
374
+ ]
375
+ },
376
+ "cgroup": {
377
+ "fs_type": "cgroup",
378
+ "mount_options": [
379
+ "rw",
380
+ "nosuid",
381
+ "nodev",
382
+ "noexec",
383
+ "relatime",
384
+ "perf_event"
385
+ ],
386
+ "mounts": [
387
+ "/sys/fs/cgroup/systemd",
388
+ "/sys/fs/cgroup/pids",
389
+ "/sys/fs/cgroup/cpuset",
390
+ "/sys/fs/cgroup/cpu,cpuacct",
391
+ "/sys/fs/cgroup/blkio",
392
+ "/sys/fs/cgroup/net_cls,net_prio",
393
+ "/sys/fs/cgroup/memory",
394
+ "/sys/fs/cgroup/freezer",
395
+ "/sys/fs/cgroup/devices",
396
+ "/sys/fs/cgroup/perf_event"
397
+ ]
398
+ },
399
+ "pstore": {
400
+ "fs_type": "pstore",
401
+ "mount_options": [
402
+ "rw",
403
+ "nosuid",
404
+ "nodev",
405
+ "noexec",
406
+ "relatime"
407
+ ],
408
+ "mounts": [
409
+ "/sys/fs/pstore"
410
+ ]
411
+ },
412
+ "systemd-1": {
413
+ "fs_type": "autofs",
414
+ "mount_options": [
415
+ "rw",
416
+ "relatime",
417
+ "fd=28",
418
+ "pgrp=1",
419
+ "timeout=0",
420
+ "minproto=5",
421
+ "maxproto=5",
422
+ "direct",
423
+ "pipe_ino=8898"
424
+ ],
425
+ "mounts": [
426
+ "/proc/sys/fs/binfmt_misc"
427
+ ]
428
+ },
429
+ "mqueue": {
430
+ "fs_type": "mqueue",
431
+ "mount_options": [
432
+ "rw",
433
+ "relatime"
434
+ ],
435
+ "mounts": [
436
+ "/dev/mqueue"
437
+ ]
438
+ },
439
+ "hugetlbfs": {
440
+ "fs_type": "hugetlbfs",
441
+ "mount_options": [
442
+ "rw",
443
+ "relatime"
444
+ ],
445
+ "mounts": [
446
+ "/dev/hugepages"
447
+ ]
448
+ },
449
+ "debugfs": {
450
+ "fs_type": "debugfs",
451
+ "mount_options": [
452
+ "rw",
453
+ "relatime"
454
+ ],
455
+ "mounts": [
456
+ "/sys/kernel/debug"
457
+ ]
458
+ },
459
+ "/dev/sda": {
460
+ "mounts": [
461
+
462
+ ]
463
+ },
464
+ "/dev/sda2": {
465
+ "mounts": [
466
+
467
+ ]
468
+ },
469
+ "/dev/sda5": {
470
+ "fs_type": "swap",
471
+ "uuid": "d33e0b53-76f4-4664-b85a-d9680349af5d",
472
+ "mounts": [
473
+
474
+ ]
475
+ },
476
+ "/dev/sr0": {
477
+ "mounts": [
478
+
479
+ ]
480
+ }
481
+ },
482
+ "by_mountpoint": {
483
+ "/dev": {
484
+ "kb_size": "499128",
485
+ "kb_used": "0",
486
+ "kb_available": "499128",
487
+ "percent_used": "0%",
488
+ "total_inodes": "124782",
489
+ "inodes_used": "335",
490
+ "inodes_available": "124447",
491
+ "inodes_percent_used": "1%",
492
+ "fs_type": "devtmpfs",
493
+ "mount_options": [
494
+ "rw",
495
+ "nosuid",
496
+ "relatime",
497
+ "size=499128k",
498
+ "nr_inodes=124782",
499
+ "mode=755"
500
+ ],
501
+ "devices": [
502
+ "udev"
503
+ ]
504
+ },
505
+ "/run": {
506
+ "kb_size": "102048",
507
+ "kb_used": "1720",
508
+ "kb_available": "100328",
509
+ "percent_used": "2%",
510
+ "total_inodes": "127556",
511
+ "inodes_used": "389",
512
+ "inodes_available": "127167",
513
+ "inodes_percent_used": "1%",
514
+ "fs_type": "tmpfs",
515
+ "mount_options": [
516
+ "rw",
517
+ "nosuid",
518
+ "noexec",
519
+ "relatime",
520
+ "size=102048k",
521
+ "mode=755"
522
+ ],
523
+ "devices": [
524
+ "tmpfs"
525
+ ]
526
+ },
527
+ "/": {
528
+ "kb_size": "7158264",
529
+ "kb_used": "1154536",
530
+ "kb_available": "5620396",
531
+ "percent_used": "18%",
532
+ "total_inodes": "458752",
533
+ "inodes_used": "48226",
534
+ "inodes_available": "410526",
535
+ "inodes_percent_used": "11%",
536
+ "fs_type": "ext4",
537
+ "mount_options": [
538
+ "rw",
539
+ "relatime",
540
+ "errors=remount-ro",
541
+ "data=ordered"
542
+ ],
543
+ "uuid": "841ff5ab-5da9-45e8-9615-3214179452f4",
544
+ "devices": [
545
+ "/dev/sda1"
546
+ ]
547
+ },
548
+ "/dev/shm": {
549
+ "kb_size": "510224",
550
+ "kb_used": "0",
551
+ "kb_available": "510224",
552
+ "percent_used": "0%",
553
+ "total_inodes": "127556",
554
+ "inodes_used": "1",
555
+ "inodes_available": "127555",
556
+ "inodes_percent_used": "1%",
557
+ "fs_type": "tmpfs",
558
+ "mount_options": [
559
+ "rw",
560
+ "nosuid",
561
+ "nodev"
562
+ ],
563
+ "devices": [
564
+ "tmpfs"
565
+ ]
566
+ },
567
+ "/run/lock": {
568
+ "kb_size": "5120",
569
+ "kb_used": "0",
570
+ "kb_available": "5120",
571
+ "percent_used": "0%",
572
+ "total_inodes": "127556",
573
+ "inodes_used": "2",
574
+ "inodes_available": "127554",
575
+ "inodes_percent_used": "1%",
576
+ "fs_type": "tmpfs",
577
+ "mount_options": [
578
+ "rw",
579
+ "nosuid",
580
+ "nodev",
581
+ "noexec",
582
+ "relatime",
583
+ "size=5120k"
584
+ ],
585
+ "devices": [
586
+ "tmpfs"
587
+ ]
588
+ },
589
+ "/sys/fs/cgroup": {
590
+ "kb_size": "510224",
591
+ "kb_used": "0",
592
+ "kb_available": "510224",
593
+ "percent_used": "0%",
594
+ "total_inodes": "127556",
595
+ "inodes_used": "15",
596
+ "inodes_available": "127541",
597
+ "inodes_percent_used": "1%",
598
+ "fs_type": "tmpfs",
599
+ "mount_options": [
600
+ "ro",
601
+ "nosuid",
602
+ "nodev",
603
+ "noexec",
604
+ "mode=755"
605
+ ],
606
+ "devices": [
607
+ "tmpfs"
608
+ ]
609
+ },
610
+ "/run/user/0": {
611
+ "kb_size": "102044",
612
+ "kb_used": "0",
613
+ "kb_available": "102044",
614
+ "percent_used": "0%",
615
+ "total_inodes": "127556",
616
+ "inodes_used": "10",
617
+ "inodes_available": "127546",
618
+ "inodes_percent_used": "1%",
619
+ "fs_type": "tmpfs",
620
+ "mount_options": [
621
+ "rw",
622
+ "nosuid",
623
+ "nodev",
624
+ "relatime",
625
+ "size=102044k",
626
+ "mode=700"
627
+ ],
628
+ "devices": [
629
+ "tmpfs"
630
+ ]
631
+ },
632
+ "/sys": {
633
+ "fs_type": "sysfs",
634
+ "mount_options": [
635
+ "rw",
636
+ "nosuid",
637
+ "nodev",
638
+ "noexec",
639
+ "relatime"
640
+ ],
641
+ "devices": [
642
+ "sysfs"
643
+ ]
644
+ },
645
+ "/proc": {
646
+ "fs_type": "proc",
647
+ "mount_options": [
648
+ "rw",
649
+ "nosuid",
650
+ "nodev",
651
+ "noexec",
652
+ "relatime"
653
+ ],
654
+ "devices": [
655
+ "proc"
656
+ ]
657
+ },
658
+ "/dev/pts": {
659
+ "fs_type": "devpts",
660
+ "mount_options": [
661
+ "rw",
662
+ "nosuid",
663
+ "noexec",
664
+ "relatime",
665
+ "gid=5",
666
+ "mode=620",
667
+ "ptmxmode=000"
668
+ ],
669
+ "devices": [
670
+ "devpts"
671
+ ]
672
+ },
673
+ "/sys/kernel/security": {
674
+ "fs_type": "securityfs",
675
+ "mount_options": [
676
+ "rw",
677
+ "nosuid",
678
+ "nodev",
679
+ "noexec",
680
+ "relatime"
681
+ ],
682
+ "devices": [
683
+ "securityfs"
684
+ ]
685
+ },
686
+ "/sys/fs/cgroup/systemd": {
687
+ "fs_type": "cgroup",
688
+ "mount_options": [
689
+ "rw",
690
+ "nosuid",
691
+ "nodev",
692
+ "noexec",
693
+ "relatime",
694
+ "xattr",
695
+ "release_agent=/lib/systemd/systemd-cgroups-agent",
696
+ "name=systemd"
697
+ ],
698
+ "devices": [
699
+ "cgroup"
700
+ ]
701
+ },
702
+ "/sys/fs/pstore": {
703
+ "fs_type": "pstore",
704
+ "mount_options": [
705
+ "rw",
706
+ "nosuid",
707
+ "nodev",
708
+ "noexec",
709
+ "relatime"
710
+ ],
711
+ "devices": [
712
+ "pstore"
713
+ ]
714
+ },
715
+ "/sys/fs/cgroup/pids": {
716
+ "fs_type": "cgroup",
717
+ "mount_options": [
718
+ "rw",
719
+ "nosuid",
720
+ "nodev",
721
+ "noexec",
722
+ "relatime",
723
+ "pids"
724
+ ],
725
+ "devices": [
726
+ "cgroup"
727
+ ]
728
+ },
729
+ "/sys/fs/cgroup/cpuset": {
730
+ "fs_type": "cgroup",
731
+ "mount_options": [
732
+ "rw",
733
+ "nosuid",
734
+ "nodev",
735
+ "noexec",
736
+ "relatime",
737
+ "cpuset"
738
+ ],
739
+ "devices": [
740
+ "cgroup"
741
+ ]
742
+ },
743
+ "/sys/fs/cgroup/cpu,cpuacct": {
744
+ "fs_type": "cgroup",
745
+ "mount_options": [
746
+ "rw",
747
+ "nosuid",
748
+ "nodev",
749
+ "noexec",
750
+ "relatime",
751
+ "cpu",
752
+ "cpuacct"
753
+ ],
754
+ "devices": [
755
+ "cgroup"
756
+ ]
757
+ },
758
+ "/sys/fs/cgroup/blkio": {
759
+ "fs_type": "cgroup",
760
+ "mount_options": [
761
+ "rw",
762
+ "nosuid",
763
+ "nodev",
764
+ "noexec",
765
+ "relatime",
766
+ "blkio"
767
+ ],
768
+ "devices": [
769
+ "cgroup"
770
+ ]
771
+ },
772
+ "/sys/fs/cgroup/net_cls,net_prio": {
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
+ "devices": [
784
+ "cgroup"
785
+ ]
786
+ },
787
+ "/sys/fs/cgroup/memory": {
788
+ "fs_type": "cgroup",
789
+ "mount_options": [
790
+ "rw",
791
+ "nosuid",
792
+ "nodev",
793
+ "noexec",
794
+ "relatime",
795
+ "memory"
796
+ ],
797
+ "devices": [
798
+ "cgroup"
799
+ ]
800
+ },
801
+ "/sys/fs/cgroup/freezer": {
802
+ "fs_type": "cgroup",
803
+ "mount_options": [
804
+ "rw",
805
+ "nosuid",
806
+ "nodev",
807
+ "noexec",
808
+ "relatime",
809
+ "freezer"
810
+ ],
811
+ "devices": [
812
+ "cgroup"
813
+ ]
814
+ },
815
+ "/sys/fs/cgroup/devices": {
816
+ "fs_type": "cgroup",
817
+ "mount_options": [
818
+ "rw",
819
+ "nosuid",
820
+ "nodev",
821
+ "noexec",
822
+ "relatime",
823
+ "devices"
824
+ ],
825
+ "devices": [
826
+ "cgroup"
827
+ ]
828
+ },
829
+ "/sys/fs/cgroup/perf_event": {
830
+ "fs_type": "cgroup",
831
+ "mount_options": [
832
+ "rw",
833
+ "nosuid",
834
+ "nodev",
835
+ "noexec",
836
+ "relatime",
837
+ "perf_event"
838
+ ],
839
+ "devices": [
840
+ "cgroup"
841
+ ]
842
+ },
843
+ "/proc/sys/fs/binfmt_misc": {
844
+ "fs_type": "autofs",
845
+ "mount_options": [
846
+ "rw",
847
+ "relatime",
848
+ "fd=28",
849
+ "pgrp=1",
850
+ "timeout=0",
851
+ "minproto=5",
852
+ "maxproto=5",
853
+ "direct",
854
+ "pipe_ino=8898"
855
+ ],
856
+ "devices": [
857
+ "systemd-1"
858
+ ]
859
+ },
860
+ "/dev/mqueue": {
861
+ "fs_type": "mqueue",
862
+ "mount_options": [
863
+ "rw",
864
+ "relatime"
865
+ ],
866
+ "devices": [
867
+ "mqueue"
868
+ ]
869
+ },
870
+ "/dev/hugepages": {
871
+ "fs_type": "hugetlbfs",
872
+ "mount_options": [
873
+ "rw",
874
+ "relatime"
875
+ ],
876
+ "devices": [
877
+ "hugetlbfs"
878
+ ]
879
+ },
880
+ "/sys/kernel/debug": {
881
+ "fs_type": "debugfs",
882
+ "mount_options": [
883
+ "rw",
884
+ "relatime"
885
+ ],
886
+ "devices": [
887
+ "debugfs"
888
+ ]
889
+ }
890
+ },
891
+ "by_pair": {
892
+ "udev,/dev": {
893
+ "device": "udev",
894
+ "kb_size": "499128",
895
+ "kb_used": "0",
896
+ "kb_available": "499128",
897
+ "percent_used": "0%",
898
+ "mount": "/dev",
899
+ "total_inodes": "124782",
900
+ "inodes_used": "335",
901
+ "inodes_available": "124447",
902
+ "inodes_percent_used": "1%",
903
+ "fs_type": "devtmpfs",
904
+ "mount_options": [
905
+ "rw",
906
+ "nosuid",
907
+ "relatime",
908
+ "size=499128k",
909
+ "nr_inodes=124782",
910
+ "mode=755"
911
+ ]
912
+ },
913
+ "tmpfs,/run": {
914
+ "device": "tmpfs",
915
+ "kb_size": "102048",
916
+ "kb_used": "1720",
917
+ "kb_available": "100328",
918
+ "percent_used": "2%",
919
+ "mount": "/run",
920
+ "total_inodes": "127556",
921
+ "inodes_used": "389",
922
+ "inodes_available": "127167",
923
+ "inodes_percent_used": "1%",
924
+ "fs_type": "tmpfs",
925
+ "mount_options": [
926
+ "rw",
927
+ "nosuid",
928
+ "noexec",
929
+ "relatime",
930
+ "size=102048k",
931
+ "mode=755"
932
+ ]
933
+ },
934
+ "/dev/sda1,/": {
935
+ "device": "/dev/sda1",
936
+ "kb_size": "7158264",
937
+ "kb_used": "1154536",
938
+ "kb_available": "5620396",
939
+ "percent_used": "18%",
940
+ "mount": "/",
941
+ "total_inodes": "458752",
942
+ "inodes_used": "48226",
943
+ "inodes_available": "410526",
944
+ "inodes_percent_used": "11%",
945
+ "fs_type": "ext4",
946
+ "mount_options": [
947
+ "rw",
948
+ "relatime",
949
+ "errors=remount-ro",
950
+ "data=ordered"
951
+ ],
952
+ "uuid": "841ff5ab-5da9-45e8-9615-3214179452f4"
953
+ },
954
+ "tmpfs,/dev/shm": {
955
+ "device": "tmpfs",
956
+ "kb_size": "510224",
957
+ "kb_used": "0",
958
+ "kb_available": "510224",
959
+ "percent_used": "0%",
960
+ "mount": "/dev/shm",
961
+ "total_inodes": "127556",
962
+ "inodes_used": "1",
963
+ "inodes_available": "127555",
964
+ "inodes_percent_used": "1%",
965
+ "fs_type": "tmpfs",
966
+ "mount_options": [
967
+ "rw",
968
+ "nosuid",
969
+ "nodev"
970
+ ]
971
+ },
972
+ "tmpfs,/run/lock": {
973
+ "device": "tmpfs",
974
+ "kb_size": "5120",
975
+ "kb_used": "0",
976
+ "kb_available": "5120",
977
+ "percent_used": "0%",
978
+ "mount": "/run/lock",
979
+ "total_inodes": "127556",
980
+ "inodes_used": "2",
981
+ "inodes_available": "127554",
982
+ "inodes_percent_used": "1%",
983
+ "fs_type": "tmpfs",
984
+ "mount_options": [
985
+ "rw",
986
+ "nosuid",
987
+ "nodev",
988
+ "noexec",
989
+ "relatime",
990
+ "size=5120k"
991
+ ]
992
+ },
993
+ "tmpfs,/sys/fs/cgroup": {
994
+ "device": "tmpfs",
995
+ "kb_size": "510224",
996
+ "kb_used": "0",
997
+ "kb_available": "510224",
998
+ "percent_used": "0%",
999
+ "mount": "/sys/fs/cgroup",
1000
+ "total_inodes": "127556",
1001
+ "inodes_used": "15",
1002
+ "inodes_available": "127541",
1003
+ "inodes_percent_used": "1%",
1004
+ "fs_type": "tmpfs",
1005
+ "mount_options": [
1006
+ "ro",
1007
+ "nosuid",
1008
+ "nodev",
1009
+ "noexec",
1010
+ "mode=755"
1011
+ ]
1012
+ },
1013
+ "tmpfs,/run/user/0": {
1014
+ "device": "tmpfs",
1015
+ "kb_size": "102044",
1016
+ "kb_used": "0",
1017
+ "kb_available": "102044",
1018
+ "percent_used": "0%",
1019
+ "mount": "/run/user/0",
1020
+ "total_inodes": "127556",
1021
+ "inodes_used": "10",
1022
+ "inodes_available": "127546",
1023
+ "inodes_percent_used": "1%",
1024
+ "fs_type": "tmpfs",
1025
+ "mount_options": [
1026
+ "rw",
1027
+ "nosuid",
1028
+ "nodev",
1029
+ "relatime",
1030
+ "size=102044k",
1031
+ "mode=700"
1032
+ ]
1033
+ },
1034
+ "sysfs,/sys": {
1035
+ "device": "sysfs",
1036
+ "mount": "/sys",
1037
+ "fs_type": "sysfs",
1038
+ "mount_options": [
1039
+ "rw",
1040
+ "nosuid",
1041
+ "nodev",
1042
+ "noexec",
1043
+ "relatime"
1044
+ ]
1045
+ },
1046
+ "proc,/proc": {
1047
+ "device": "proc",
1048
+ "mount": "/proc",
1049
+ "fs_type": "proc",
1050
+ "mount_options": [
1051
+ "rw",
1052
+ "nosuid",
1053
+ "nodev",
1054
+ "noexec",
1055
+ "relatime"
1056
+ ]
1057
+ },
1058
+ "devpts,/dev/pts": {
1059
+ "device": "devpts",
1060
+ "mount": "/dev/pts",
1061
+ "fs_type": "devpts",
1062
+ "mount_options": [
1063
+ "rw",
1064
+ "nosuid",
1065
+ "noexec",
1066
+ "relatime",
1067
+ "gid=5",
1068
+ "mode=620",
1069
+ "ptmxmode=000"
1070
+ ]
1071
+ },
1072
+ "securityfs,/sys/kernel/security": {
1073
+ "device": "securityfs",
1074
+ "mount": "/sys/kernel/security",
1075
+ "fs_type": "securityfs",
1076
+ "mount_options": [
1077
+ "rw",
1078
+ "nosuid",
1079
+ "nodev",
1080
+ "noexec",
1081
+ "relatime"
1082
+ ]
1083
+ },
1084
+ "cgroup,/sys/fs/cgroup/systemd": {
1085
+ "device": "cgroup",
1086
+ "mount": "/sys/fs/cgroup/systemd",
1087
+ "fs_type": "cgroup",
1088
+ "mount_options": [
1089
+ "rw",
1090
+ "nosuid",
1091
+ "nodev",
1092
+ "noexec",
1093
+ "relatime",
1094
+ "xattr",
1095
+ "release_agent=/lib/systemd/systemd-cgroups-agent",
1096
+ "name=systemd"
1097
+ ]
1098
+ },
1099
+ "pstore,/sys/fs/pstore": {
1100
+ "device": "pstore",
1101
+ "mount": "/sys/fs/pstore",
1102
+ "fs_type": "pstore",
1103
+ "mount_options": [
1104
+ "rw",
1105
+ "nosuid",
1106
+ "nodev",
1107
+ "noexec",
1108
+ "relatime"
1109
+ ]
1110
+ },
1111
+ "cgroup,/sys/fs/cgroup/pids": {
1112
+ "device": "cgroup",
1113
+ "mount": "/sys/fs/cgroup/pids",
1114
+ "fs_type": "cgroup",
1115
+ "mount_options": [
1116
+ "rw",
1117
+ "nosuid",
1118
+ "nodev",
1119
+ "noexec",
1120
+ "relatime",
1121
+ "pids"
1122
+ ]
1123
+ },
1124
+ "cgroup,/sys/fs/cgroup/cpuset": {
1125
+ "device": "cgroup",
1126
+ "mount": "/sys/fs/cgroup/cpuset",
1127
+ "fs_type": "cgroup",
1128
+ "mount_options": [
1129
+ "rw",
1130
+ "nosuid",
1131
+ "nodev",
1132
+ "noexec",
1133
+ "relatime",
1134
+ "cpuset"
1135
+ ]
1136
+ },
1137
+ "cgroup,/sys/fs/cgroup/cpu,cpuacct": {
1138
+ "device": "cgroup",
1139
+ "mount": "/sys/fs/cgroup/cpu,cpuacct",
1140
+ "fs_type": "cgroup",
1141
+ "mount_options": [
1142
+ "rw",
1143
+ "nosuid",
1144
+ "nodev",
1145
+ "noexec",
1146
+ "relatime",
1147
+ "cpu",
1148
+ "cpuacct"
1149
+ ]
1150
+ },
1151
+ "cgroup,/sys/fs/cgroup/blkio": {
1152
+ "device": "cgroup",
1153
+ "mount": "/sys/fs/cgroup/blkio",
1154
+ "fs_type": "cgroup",
1155
+ "mount_options": [
1156
+ "rw",
1157
+ "nosuid",
1158
+ "nodev",
1159
+ "noexec",
1160
+ "relatime",
1161
+ "blkio"
1162
+ ]
1163
+ },
1164
+ "cgroup,/sys/fs/cgroup/net_cls,net_prio": {
1165
+ "device": "cgroup",
1166
+ "mount": "/sys/fs/cgroup/net_cls,net_prio",
1167
+ "fs_type": "cgroup",
1168
+ "mount_options": [
1169
+ "rw",
1170
+ "nosuid",
1171
+ "nodev",
1172
+ "noexec",
1173
+ "relatime",
1174
+ "net_cls",
1175
+ "net_prio"
1176
+ ]
1177
+ },
1178
+ "cgroup,/sys/fs/cgroup/memory": {
1179
+ "device": "cgroup",
1180
+ "mount": "/sys/fs/cgroup/memory",
1181
+ "fs_type": "cgroup",
1182
+ "mount_options": [
1183
+ "rw",
1184
+ "nosuid",
1185
+ "nodev",
1186
+ "noexec",
1187
+ "relatime",
1188
+ "memory"
1189
+ ]
1190
+ },
1191
+ "cgroup,/sys/fs/cgroup/freezer": {
1192
+ "device": "cgroup",
1193
+ "mount": "/sys/fs/cgroup/freezer",
1194
+ "fs_type": "cgroup",
1195
+ "mount_options": [
1196
+ "rw",
1197
+ "nosuid",
1198
+ "nodev",
1199
+ "noexec",
1200
+ "relatime",
1201
+ "freezer"
1202
+ ]
1203
+ },
1204
+ "cgroup,/sys/fs/cgroup/devices": {
1205
+ "device": "cgroup",
1206
+ "mount": "/sys/fs/cgroup/devices",
1207
+ "fs_type": "cgroup",
1208
+ "mount_options": [
1209
+ "rw",
1210
+ "nosuid",
1211
+ "nodev",
1212
+ "noexec",
1213
+ "relatime",
1214
+ "devices"
1215
+ ]
1216
+ },
1217
+ "cgroup,/sys/fs/cgroup/perf_event": {
1218
+ "device": "cgroup",
1219
+ "mount": "/sys/fs/cgroup/perf_event",
1220
+ "fs_type": "cgroup",
1221
+ "mount_options": [
1222
+ "rw",
1223
+ "nosuid",
1224
+ "nodev",
1225
+ "noexec",
1226
+ "relatime",
1227
+ "perf_event"
1228
+ ]
1229
+ },
1230
+ "systemd-1,/proc/sys/fs/binfmt_misc": {
1231
+ "device": "systemd-1",
1232
+ "mount": "/proc/sys/fs/binfmt_misc",
1233
+ "fs_type": "autofs",
1234
+ "mount_options": [
1235
+ "rw",
1236
+ "relatime",
1237
+ "fd=28",
1238
+ "pgrp=1",
1239
+ "timeout=0",
1240
+ "minproto=5",
1241
+ "maxproto=5",
1242
+ "direct",
1243
+ "pipe_ino=8898"
1244
+ ]
1245
+ },
1246
+ "mqueue,/dev/mqueue": {
1247
+ "device": "mqueue",
1248
+ "mount": "/dev/mqueue",
1249
+ "fs_type": "mqueue",
1250
+ "mount_options": [
1251
+ "rw",
1252
+ "relatime"
1253
+ ]
1254
+ },
1255
+ "hugetlbfs,/dev/hugepages": {
1256
+ "device": "hugetlbfs",
1257
+ "mount": "/dev/hugepages",
1258
+ "fs_type": "hugetlbfs",
1259
+ "mount_options": [
1260
+ "rw",
1261
+ "relatime"
1262
+ ]
1263
+ },
1264
+ "debugfs,/sys/kernel/debug": {
1265
+ "device": "debugfs",
1266
+ "mount": "/sys/kernel/debug",
1267
+ "fs_type": "debugfs",
1268
+ "mount_options": [
1269
+ "rw",
1270
+ "relatime"
1271
+ ]
1272
+ },
1273
+ "/dev/sda,": {
1274
+ "device": "/dev/sda"
1275
+ },
1276
+ "/dev/sda2,": {
1277
+ "device": "/dev/sda2"
1278
+ },
1279
+ "/dev/sda5,": {
1280
+ "device": "/dev/sda5",
1281
+ "fs_type": "swap",
1282
+ "uuid": "d33e0b53-76f4-4664-b85a-d9680349af5d"
1283
+ },
1284
+ "/dev/sr0,": {
1285
+ "device": "/dev/sr0"
1286
+ }
1287
+ }
1288
+ },
1289
+ "fips": {
1290
+ "kernel": {
1291
+ "enabled": false
1292
+ }
1293
+ },
1294
+ "fqdn": "fauxhai.local",
1295
+ "hostname": "Fauxhai",
1296
+ "idle": "30 days 15 hours 07 minutes 30 seconds",
1297
+ "idletime_seconds": 2646450,
1298
+ "init_package": "systemd",
1299
+ "ipaddress": "10.0.0.2",
1300
+ "kernel": {
1301
+ "name": "Linux",
1302
+ "release": "4.9.0-3-amd64",
1303
+ "version": "#1 SMP Debian 4.9.30-2+deb9u1 (2017-06-18)",
1304
+ "machine": "x86_64",
1305
+ "processor": "unknown",
1306
+ "os": "GNU/Linux",
1307
+ "modules": {
1308
+ "ppdev": {
1309
+ "size": "20480",
1310
+ "refcount": "0"
1311
+ },
1312
+ "evdev": {
1313
+ "size": "24576",
1314
+ "refcount": "3"
1315
+ },
1316
+ "serio_raw": {
1317
+ "size": "16384",
1318
+ "refcount": "0"
1319
+ },
1320
+ "pcspkr": {
1321
+ "size": "16384",
1322
+ "refcount": "0"
1323
+ },
1324
+ "joydev": {
1325
+ "size": "20480",
1326
+ "refcount": "0"
1327
+ },
1328
+ "intel_powerclamp": {
1329
+ "size": "16384",
1330
+ "refcount": "0"
1331
+ },
1332
+ "crct10dif_pclmul": {
1333
+ "size": "16384",
1334
+ "refcount": "0"
1335
+ },
1336
+ "crc32_pclmul": {
1337
+ "size": "16384",
1338
+ "refcount": "0"
1339
+ },
1340
+ "ghash_clmulni_intel": {
1341
+ "size": "16384",
1342
+ "refcount": "0"
1343
+ },
1344
+ "snd_intel8x0": {
1345
+ "size": "40960",
1346
+ "refcount": "0"
1347
+ },
1348
+ "snd_ac97_codec": {
1349
+ "size": "126976",
1350
+ "refcount": "1"
1351
+ },
1352
+ "intel_rapl_perf": {
1353
+ "size": "16384",
1354
+ "refcount": "0"
1355
+ },
1356
+ "ac97_bus": {
1357
+ "size": "16384",
1358
+ "refcount": "1"
1359
+ },
1360
+ "snd_pcm": {
1361
+ "size": "110592",
1362
+ "refcount": "2"
1363
+ },
1364
+ "sg": {
1365
+ "size": "32768",
1366
+ "refcount": "0",
1367
+ "version": "3.5.36"
1368
+ },
1369
+ "snd_timer": {
1370
+ "size": "32768",
1371
+ "refcount": "1"
1372
+ },
1373
+ "snd": {
1374
+ "size": "86016",
1375
+ "refcount": "4"
1376
+ },
1377
+ "soundcore": {
1378
+ "size": "16384",
1379
+ "refcount": "1"
1380
+ },
1381
+ "parport_pc": {
1382
+ "size": "28672",
1383
+ "refcount": "0"
1384
+ },
1385
+ "battery": {
1386
+ "size": "20480",
1387
+ "refcount": "0"
1388
+ },
1389
+ "button": {
1390
+ "size": "16384",
1391
+ "refcount": "0"
1392
+ },
1393
+ "video": {
1394
+ "size": "40960",
1395
+ "refcount": "0"
1396
+ },
1397
+ "ac": {
1398
+ "size": "16384",
1399
+ "refcount": "0"
1400
+ },
1401
+ "parport": {
1402
+ "size": "49152",
1403
+ "refcount": "2"
1404
+ },
1405
+ "acpi_cpufreq": {
1406
+ "size": "20480",
1407
+ "refcount": "0"
1408
+ },
1409
+ "ip_tables": {
1410
+ "size": "24576",
1411
+ "refcount": "0"
1412
+ },
1413
+ "x_tables": {
1414
+ "size": "36864",
1415
+ "refcount": "1"
1416
+ },
1417
+ "autofs4": {
1418
+ "size": "40960",
1419
+ "refcount": "2"
1420
+ },
1421
+ "ext4": {
1422
+ "size": "585728",
1423
+ "refcount": "1"
1424
+ },
1425
+ "crc16": {
1426
+ "size": "16384",
1427
+ "refcount": "1"
1428
+ },
1429
+ "jbd2": {
1430
+ "size": "106496",
1431
+ "refcount": "1"
1432
+ },
1433
+ "crc32c_generic": {
1434
+ "size": "16384",
1435
+ "refcount": "0"
1436
+ },
1437
+ "fscrypto": {
1438
+ "size": "28672",
1439
+ "refcount": "1"
1440
+ },
1441
+ "ecb": {
1442
+ "size": "16384",
1443
+ "refcount": "0"
1444
+ },
1445
+ "mbcache": {
1446
+ "size": "16384",
1447
+ "refcount": "2"
1448
+ },
1449
+ "hid_generic": {
1450
+ "size": "16384",
1451
+ "refcount": "0"
1452
+ },
1453
+ "usbhid": {
1454
+ "size": "53248",
1455
+ "refcount": "0"
1456
+ },
1457
+ "hid": {
1458
+ "size": "122880",
1459
+ "refcount": "2"
1460
+ },
1461
+ "sr_mod": {
1462
+ "size": "24576",
1463
+ "refcount": "0"
1464
+ },
1465
+ "cdrom": {
1466
+ "size": "61440",
1467
+ "refcount": "1"
1468
+ },
1469
+ "sd_mod": {
1470
+ "size": "45056",
1471
+ "refcount": "3"
1472
+ },
1473
+ "ata_generic": {
1474
+ "size": "16384",
1475
+ "refcount": "0",
1476
+ "version": "0.2.15"
1477
+ },
1478
+ "crc32c_intel": {
1479
+ "size": "24576",
1480
+ "refcount": "2"
1481
+ },
1482
+ "aesni_intel": {
1483
+ "size": "167936",
1484
+ "refcount": "1"
1485
+ },
1486
+ "aes_x86_64": {
1487
+ "size": "20480",
1488
+ "refcount": "1"
1489
+ },
1490
+ "glue_helper": {
1491
+ "size": "16384",
1492
+ "refcount": "1"
1493
+ },
1494
+ "lrw": {
1495
+ "size": "16384",
1496
+ "refcount": "1"
1497
+ },
1498
+ "gf128mul": {
1499
+ "size": "16384",
1500
+ "refcount": "1"
1501
+ },
1502
+ "ablk_helper": {
1503
+ "size": "16384",
1504
+ "refcount": "1"
1505
+ },
1506
+ "cryptd": {
1507
+ "size": "24576",
1508
+ "refcount": "3"
1509
+ },
1510
+ "psmouse": {
1511
+ "size": "135168",
1512
+ "refcount": "0"
1513
+ },
1514
+ "ahci": {
1515
+ "size": "36864",
1516
+ "refcount": "2",
1517
+ "version": "3.0"
1518
+ },
1519
+ "libahci": {
1520
+ "size": "32768",
1521
+ "refcount": "1"
1522
+ },
1523
+ "i2c_piix4": {
1524
+ "size": "24576",
1525
+ "refcount": "0"
1526
+ },
1527
+ "ohci_pci": {
1528
+ "size": "16384",
1529
+ "refcount": "0"
1530
+ },
1531
+ "ehci_pci": {
1532
+ "size": "16384",
1533
+ "refcount": "0"
1534
+ },
1535
+ "ohci_hcd": {
1536
+ "size": "53248",
1537
+ "refcount": "1"
1538
+ },
1539
+ "ehci_hcd": {
1540
+ "size": "81920",
1541
+ "refcount": "1"
1542
+ },
1543
+ "usbcore": {
1544
+ "size": "249856",
1545
+ "refcount": "5"
1546
+ },
1547
+ "usb_common": {
1548
+ "size": "16384",
1549
+ "refcount": "1"
1550
+ },
1551
+ "ata_piix": {
1552
+ "size": "36864",
1553
+ "refcount": "0",
1554
+ "version": "2.13"
1555
+ },
1556
+ "e1000": {
1557
+ "size": "143360",
1558
+ "refcount": "0",
1559
+ "version": "7.3.21-k8-NAPI"
1560
+ },
1561
+ "libata": {
1562
+ "size": "249856",
1563
+ "refcount": "4",
1564
+ "version": "3.00"
1565
+ },
1566
+ "scsi_mod": {
1567
+ "size": "225280",
1568
+ "refcount": "4"
1569
+ }
1570
+ }
1571
+ },
1572
+ "keys": {
1573
+ "ssh": {
1574
+ "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local",
1575
+ "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local"
1576
+ }
1577
+ },
1578
+ "languages": {
1579
+ "ruby": {
1580
+ "bin_dir": "/usr/local/bin",
1581
+ "gem_bin": "/usr/local/bin/gem",
1582
+ "gems_dir": "/usr/local/gems",
1583
+ "ruby_bin": "/usr/local/bin/ruby"
1584
+ },
1585
+ "powershell": null
1586
+ },
1587
+ "lsb": {
1588
+ "id": "Debian",
1589
+ "description": "Debian GNU/Linux 9.0 (stretch)",
1590
+ "release": "9.0",
1591
+ "codename": "stretch"
1592
+ },
1593
+ "macaddress": "11:11:11:11:11:11",
1594
+ "machinename": "Fauxhai",
1595
+ "memory": {
1596
+ "total": "1048576kB"
1597
+ },
1598
+ "network": {
1599
+ "interfaces": {
1600
+ "lo": {
1601
+ "mtu": "65536",
1602
+ "flags": [
1603
+ "LOOPBACK",
1604
+ "UP",
1605
+ "LOWER_UP"
1606
+ ],
1607
+ "encapsulation": "Loopback",
1608
+ "addresses": {
1609
+ "127.0.0.1": {
1610
+ "family": "inet",
1611
+ "prefixlen": "8",
1612
+ "netmask": "255.0.0.0",
1613
+ "scope": "Node",
1614
+ "ip_scope": "LOOPBACK"
1615
+ },
1616
+ "::1": {
1617
+ "family": "inet6",
1618
+ "prefixlen": "128",
1619
+ "scope": "Node",
1620
+ "tags": [
1621
+
1622
+ ],
1623
+ "ip_scope": "LINK LOCAL LOOPBACK"
1624
+ }
1625
+ },
1626
+ "state": "unknown"
1627
+ },
1628
+ "eth0": {
1629
+ "type": "eth",
1630
+ "number": "0",
1631
+ "mtu": "1500",
1632
+ "flags": [
1633
+ "BROADCAST",
1634
+ "MULTICAST",
1635
+ "UP",
1636
+ "LOWER_UP"
1637
+ ],
1638
+ "encapsulation": "Ethernet",
1639
+ "addresses": {
1640
+ "11:11:11:11:11:11": {
1641
+ "family": "lladdr"
1642
+ },
1643
+ "10.0.0.2": {
1644
+ "family": "inet",
1645
+ "prefixlen": "24",
1646
+ "netmask": "255.255.255.0",
1647
+ "broadcast": "10.0.0.255",
1648
+ "scope": "Global",
1649
+ "ip_scope": "RFC1918 PRIVATE"
1650
+ },
1651
+ "fe80::11:1111:1111:1111": {
1652
+ "family": "inet6",
1653
+ "prefixlen": "64",
1654
+ "scope": "Link",
1655
+ "tags": [
1656
+
1657
+ ],
1658
+ "ip_scope": "LINK LOCAL UNICAST"
1659
+ }
1660
+ },
1661
+ "state": "up",
1662
+ "arp": {
1663
+ "10.0.0.1": "fe:ff:ff:ff:ff:ff"
1664
+ },
1665
+ "routes": [
1666
+ {
1667
+ "destination": "default",
1668
+ "family": "inet",
1669
+ "via": "10.0.0.1"
1670
+ },
1671
+ {
1672
+ "destination": "10.0.0.0/24",
1673
+ "family": "inet",
1674
+ "scope": "link",
1675
+ "proto": "kernel",
1676
+ "src": "10.0.0.2"
1677
+ },
1678
+ {
1679
+ "destination": "fe80::/64",
1680
+ "family": "inet6",
1681
+ "metric": "256",
1682
+ "proto": "kernel"
1683
+ }
1684
+ ],
1685
+ "ring_params": {
1686
+ }
1687
+ }
1688
+ },
1689
+ "default_interface": "eth0",
1690
+ "default_gateway": "10.0.0.1"
1691
+ },
1692
+ "ohai_time": 1497988346.0974302,
1693
+ "os": "linux",
1694
+ "os_version": "4.9.0-3-amd64",
1695
+ "packages": {
1696
+ "adduser": {
1697
+ "version": "3.115",
1698
+ "arch": "all"
1699
+ },
1700
+ "anacron": {
1701
+ "version": "2.3-24",
1702
+ "arch": "amd64"
1703
+ },
1704
+ "apt": {
1705
+ "version": "1.4.6",
1706
+ "arch": "amd64"
1707
+ },
1708
+ "apt-listchanges": {
1709
+ "version": "3.10",
1710
+ "arch": "all"
1711
+ },
1712
+ "apt-utils": {
1713
+ "version": "1.4.6",
1714
+ "arch": "amd64"
1715
+ },
1716
+ "avahi-autoipd": {
1717
+ "version": "0.6.32-2",
1718
+ "arch": "amd64"
1719
+ },
1720
+ "base-files": {
1721
+ "version": "9.9",
1722
+ "arch": "amd64"
1723
+ },
1724
+ "base-passwd": {
1725
+ "version": "3.5.43",
1726
+ "arch": "amd64"
1727
+ },
1728
+ "bash": {
1729
+ "version": "4.4-5",
1730
+ "arch": "amd64"
1731
+ },
1732
+ "bash-completion": {
1733
+ "version": "1:2.1-4.3",
1734
+ "arch": "all"
1735
+ },
1736
+ "bind9-host": {
1737
+ "version": "1:9.10.3.dfsg.P4-12.3",
1738
+ "arch": "amd64"
1739
+ },
1740
+ "bluetooth": {
1741
+ "version": "5.43-2",
1742
+ "arch": "all"
1743
+ },
1744
+ "bluez": {
1745
+ "version": "5.43-2",
1746
+ "arch": "amd64"
1747
+ },
1748
+ "bsdmainutils": {
1749
+ "version": "9.0.12+nmu1",
1750
+ "arch": "amd64"
1751
+ },
1752
+ "bsdutils": {
1753
+ "version": "1:2.29.2-1",
1754
+ "arch": "amd64"
1755
+ },
1756
+ "busybox": {
1757
+ "version": "1:1.22.0-19+b3",
1758
+ "arch": "amd64"
1759
+ },
1760
+ "bzip2": {
1761
+ "version": "1.0.6-8.1",
1762
+ "arch": "amd64"
1763
+ },
1764
+ "ca-certificates": {
1765
+ "version": "20161130+nmu1",
1766
+ "arch": "all"
1767
+ },
1768
+ "chef": {
1769
+ "version": "13.1.31-1",
1770
+ "arch": "amd64"
1771
+ },
1772
+ "console-setup": {
1773
+ "version": "1.164",
1774
+ "arch": "all"
1775
+ },
1776
+ "console-setup-linux": {
1777
+ "version": "1.164",
1778
+ "arch": "all"
1779
+ },
1780
+ "coreutils": {
1781
+ "version": "8.26-3",
1782
+ "arch": "amd64"
1783
+ },
1784
+ "cpio": {
1785
+ "version": "2.11+dfsg-6",
1786
+ "arch": "amd64"
1787
+ },
1788
+ "crda": {
1789
+ "version": "3.18-1",
1790
+ "arch": "amd64"
1791
+ },
1792
+ "cron": {
1793
+ "version": "3.0pl1-128+b1",
1794
+ "arch": "amd64"
1795
+ },
1796
+ "curl": {
1797
+ "version": "7.52.1-5",
1798
+ "arch": "amd64"
1799
+ },
1800
+ "dash": {
1801
+ "version": "0.5.8-2.4",
1802
+ "arch": "amd64"
1803
+ },
1804
+ "dbus": {
1805
+ "version": "1.10.18-1",
1806
+ "arch": "amd64"
1807
+ },
1808
+ "debconf": {
1809
+ "version": "1.5.61",
1810
+ "arch": "all"
1811
+ },
1812
+ "debconf-i18n": {
1813
+ "version": "1.5.61",
1814
+ "arch": "all"
1815
+ },
1816
+ "debian-archive-keyring": {
1817
+ "version": "2017.5",
1818
+ "arch": "all"
1819
+ },
1820
+ "debian-faq": {
1821
+ "version": "8.1",
1822
+ "arch": "all"
1823
+ },
1824
+ "debianutils": {
1825
+ "version": "4.8.1.1",
1826
+ "arch": "amd64"
1827
+ },
1828
+ "dh-python": {
1829
+ "version": "2.20170125",
1830
+ "arch": "all"
1831
+ },
1832
+ "dictionaries-common": {
1833
+ "version": "1.27.2",
1834
+ "arch": "all"
1835
+ },
1836
+ "diffutils": {
1837
+ "version": "1:3.5-3",
1838
+ "arch": "amd64"
1839
+ },
1840
+ "discover": {
1841
+ "version": "2.1.2-7.1",
1842
+ "arch": "amd64"
1843
+ },
1844
+ "discover-data": {
1845
+ "version": "2.2013.01.11",
1846
+ "arch": "all"
1847
+ },
1848
+ "distro-info-data": {
1849
+ "version": "0.36",
1850
+ "arch": "all"
1851
+ },
1852
+ "dmidecode": {
1853
+ "version": "3.0-4",
1854
+ "arch": "amd64"
1855
+ },
1856
+ "dmsetup": {
1857
+ "version": "2:1.02.137-2",
1858
+ "arch": "amd64"
1859
+ },
1860
+ "doc-debian": {
1861
+ "version": "6.4",
1862
+ "arch": "all"
1863
+ },
1864
+ "dpkg": {
1865
+ "version": "1.18.24",
1866
+ "arch": "amd64"
1867
+ },
1868
+ "e2fslibs": {
1869
+ "version": "1.43.4-2",
1870
+ "arch": "amd64"
1871
+ },
1872
+ "e2fsprogs": {
1873
+ "version": "1.43.4-2",
1874
+ "arch": "amd64"
1875
+ },
1876
+ "eject": {
1877
+ "version": "2.1.5+deb1+cvs20081104-13.2",
1878
+ "arch": "amd64"
1879
+ },
1880
+ "emacsen-common": {
1881
+ "version": "2.0.8",
1882
+ "arch": "all"
1883
+ },
1884
+ "exim4": {
1885
+ "version": "4.89-2+deb9u1",
1886
+ "arch": "all"
1887
+ },
1888
+ "exim4-base": {
1889
+ "version": "4.89-2+deb9u1",
1890
+ "arch": "amd64"
1891
+ },
1892
+ "exim4-config": {
1893
+ "version": "4.89-2+deb9u1",
1894
+ "arch": "all"
1895
+ },
1896
+ "exim4-daemon-light": {
1897
+ "version": "4.89-2+deb9u1",
1898
+ "arch": "amd64"
1899
+ },
1900
+ "file": {
1901
+ "version": "1:5.30-1",
1902
+ "arch": "amd64"
1903
+ },
1904
+ "findutils": {
1905
+ "version": "4.6.0+git+20161106-2",
1906
+ "arch": "amd64"
1907
+ },
1908
+ "gcc-6-base": {
1909
+ "version": "6.3.0-18",
1910
+ "arch": "amd64"
1911
+ },
1912
+ "geoip-database": {
1913
+ "version": "20170512-1",
1914
+ "arch": "all"
1915
+ },
1916
+ "gettext-base": {
1917
+ "version": "0.19.8.1-2",
1918
+ "arch": "amd64"
1919
+ },
1920
+ "gnupg": {
1921
+ "version": "2.1.18-6",
1922
+ "arch": "amd64"
1923
+ },
1924
+ "gnupg-agent": {
1925
+ "version": "2.1.18-6",
1926
+ "arch": "amd64"
1927
+ },
1928
+ "gpgv": {
1929
+ "version": "2.1.18-6",
1930
+ "arch": "amd64"
1931
+ },
1932
+ "grep": {
1933
+ "version": "2.27-2",
1934
+ "arch": "amd64"
1935
+ },
1936
+ "groff-base": {
1937
+ "version": "1.22.3-9",
1938
+ "arch": "amd64"
1939
+ },
1940
+ "grub-common": {
1941
+ "version": "2.02~beta3-5",
1942
+ "arch": "amd64"
1943
+ },
1944
+ "grub-pc": {
1945
+ "version": "2.02~beta3-5",
1946
+ "arch": "amd64"
1947
+ },
1948
+ "grub-pc-bin": {
1949
+ "version": "2.02~beta3-5",
1950
+ "arch": "amd64"
1951
+ },
1952
+ "grub2-common": {
1953
+ "version": "2.02~beta3-5",
1954
+ "arch": "amd64"
1955
+ },
1956
+ "guile-2.0-libs": {
1957
+ "version": "2.0.13+1-4",
1958
+ "arch": "amd64"
1959
+ },
1960
+ "gzip": {
1961
+ "version": "1.6-5+b1",
1962
+ "arch": "amd64"
1963
+ },
1964
+ "hdparm": {
1965
+ "version": "9.51+ds-1",
1966
+ "arch": "amd64"
1967
+ },
1968
+ "hostname": {
1969
+ "version": "3.18+b1",
1970
+ "arch": "amd64"
1971
+ },
1972
+ "iamerican": {
1973
+ "version": "3.4.00-5",
1974
+ "arch": "all"
1975
+ },
1976
+ "ibritish": {
1977
+ "version": "3.4.00-5",
1978
+ "arch": "all"
1979
+ },
1980
+ "ienglish-common": {
1981
+ "version": "3.4.00-5",
1982
+ "arch": "all"
1983
+ },
1984
+ "ifupdown": {
1985
+ "version": "0.8.19",
1986
+ "arch": "amd64"
1987
+ },
1988
+ "init": {
1989
+ "version": "1.48",
1990
+ "arch": "amd64"
1991
+ },
1992
+ "init-system-helpers": {
1993
+ "version": "1.48",
1994
+ "arch": "all"
1995
+ },
1996
+ "initramfs-tools": {
1997
+ "version": "0.130",
1998
+ "arch": "all"
1999
+ },
2000
+ "initramfs-tools-core": {
2001
+ "version": "0.130",
2002
+ "arch": "all"
2003
+ },
2004
+ "installation-report": {
2005
+ "version": "2.62",
2006
+ "arch": "all"
2007
+ },
2008
+ "iproute2": {
2009
+ "version": "4.9.0-1",
2010
+ "arch": "amd64"
2011
+ },
2012
+ "iptables": {
2013
+ "version": "1.6.0+snapshot20161117-6",
2014
+ "arch": "amd64"
2015
+ },
2016
+ "iputils-ping": {
2017
+ "version": "3:20161105-1",
2018
+ "arch": "amd64"
2019
+ },
2020
+ "isc-dhcp-client": {
2021
+ "version": "4.3.5-3",
2022
+ "arch": "amd64"
2023
+ },
2024
+ "isc-dhcp-common": {
2025
+ "version": "4.3.5-3",
2026
+ "arch": "amd64"
2027
+ },
2028
+ "iso-codes": {
2029
+ "version": "3.75-1",
2030
+ "arch": "all"
2031
+ },
2032
+ "ispell": {
2033
+ "version": "3.4.00-5",
2034
+ "arch": "amd64"
2035
+ },
2036
+ "iw": {
2037
+ "version": "4.9-0.1",
2038
+ "arch": "amd64"
2039
+ },
2040
+ "kbd": {
2041
+ "version": "2.0.3-2+b1",
2042
+ "arch": "amd64"
2043
+ },
2044
+ "keyboard-configuration": {
2045
+ "version": "1.164",
2046
+ "arch": "all"
2047
+ },
2048
+ "klibc-utils": {
2049
+ "version": "2.0.4-9",
2050
+ "arch": "amd64"
2051
+ },
2052
+ "kmod": {
2053
+ "version": "23-2",
2054
+ "arch": "amd64"
2055
+ },
2056
+ "krb5-locales": {
2057
+ "version": "1.15-1",
2058
+ "arch": "all"
2059
+ },
2060
+ "laptop-detect": {
2061
+ "version": "0.13.8",
2062
+ "arch": "amd64"
2063
+ },
2064
+ "less": {
2065
+ "version": "481-2.1",
2066
+ "arch": "amd64"
2067
+ },
2068
+ "libacl1": {
2069
+ "version": "2.2.52-3+b1",
2070
+ "arch": "amd64"
2071
+ },
2072
+ "libapparmor1": {
2073
+ "version": "2.11.0-3",
2074
+ "arch": "amd64"
2075
+ },
2076
+ "libapt-inst2.0": {
2077
+ "version": "1.4.6",
2078
+ "arch": "amd64"
2079
+ },
2080
+ "libapt-pkg5.0": {
2081
+ "version": "1.4.6",
2082
+ "arch": "amd64"
2083
+ },
2084
+ "libassuan0": {
2085
+ "version": "2.4.3-2",
2086
+ "arch": "amd64"
2087
+ },
2088
+ "libattr1": {
2089
+ "version": "1:2.4.47-2+b2",
2090
+ "arch": "amd64"
2091
+ },
2092
+ "libaudit-common": {
2093
+ "version": "1:2.6.7-2",
2094
+ "arch": "all"
2095
+ },
2096
+ "libaudit1": {
2097
+ "version": "1:2.6.7-2",
2098
+ "arch": "amd64"
2099
+ },
2100
+ "libbind9-140": {
2101
+ "version": "1:9.10.3.dfsg.P4-12.3",
2102
+ "arch": "amd64"
2103
+ },
2104
+ "libblkid1": {
2105
+ "version": "2.29.2-1",
2106
+ "arch": "amd64"
2107
+ },
2108
+ "libbsd0": {
2109
+ "version": "0.8.3-1",
2110
+ "arch": "amd64"
2111
+ },
2112
+ "libbz2-1.0": {
2113
+ "version": "1.0.6-8.1",
2114
+ "arch": "amd64"
2115
+ },
2116
+ "libc-bin": {
2117
+ "version": "2.24-11+deb9u1",
2118
+ "arch": "amd64"
2119
+ },
2120
+ "libc-l10n": {
2121
+ "version": "2.24-11+deb9u1",
2122
+ "arch": "all"
2123
+ },
2124
+ "libc6": {
2125
+ "version": "2.24-11+deb9u1",
2126
+ "arch": "amd64"
2127
+ },
2128
+ "libcap-ng0": {
2129
+ "version": "0.7.7-3+b1",
2130
+ "arch": "amd64"
2131
+ },
2132
+ "libcap2": {
2133
+ "version": "1:2.25-1",
2134
+ "arch": "amd64"
2135
+ },
2136
+ "libclass-isa-perl": {
2137
+ "version": "0.36-5",
2138
+ "arch": "all"
2139
+ },
2140
+ "libcomerr2": {
2141
+ "version": "1.43.4-2",
2142
+ "arch": "amd64"
2143
+ },
2144
+ "libcryptsetup4": {
2145
+ "version": "2:1.7.3-4",
2146
+ "arch": "amd64"
2147
+ },
2148
+ "libcurl3": {
2149
+ "version": "7.52.1-5",
2150
+ "arch": "amd64"
2151
+ },
2152
+ "libcurl3-gnutls": {
2153
+ "version": "7.52.1-5",
2154
+ "arch": "amd64"
2155
+ },
2156
+ "libdaemon0": {
2157
+ "version": "0.14-6",
2158
+ "arch": "amd64"
2159
+ },
2160
+ "libdb5.3": {
2161
+ "version": "5.3.28-12+b1",
2162
+ "arch": "amd64"
2163
+ },
2164
+ "libdbus-1-3": {
2165
+ "version": "1.10.18-1",
2166
+ "arch": "amd64"
2167
+ },
2168
+ "libdebconfclient0": {
2169
+ "version": "0.227",
2170
+ "arch": "amd64"
2171
+ },
2172
+ "libdevmapper1.02.1": {
2173
+ "version": "2:1.02.137-2",
2174
+ "arch": "amd64"
2175
+ },
2176
+ "libdiscover2": {
2177
+ "version": "2.1.2-7.1",
2178
+ "arch": "amd64"
2179
+ },
2180
+ "libdns-export162": {
2181
+ "version": "1:9.10.3.dfsg.P4-12.3",
2182
+ "arch": "amd64"
2183
+ },
2184
+ "libdns162": {
2185
+ "version": "1:9.10.3.dfsg.P4-12.3",
2186
+ "arch": "amd64"
2187
+ },
2188
+ "libedit2": {
2189
+ "version": "3.1-20160903-3",
2190
+ "arch": "amd64"
2191
+ },
2192
+ "libelf1": {
2193
+ "version": "0.168-1",
2194
+ "arch": "amd64"
2195
+ },
2196
+ "libestr0": {
2197
+ "version": "0.1.10-2",
2198
+ "arch": "amd64"
2199
+ },
2200
+ "libexpat1": {
2201
+ "version": "2.2.0-2",
2202
+ "arch": "amd64"
2203
+ },
2204
+ "libfastjson4": {
2205
+ "version": "0.99.4-1",
2206
+ "arch": "amd64"
2207
+ },
2208
+ "libfdisk1": {
2209
+ "version": "2.29.2-1",
2210
+ "arch": "amd64"
2211
+ },
2212
+ "libffi6": {
2213
+ "version": "3.2.1-6",
2214
+ "arch": "amd64"
2215
+ },
2216
+ "libfreetype6": {
2217
+ "version": "2.6.3-3.2",
2218
+ "arch": "amd64"
2219
+ },
2220
+ "libfribidi0": {
2221
+ "version": "0.19.7-1+b1",
2222
+ "arch": "amd64"
2223
+ },
2224
+ "libfuse2": {
2225
+ "version": "2.9.7-1",
2226
+ "arch": "amd64"
2227
+ },
2228
+ "libgc1c2": {
2229
+ "version": "1:7.4.2-8",
2230
+ "arch": "amd64"
2231
+ },
2232
+ "libgcc1": {
2233
+ "version": "1:6.3.0-18",
2234
+ "arch": "amd64"
2235
+ },
2236
+ "libgcrypt20": {
2237
+ "version": "1.7.6-2",
2238
+ "arch": "amd64"
2239
+ },
2240
+ "libgdbm3": {
2241
+ "version": "1.8.3-14",
2242
+ "arch": "amd64"
2243
+ },
2244
+ "libgeoip1": {
2245
+ "version": "1.6.9-4",
2246
+ "arch": "amd64"
2247
+ },
2248
+ "libglib2.0-0": {
2249
+ "version": "2.50.3-2",
2250
+ "arch": "amd64"
2251
+ },
2252
+ "libglib2.0-data": {
2253
+ "version": "2.50.3-2",
2254
+ "arch": "all"
2255
+ },
2256
+ "libgmp10": {
2257
+ "version": "2:6.1.2+dfsg-1",
2258
+ "arch": "amd64"
2259
+ },
2260
+ "libgnutls30": {
2261
+ "version": "3.5.8-5+deb9u1",
2262
+ "arch": "amd64"
2263
+ },
2264
+ "libgpg-error0": {
2265
+ "version": "1.26-2",
2266
+ "arch": "amd64"
2267
+ },
2268
+ "libgsasl7": {
2269
+ "version": "1.8.0-8+b2",
2270
+ "arch": "amd64"
2271
+ },
2272
+ "libgssapi-krb5-2": {
2273
+ "version": "1.15-1",
2274
+ "arch": "amd64"
2275
+ },
2276
+ "libhogweed4": {
2277
+ "version": "3.3-1+b1",
2278
+ "arch": "amd64"
2279
+ },
2280
+ "libicu57": {
2281
+ "version": "57.1-6",
2282
+ "arch": "amd64"
2283
+ },
2284
+ "libidn11": {
2285
+ "version": "1.33-1",
2286
+ "arch": "amd64"
2287
+ },
2288
+ "libidn2-0": {
2289
+ "version": "0.16-1",
2290
+ "arch": "amd64"
2291
+ },
2292
+ "libip4tc0": {
2293
+ "version": "1.6.0+snapshot20161117-6",
2294
+ "arch": "amd64"
2295
+ },
2296
+ "libip6tc0": {
2297
+ "version": "1.6.0+snapshot20161117-6",
2298
+ "arch": "amd64"
2299
+ },
2300
+ "libiptc0": {
2301
+ "version": "1.6.0+snapshot20161117-6",
2302
+ "arch": "amd64"
2303
+ },
2304
+ "libisc-export160": {
2305
+ "version": "1:9.10.3.dfsg.P4-12.3",
2306
+ "arch": "amd64"
2307
+ },
2308
+ "libisc160": {
2309
+ "version": "1:9.10.3.dfsg.P4-12.3",
2310
+ "arch": "amd64"
2311
+ },
2312
+ "libisccc140": {
2313
+ "version": "1:9.10.3.dfsg.P4-12.3",
2314
+ "arch": "amd64"
2315
+ },
2316
+ "libisccfg140": {
2317
+ "version": "1:9.10.3.dfsg.P4-12.3",
2318
+ "arch": "amd64"
2319
+ },
2320
+ "libiw30": {
2321
+ "version": "30~pre9-12+b1",
2322
+ "arch": "amd64"
2323
+ },
2324
+ "libk5crypto3": {
2325
+ "version": "1.15-1",
2326
+ "arch": "amd64"
2327
+ },
2328
+ "libkeyutils1": {
2329
+ "version": "1.5.9-9",
2330
+ "arch": "amd64"
2331
+ },
2332
+ "libklibc": {
2333
+ "version": "2.0.4-9",
2334
+ "arch": "amd64"
2335
+ },
2336
+ "libkmod2": {
2337
+ "version": "23-2",
2338
+ "arch": "amd64"
2339
+ },
2340
+ "libkrb5-3": {
2341
+ "version": "1.15-1",
2342
+ "arch": "amd64"
2343
+ },
2344
+ "libkrb5support0": {
2345
+ "version": "1.15-1",
2346
+ "arch": "amd64"
2347
+ },
2348
+ "libksba8": {
2349
+ "version": "1.3.5-2",
2350
+ "arch": "amd64"
2351
+ },
2352
+ "libkyotocabinet16v5": {
2353
+ "version": "1.2.76-4.2+b1",
2354
+ "arch": "amd64"
2355
+ },
2356
+ "libldap-2.4-2": {
2357
+ "version": "2.4.44+dfsg-5",
2358
+ "arch": "amd64"
2359
+ },
2360
+ "libldap-common": {
2361
+ "version": "2.4.44+dfsg-5",
2362
+ "arch": "all"
2363
+ },
2364
+ "liblocale-gettext-perl": {
2365
+ "version": "1.07-3+b1",
2366
+ "arch": "amd64"
2367
+ },
2368
+ "liblockfile-bin": {
2369
+ "version": "1.14-1+b1",
2370
+ "arch": "amd64"
2371
+ },
2372
+ "liblogging-stdlog0": {
2373
+ "version": "1.0.5-2+b2",
2374
+ "arch": "amd64"
2375
+ },
2376
+ "liblognorm5": {
2377
+ "version": "2.0.1-1.1+b1",
2378
+ "arch": "amd64"
2379
+ },
2380
+ "libltdl7": {
2381
+ "version": "2.4.6-2",
2382
+ "arch": "amd64"
2383
+ },
2384
+ "liblwres141": {
2385
+ "version": "1:9.10.3.dfsg.P4-12.3",
2386
+ "arch": "amd64"
2387
+ },
2388
+ "liblz4-1": {
2389
+ "version": "0.0~r131-2+b1",
2390
+ "arch": "amd64"
2391
+ },
2392
+ "liblzma5": {
2393
+ "version": "5.2.2-1.2+b1",
2394
+ "arch": "amd64"
2395
+ },
2396
+ "liblzo2-2": {
2397
+ "version": "2.08-1.2+b2",
2398
+ "arch": "amd64"
2399
+ },
2400
+ "libmagic-mgc": {
2401
+ "version": "1:5.30-1",
2402
+ "arch": "amd64"
2403
+ },
2404
+ "libmagic1": {
2405
+ "version": "1:5.30-1",
2406
+ "arch": "amd64"
2407
+ },
2408
+ "libmailutils5": {
2409
+ "version": "1:3.1.1-1",
2410
+ "arch": "amd64"
2411
+ },
2412
+ "libmariadbclient18": {
2413
+ "version": "10.1.23-9+deb9u1",
2414
+ "arch": "amd64"
2415
+ },
2416
+ "libmnl0": {
2417
+ "version": "1.0.4-2",
2418
+ "arch": "amd64"
2419
+ },
2420
+ "libmount1": {
2421
+ "version": "2.29.2-1",
2422
+ "arch": "amd64"
2423
+ },
2424
+ "libmpdec2": {
2425
+ "version": "2.4.2-1",
2426
+ "arch": "amd64"
2427
+ },
2428
+ "libncurses5": {
2429
+ "version": "6.0+20161126-1",
2430
+ "arch": "amd64"
2431
+ },
2432
+ "libncursesw5": {
2433
+ "version": "6.0+20161126-1",
2434
+ "arch": "amd64"
2435
+ },
2436
+ "libnetfilter-conntrack3": {
2437
+ "version": "1.0.6-2",
2438
+ "arch": "amd64"
2439
+ },
2440
+ "libnettle6": {
2441
+ "version": "3.3-1+b1",
2442
+ "arch": "amd64"
2443
+ },
2444
+ "libnewt0.52": {
2445
+ "version": "0.52.19-1+b1",
2446
+ "arch": "amd64"
2447
+ },
2448
+ "libnfnetlink0": {
2449
+ "version": "1.0.1-3",
2450
+ "arch": "amd64"
2451
+ },
2452
+ "libnghttp2-14": {
2453
+ "version": "1.18.1-1",
2454
+ "arch": "amd64"
2455
+ },
2456
+ "libnl-3-200": {
2457
+ "version": "3.2.27-2",
2458
+ "arch": "amd64"
2459
+ },
2460
+ "libnl-genl-3-200": {
2461
+ "version": "3.2.27-2",
2462
+ "arch": "amd64"
2463
+ },
2464
+ "libnpth0": {
2465
+ "version": "1.3-1",
2466
+ "arch": "amd64"
2467
+ },
2468
+ "libntlm0": {
2469
+ "version": "1.4-8",
2470
+ "arch": "amd64"
2471
+ },
2472
+ "libp11-kit0": {
2473
+ "version": "0.23.3-2",
2474
+ "arch": "amd64"
2475
+ },
2476
+ "libpam-modules": {
2477
+ "version": "1.1.8-3.6",
2478
+ "arch": "amd64"
2479
+ },
2480
+ "libpam-modules-bin": {
2481
+ "version": "1.1.8-3.6",
2482
+ "arch": "amd64"
2483
+ },
2484
+ "libpam-runtime": {
2485
+ "version": "1.1.8-3.6",
2486
+ "arch": "all"
2487
+ },
2488
+ "libpam-systemd": {
2489
+ "version": "232-25",
2490
+ "arch": "amd64"
2491
+ },
2492
+ "libpam0g": {
2493
+ "version": "1.1.8-3.6",
2494
+ "arch": "amd64"
2495
+ },
2496
+ "libpci3": {
2497
+ "version": "1:3.5.2-1",
2498
+ "arch": "amd64"
2499
+ },
2500
+ "libpcre3": {
2501
+ "version": "2:8.39-3",
2502
+ "arch": "amd64"
2503
+ },
2504
+ "libpcsclite1": {
2505
+ "version": "1.8.20-1",
2506
+ "arch": "amd64"
2507
+ },
2508
+ "libperl5.24": {
2509
+ "version": "5.24.1-3",
2510
+ "arch": "amd64"
2511
+ },
2512
+ "libpipeline1": {
2513
+ "version": "1.4.1-2",
2514
+ "arch": "amd64"
2515
+ },
2516
+ "libpng16-16": {
2517
+ "version": "1.6.28-1",
2518
+ "arch": "amd64"
2519
+ },
2520
+ "libpopt0": {
2521
+ "version": "1.16-10+b2",
2522
+ "arch": "amd64"
2523
+ },
2524
+ "libprocps6": {
2525
+ "version": "2:3.3.12-3",
2526
+ "arch": "amd64"
2527
+ },
2528
+ "libpsl5": {
2529
+ "version": "0.17.0-3",
2530
+ "arch": "amd64"
2531
+ },
2532
+ "libpython-stdlib": {
2533
+ "version": "2.7.13-2",
2534
+ "arch": "amd64"
2535
+ },
2536
+ "libpython2.7": {
2537
+ "version": "2.7.13-2",
2538
+ "arch": "amd64"
2539
+ },
2540
+ "libpython2.7-minimal": {
2541
+ "version": "2.7.13-2",
2542
+ "arch": "amd64"
2543
+ },
2544
+ "libpython2.7-stdlib": {
2545
+ "version": "2.7.13-2",
2546
+ "arch": "amd64"
2547
+ },
2548
+ "libpython3-stdlib": {
2549
+ "version": "3.5.3-1",
2550
+ "arch": "amd64"
2551
+ },
2552
+ "libpython3.5-minimal": {
2553
+ "version": "3.5.3-1",
2554
+ "arch": "amd64"
2555
+ },
2556
+ "libpython3.5-stdlib": {
2557
+ "version": "3.5.3-1",
2558
+ "arch": "amd64"
2559
+ },
2560
+ "libreadline7": {
2561
+ "version": "7.0-3",
2562
+ "arch": "amd64"
2563
+ },
2564
+ "librtmp1": {
2565
+ "version": "2.4+20151223.gitfa8646d.1-1+b1",
2566
+ "arch": "amd64"
2567
+ },
2568
+ "libsasl2-2": {
2569
+ "version": "2.1.27~101-g0780600+dfsg-3",
2570
+ "arch": "amd64"
2571
+ },
2572
+ "libsasl2-modules": {
2573
+ "version": "2.1.27~101-g0780600+dfsg-3",
2574
+ "arch": "amd64"
2575
+ },
2576
+ "libsasl2-modules-db": {
2577
+ "version": "2.1.27~101-g0780600+dfsg-3",
2578
+ "arch": "amd64"
2579
+ },
2580
+ "libseccomp2": {
2581
+ "version": "2.3.1-2.1",
2582
+ "arch": "amd64"
2583
+ },
2584
+ "libselinux1": {
2585
+ "version": "2.6-3+b1",
2586
+ "arch": "amd64"
2587
+ },
2588
+ "libsemanage-common": {
2589
+ "version": "2.6-2",
2590
+ "arch": "all"
2591
+ },
2592
+ "libsemanage1": {
2593
+ "version": "2.6-2",
2594
+ "arch": "amd64"
2595
+ },
2596
+ "libsepol1": {
2597
+ "version": "2.6-2",
2598
+ "arch": "amd64"
2599
+ },
2600
+ "libslang2": {
2601
+ "version": "2.3.1-5",
2602
+ "arch": "amd64"
2603
+ },
2604
+ "libsmartcols1": {
2605
+ "version": "2.29.2-1",
2606
+ "arch": "amd64"
2607
+ },
2608
+ "libsqlite3-0": {
2609
+ "version": "3.16.2-5",
2610
+ "arch": "amd64"
2611
+ },
2612
+ "libss2": {
2613
+ "version": "1.43.4-2",
2614
+ "arch": "amd64"
2615
+ },
2616
+ "libssh2-1": {
2617
+ "version": "1.7.0-1",
2618
+ "arch": "amd64"
2619
+ },
2620
+ "libssl1.0.2": {
2621
+ "version": "1.0.2l-2",
2622
+ "arch": "amd64"
2623
+ },
2624
+ "libssl1.1": {
2625
+ "version": "1.1.0f-3",
2626
+ "arch": "amd64"
2627
+ },
2628
+ "libstdc++6": {
2629
+ "version": "6.3.0-18",
2630
+ "arch": "amd64"
2631
+ },
2632
+ "libswitch-perl": {
2633
+ "version": "2.17-2",
2634
+ "arch": "all"
2635
+ },
2636
+ "libsystemd0": {
2637
+ "version": "232-25",
2638
+ "arch": "amd64"
2639
+ },
2640
+ "libtasn1-6": {
2641
+ "version": "4.10-1.1",
2642
+ "arch": "amd64"
2643
+ },
2644
+ "libtext-charwidth-perl": {
2645
+ "version": "0.04-7+b5",
2646
+ "arch": "amd64"
2647
+ },
2648
+ "libtext-iconv-perl": {
2649
+ "version": "1.7-5+b4",
2650
+ "arch": "amd64"
2651
+ },
2652
+ "libtext-wrapi18n-perl": {
2653
+ "version": "0.06-7.1",
2654
+ "arch": "all"
2655
+ },
2656
+ "libtinfo5": {
2657
+ "version": "6.0+20161126-1",
2658
+ "arch": "amd64"
2659
+ },
2660
+ "libudev1": {
2661
+ "version": "232-25",
2662
+ "arch": "amd64"
2663
+ },
2664
+ "libunistring0": {
2665
+ "version": "0.9.6+really0.9.3-0.1",
2666
+ "arch": "amd64"
2667
+ },
2668
+ "libusb-0.1-4": {
2669
+ "version": "2:0.1.12-30",
2670
+ "arch": "amd64"
2671
+ },
2672
+ "libusb-1.0-0": {
2673
+ "version": "2:1.0.21-1",
2674
+ "arch": "amd64"
2675
+ },
2676
+ "libustr-1.0-1": {
2677
+ "version": "1.0.4-6",
2678
+ "arch": "amd64"
2679
+ },
2680
+ "libuuid1": {
2681
+ "version": "2.29.2-1",
2682
+ "arch": "amd64"
2683
+ },
2684
+ "libwrap0": {
2685
+ "version": "7.6.q-26",
2686
+ "arch": "amd64"
2687
+ },
2688
+ "libx11-6": {
2689
+ "version": "2:1.6.4-3",
2690
+ "arch": "amd64"
2691
+ },
2692
+ "libx11-data": {
2693
+ "version": "2:1.6.4-3",
2694
+ "arch": "all"
2695
+ },
2696
+ "libxapian30": {
2697
+ "version": "1.4.3-2",
2698
+ "arch": "amd64"
2699
+ },
2700
+ "libxau6": {
2701
+ "version": "1:1.0.8-1",
2702
+ "arch": "amd64"
2703
+ },
2704
+ "libxcb1": {
2705
+ "version": "1.12-1",
2706
+ "arch": "amd64"
2707
+ },
2708
+ "libxdmcp6": {
2709
+ "version": "1:1.1.2-3",
2710
+ "arch": "amd64"
2711
+ },
2712
+ "libxext6": {
2713
+ "version": "2:1.3.3-1+b2",
2714
+ "arch": "amd64"
2715
+ },
2716
+ "libxml2": {
2717
+ "version": "2.9.4+dfsg1-2.2",
2718
+ "arch": "amd64"
2719
+ },
2720
+ "libxmuu1": {
2721
+ "version": "2:1.1.2-2",
2722
+ "arch": "amd64"
2723
+ },
2724
+ "libxtables12": {
2725
+ "version": "1.6.0+snapshot20161117-6",
2726
+ "arch": "amd64"
2727
+ },
2728
+ "linux-base": {
2729
+ "version": "4.5",
2730
+ "arch": "all"
2731
+ },
2732
+ "linux-image-4.9.0-3-amd64": {
2733
+ "version": "4.9.30-2+deb9u1",
2734
+ "arch": "amd64"
2735
+ },
2736
+ "linux-image-amd64": {
2737
+ "version": "4.9+80",
2738
+ "arch": "amd64"
2739
+ },
2740
+ "locales": {
2741
+ "version": "2.24-11+deb9u1",
2742
+ "arch": "all"
2743
+ },
2744
+ "login": {
2745
+ "version": "1:4.4-4.1",
2746
+ "arch": "amd64"
2747
+ },
2748
+ "logrotate": {
2749
+ "version": "3.11.0-0.1",
2750
+ "arch": "amd64"
2751
+ },
2752
+ "lsb-base": {
2753
+ "version": "9.20161125",
2754
+ "arch": "all"
2755
+ },
2756
+ "lsb-release": {
2757
+ "version": "9.20161125",
2758
+ "arch": "all"
2759
+ },
2760
+ "lsof": {
2761
+ "version": "4.89+dfsg-0.1",
2762
+ "arch": "amd64"
2763
+ },
2764
+ "mailutils": {
2765
+ "version": "1:3.1.1-1",
2766
+ "arch": "amd64"
2767
+ },
2768
+ "mailutils-common": {
2769
+ "version": "1:3.1.1-1",
2770
+ "arch": "all"
2771
+ },
2772
+ "man-db": {
2773
+ "version": "2.7.6.1-2",
2774
+ "arch": "amd64"
2775
+ },
2776
+ "manpages": {
2777
+ "version": "4.10-2",
2778
+ "arch": "all"
2779
+ },
2780
+ "mawk": {
2781
+ "version": "1.3.3-17+b3",
2782
+ "arch": "amd64"
2783
+ },
2784
+ "mime-support": {
2785
+ "version": "3.60",
2786
+ "arch": "all"
2787
+ },
2788
+ "mount": {
2789
+ "version": "2.29.2-1",
2790
+ "arch": "amd64"
2791
+ },
2792
+ "multiarch-support": {
2793
+ "version": "2.24-11+deb9u1",
2794
+ "arch": "amd64"
2795
+ },
2796
+ "mysql-common": {
2797
+ "version": "5.8+1.0.2",
2798
+ "arch": "all"
2799
+ },
2800
+ "nano": {
2801
+ "version": "2.7.4-1",
2802
+ "arch": "amd64"
2803
+ },
2804
+ "ncurses-base": {
2805
+ "version": "6.0+20161126-1",
2806
+ "arch": "all"
2807
+ },
2808
+ "ncurses-bin": {
2809
+ "version": "6.0+20161126-1",
2810
+ "arch": "amd64"
2811
+ },
2812
+ "ncurses-term": {
2813
+ "version": "6.0+20161126-1",
2814
+ "arch": "all"
2815
+ },
2816
+ "netbase": {
2817
+ "version": "5.4",
2818
+ "arch": "all"
2819
+ },
2820
+ "netcat-traditional": {
2821
+ "version": "1.10-41+b1",
2822
+ "arch": "amd64"
2823
+ },
2824
+ "openssh-client": {
2825
+ "version": "1:7.4p1-10",
2826
+ "arch": "amd64"
2827
+ },
2828
+ "openssh-server": {
2829
+ "version": "1:7.4p1-10",
2830
+ "arch": "amd64"
2831
+ },
2832
+ "openssh-sftp-server": {
2833
+ "version": "1:7.4p1-10",
2834
+ "arch": "amd64"
2835
+ },
2836
+ "openssl": {
2837
+ "version": "1.1.0f-3",
2838
+ "arch": "amd64"
2839
+ },
2840
+ "os-prober": {
2841
+ "version": "1.75",
2842
+ "arch": "amd64"
2843
+ },
2844
+ "passwd": {
2845
+ "version": "1:4.4-4.1",
2846
+ "arch": "amd64"
2847
+ },
2848
+ "pciutils": {
2849
+ "version": "1:3.5.2-1",
2850
+ "arch": "amd64"
2851
+ },
2852
+ "perl": {
2853
+ "version": "5.24.1-3",
2854
+ "arch": "amd64"
2855
+ },
2856
+ "perl-base": {
2857
+ "version": "5.24.1-3",
2858
+ "arch": "amd64"
2859
+ },
2860
+ "perl-modules-5.24": {
2861
+ "version": "5.24.1-3",
2862
+ "arch": "all"
2863
+ },
2864
+ "pinentry-curses": {
2865
+ "version": "1.0.0-2",
2866
+ "arch": "amd64"
2867
+ },
2868
+ "powermgmt-base": {
2869
+ "version": "1.31+nmu1",
2870
+ "arch": "all"
2871
+ },
2872
+ "powertop": {
2873
+ "version": "2.8-1+b1",
2874
+ "arch": "amd64"
2875
+ },
2876
+ "procps": {
2877
+ "version": "2:3.3.12-3",
2878
+ "arch": "amd64"
2879
+ },
2880
+ "psmisc": {
2881
+ "version": "22.21-2.1+b2",
2882
+ "arch": "amd64"
2883
+ },
2884
+ "python": {
2885
+ "version": "2.7.13-2",
2886
+ "arch": "amd64"
2887
+ },
2888
+ "python-apt-common": {
2889
+ "version": "1.4.0~beta3",
2890
+ "arch": "all"
2891
+ },
2892
+ "python-minimal": {
2893
+ "version": "2.7.13-2",
2894
+ "arch": "amd64"
2895
+ },
2896
+ "python2.7": {
2897
+ "version": "2.7.13-2",
2898
+ "arch": "amd64"
2899
+ },
2900
+ "python2.7-minimal": {
2901
+ "version": "2.7.13-2",
2902
+ "arch": "amd64"
2903
+ },
2904
+ "python3": {
2905
+ "version": "3.5.3-1",
2906
+ "arch": "amd64"
2907
+ },
2908
+ "python3-apt": {
2909
+ "version": "1.4.0~beta3",
2910
+ "arch": "amd64"
2911
+ },
2912
+ "python3-chardet": {
2913
+ "version": "2.3.0-2",
2914
+ "arch": "all"
2915
+ },
2916
+ "python3-debian": {
2917
+ "version": "0.1.30",
2918
+ "arch": "all"
2919
+ },
2920
+ "python3-debianbts": {
2921
+ "version": "2.6.1",
2922
+ "arch": "all"
2923
+ },
2924
+ "python3-httplib2": {
2925
+ "version": "0.9.2+dfsg-1",
2926
+ "arch": "all"
2927
+ },
2928
+ "python3-minimal": {
2929
+ "version": "3.5.3-1",
2930
+ "arch": "amd64"
2931
+ },
2932
+ "python3-pkg-resources": {
2933
+ "version": "33.1.1-1",
2934
+ "arch": "all"
2935
+ },
2936
+ "python3-pycurl": {
2937
+ "version": "7.43.0-2",
2938
+ "arch": "amd64"
2939
+ },
2940
+ "python3-pysimplesoap": {
2941
+ "version": "1.16-2",
2942
+ "arch": "all"
2943
+ },
2944
+ "python3-reportbug": {
2945
+ "version": "7.1.7",
2946
+ "arch": "all"
2947
+ },
2948
+ "python3-requests": {
2949
+ "version": "2.12.4-1",
2950
+ "arch": "all"
2951
+ },
2952
+ "python3-six": {
2953
+ "version": "1.10.0-3",
2954
+ "arch": "all"
2955
+ },
2956
+ "python3-urllib3": {
2957
+ "version": "1.19.1-1",
2958
+ "arch": "all"
2959
+ },
2960
+ "python3.5": {
2961
+ "version": "3.5.3-1",
2962
+ "arch": "amd64"
2963
+ },
2964
+ "python3.5-minimal": {
2965
+ "version": "3.5.3-1",
2966
+ "arch": "amd64"
2967
+ },
2968
+ "readline-common": {
2969
+ "version": "7.0-3",
2970
+ "arch": "all"
2971
+ },
2972
+ "rename": {
2973
+ "version": "0.20-4",
2974
+ "arch": "all"
2975
+ },
2976
+ "reportbug": {
2977
+ "version": "7.1.7",
2978
+ "arch": "all"
2979
+ },
2980
+ "rsyslog": {
2981
+ "version": "8.24.0-1",
2982
+ "arch": "amd64"
2983
+ },
2984
+ "sed": {
2985
+ "version": "4.4-1",
2986
+ "arch": "amd64"
2987
+ },
2988
+ "sensible-utils": {
2989
+ "version": "0.0.9",
2990
+ "arch": "all"
2991
+ },
2992
+ "sgml-base": {
2993
+ "version": "1.29",
2994
+ "arch": "all"
2995
+ },
2996
+ "shared-mime-info": {
2997
+ "version": "1.8-1",
2998
+ "arch": "amd64"
2999
+ },
3000
+ "systemd": {
3001
+ "version": "232-25",
3002
+ "arch": "amd64"
3003
+ },
3004
+ "systemd-sysv": {
3005
+ "version": "232-25",
3006
+ "arch": "amd64"
3007
+ },
3008
+ "sysvinit-utils": {
3009
+ "version": "2.88dsf-59.9",
3010
+ "arch": "amd64"
3011
+ },
3012
+ "tar": {
3013
+ "version": "1.29b-1.1",
3014
+ "arch": "amd64"
3015
+ },
3016
+ "task-english": {
3017
+ "version": "3.39",
3018
+ "arch": "all"
3019
+ },
3020
+ "task-laptop": {
3021
+ "version": "3.39",
3022
+ "arch": "all"
3023
+ },
3024
+ "task-ssh-server": {
3025
+ "version": "3.39",
3026
+ "arch": "all"
3027
+ },
3028
+ "tasksel": {
3029
+ "version": "3.39",
3030
+ "arch": "all"
3031
+ },
3032
+ "tasksel-data": {
3033
+ "version": "3.39",
3034
+ "arch": "all"
3035
+ },
3036
+ "tcpd": {
3037
+ "version": "7.6.q-26",
3038
+ "arch": "amd64"
3039
+ },
3040
+ "telnet": {
3041
+ "version": "0.17-41",
3042
+ "arch": "amd64"
3043
+ },
3044
+ "traceroute": {
3045
+ "version": "1:2.1.0-2",
3046
+ "arch": "amd64"
3047
+ },
3048
+ "tzdata": {
3049
+ "version": "2017b-1",
3050
+ "arch": "all"
3051
+ },
3052
+ "ucf": {
3053
+ "version": "3.0036",
3054
+ "arch": "all"
3055
+ },
3056
+ "udev": {
3057
+ "version": "232-25",
3058
+ "arch": "amd64"
3059
+ },
3060
+ "usbutils": {
3061
+ "version": "1:007-4+b1",
3062
+ "arch": "amd64"
3063
+ },
3064
+ "util-linux": {
3065
+ "version": "2.29.2-1",
3066
+ "arch": "amd64"
3067
+ },
3068
+ "util-linux-locales": {
3069
+ "version": "2.29.2-1",
3070
+ "arch": "all"
3071
+ },
3072
+ "vim-common": {
3073
+ "version": "2:8.0.0197-4",
3074
+ "arch": "all"
3075
+ },
3076
+ "vim-tiny": {
3077
+ "version": "2:8.0.0197-4",
3078
+ "arch": "amd64"
3079
+ },
3080
+ "wamerican": {
3081
+ "version": "7.1-1",
3082
+ "arch": "all"
3083
+ },
3084
+ "wget": {
3085
+ "version": "1.18-5",
3086
+ "arch": "amd64"
3087
+ },
3088
+ "whiptail": {
3089
+ "version": "0.52.19-1+b1",
3090
+ "arch": "amd64"
3091
+ },
3092
+ "wireless-regdb": {
3093
+ "version": "2016.06.10-1",
3094
+ "arch": "all"
3095
+ },
3096
+ "wireless-tools": {
3097
+ "version": "30~pre9-12+b1",
3098
+ "arch": "amd64"
3099
+ },
3100
+ "wpasupplicant": {
3101
+ "version": "2:2.4-1",
3102
+ "arch": "amd64"
3103
+ },
3104
+ "xauth": {
3105
+ "version": "1:1.0.9-1+b2",
3106
+ "arch": "amd64"
3107
+ },
3108
+ "xdg-user-dirs": {
3109
+ "version": "0.15-2+b1",
3110
+ "arch": "amd64"
3111
+ },
3112
+ "xkb-data": {
3113
+ "version": "2.19-1",
3114
+ "arch": "all"
3115
+ },
3116
+ "xml-core": {
3117
+ "version": "0.17",
3118
+ "arch": "all"
3119
+ },
3120
+ "xxd": {
3121
+ "version": "2:8.0.0197-4",
3122
+ "arch": "amd64"
3123
+ },
3124
+ "xz-utils": {
3125
+ "version": "5.2.2-1.2+b1",
3126
+ "arch": "amd64"
3127
+ },
3128
+ "zlib1g": {
3129
+ "version": "1:1.2.8.dfsg-5",
3130
+ "arch": "amd64"
3131
+ }
3132
+ },
3133
+ "platform": "debian",
3134
+ "platform_family": "debian",
3135
+ "platform_version": "9.0",
3136
+ "root_group": "root",
3137
+ "shard_seed": 251564527,
3138
+ "shells": [
3139
+ "/bin/sh",
3140
+ "/bin/dash",
3141
+ "/bin/bash",
3142
+ "/bin/rbash"
3143
+ ],
3144
+ "time": {
3145
+ "timezone": "GMT"
3146
+ },
3147
+ "uptime": "30 days 15 hours 07 minutes 30 seconds",
3148
+ "uptime_seconds": 2646450,
3149
+ "virtualization": {
3150
+ "systems": {
3151
+ }
3152
+ }
3153
+ }