spiceweasel 2.6.0 → 2.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (180) hide show
  1. checksums.yaml +6 -14
  2. data/README.md +33 -9
  3. data/bin/spiceweasel +3 -3
  4. data/lib/spiceweasel.rb +3 -2
  5. data/lib/spiceweasel/berksfile.rb +6 -10
  6. data/lib/spiceweasel/cli.rb +174 -129
  7. data/lib/spiceweasel/clusters.rb +31 -23
  8. data/lib/spiceweasel/command.rb +23 -5
  9. data/lib/spiceweasel/command_helper.rb +36 -2
  10. data/lib/spiceweasel/config.rb +4 -3
  11. data/lib/spiceweasel/cookbooks.rb +76 -57
  12. data/lib/spiceweasel/data_bags.rb +100 -64
  13. data/lib/spiceweasel/environments.rb +78 -56
  14. data/lib/spiceweasel/execute.rb +6 -7
  15. data/lib/spiceweasel/extract_local.rb +59 -46
  16. data/lib/spiceweasel/knife.rb +21 -20
  17. data/lib/spiceweasel/log.rb +5 -5
  18. data/lib/spiceweasel/nodes.rb +261 -193
  19. data/lib/spiceweasel/roles.rb +107 -76
  20. data/lib/spiceweasel/version.rb +5 -3
  21. data/test/chef-repo/Berksfile +4 -0
  22. data/test/chef-repo/Berksfile.lock +10 -0
  23. data/test/chef-repo/PASSWORD +1 -0
  24. data/test/chef-repo/cookbooks/abc/CHANGELOG.md +13 -0
  25. data/test/chef-repo/cookbooks/abc/README.md +68 -0
  26. data/test/chef-repo/cookbooks/abc/metadata.rb +7 -0
  27. data/test/chef-repo/cookbooks/abc/recipes/default.rb +8 -0
  28. data/test/chef-repo/cookbooks/def/CHANGELOG.md +13 -0
  29. data/test/chef-repo/cookbooks/def/README.md +68 -0
  30. data/test/chef-repo/cookbooks/def/metadata.rb +7 -0
  31. data/test/chef-repo/cookbooks/def/recipes/default.rb +8 -0
  32. data/test/chef-repo/cookbooks/fail1/README.md +68 -0
  33. data/test/chef-repo/cookbooks/fail1/metadata.rb +9 -0
  34. data/test/chef-repo/cookbooks/fail2/README.md +68 -0
  35. data/test/chef-repo/cookbooks/fail2/metadata.rb +9 -0
  36. data/test/chef-repo/cookbooks/fail3/README.md +68 -0
  37. data/test/chef-repo/cookbooks/fail3/metadata.rb +9 -0
  38. data/test/chef-repo/cookbooks/ghi/CHANGELOG.md +13 -0
  39. data/test/chef-repo/cookbooks/ghi/README.md +68 -0
  40. data/test/chef-repo/cookbooks/ghi/metadata.rb +7 -0
  41. data/test/chef-repo/cookbooks/ghi/recipes/default.rb +8 -0
  42. data/test/chef-repo/cookbooks/jkl/CHANGELOG.md +13 -0
  43. data/test/chef-repo/cookbooks/jkl/README.md +68 -0
  44. data/test/chef-repo/cookbooks/jkl/metadata.rb +10 -0
  45. data/test/chef-repo/cookbooks/jkl/recipes/default.rb +8 -0
  46. data/test/chef-repo/cookbooks/mno/CHANGELOG.md +13 -0
  47. data/test/chef-repo/cookbooks/mno/README.md +68 -0
  48. data/test/chef-repo/cookbooks/mno/metadata.rb +9 -0
  49. data/test/chef-repo/cookbooks/mno/recipes/default.rb +8 -0
  50. data/test/chef-repo/data_bags/junk/README +1 -0
  51. data/test/chef-repo/data_bags/junk/abc.json +4 -0
  52. data/test/chef-repo/data_bags/junk/ade.json +4 -0
  53. data/test/chef-repo/data_bags/junk/afg.json +4 -0
  54. data/test/chef-repo/data_bags/junk/bcd.json +4 -0
  55. data/test/chef-repo/data_bags/junk/sub1/cde1.json +4 -0
  56. data/test/chef-repo/data_bags/junk/sub1/cde2.json +4 -0
  57. data/test/chef-repo/data_bags/junk/sub2/def1.json +4 -0
  58. data/test/chef-repo/data_bags/junk/sub2/def2.json +4 -0
  59. data/test/chef-repo/data_bags/users/README +1 -0
  60. data/test/chef-repo/data_bags/users/badjson.json +8 -0
  61. data/test/chef-repo/data_bags/users/failname.json +8 -0
  62. data/test/chef-repo/data_bags/users/mray.json +8 -0
  63. data/test/chef-repo/data_bags/users/ubuntu.json +8 -0
  64. data/test/chef-repo/environments/development.rb +2 -0
  65. data/test/chef-repo/environments/fail2.rb +8 -0
  66. data/test/chef-repo/environments/fail3.rb +2 -0
  67. data/test/chef-repo/environments/production-blue.json +177 -0
  68. data/test/chef-repo/environments/production-green.json +177 -0
  69. data/test/chef-repo/environments/production-red.json +177 -0
  70. data/test/chef-repo/environments/qa.rb +2 -0
  71. data/test/chef-repo/environments/sub/efg1.rb +2 -0
  72. data/test/chef-repo/environments/sub/efg2.json +177 -0
  73. data/test/chef-repo/fail-cookbook1.yml +19 -0
  74. data/test/chef-repo/fail-cookbook2.yml +21 -0
  75. data/test/chef-repo/fail-cookbook3.yml +37 -0
  76. data/test/chef-repo/fail-cookbook4.yml +37 -0
  77. data/test/chef-repo/fail-cookbook5.yml +10 -0
  78. data/test/chef-repo/fail-cookbook6.yml +9 -0
  79. data/test/chef-repo/fail-db1.yml +12 -0
  80. data/test/chef-repo/fail-db2.yml +10 -0
  81. data/test/chef-repo/fail-db3.yml +10 -0
  82. data/test/chef-repo/fail-db4.yml +10 -0
  83. data/test/chef-repo/fail-env1.yml +27 -0
  84. data/test/chef-repo/fail-env2.yml +27 -0
  85. data/test/chef-repo/fail-env3.yml +28 -0
  86. data/test/chef-repo/fail-env4.yml +28 -0
  87. data/test/chef-repo/fail-roles1.yml +22 -0
  88. data/test/chef-repo/fail-roles2.yml +21 -0
  89. data/test/chef-repo/fail-roles3.yml +23 -0
  90. data/test/chef-repo/fail-roles4.yml +23 -0
  91. data/test/chef-repo/fail-roles5.yml +23 -0
  92. data/test/chef-repo/infrastructure.yml +43 -0
  93. data/test/chef-repo/nodes/boxy.lab.atx.json +1756 -0
  94. data/test/chef-repo/nodes/guenter.home.atx.json +2503 -0
  95. data/test/chef-repo/roles/README +1 -0
  96. data/test/chef-repo/roles/base.rb +18 -0
  97. data/test/chef-repo/roles/base2.rb +16 -0
  98. data/test/chef-repo/roles/base3.rb +17 -0
  99. data/test/chef-repo/roles/base4.rb +15 -0
  100. data/test/chef-repo/roles/fail1.rb +8 -0
  101. data/test/chef-repo/roles/fail2.rb +5 -0
  102. data/test/chef-repo/roles/fail3.rb +5 -0
  103. data/test/chef-repo/roles/sub/bw2.json +21 -0
  104. data/test/chef-repo/roles/sub/bwi1.json +20 -0
  105. data/test/chef-repo/roles/tc.rb +13 -0
  106. data/test/examples/cluster-file-example.yml +14 -0
  107. data/test/examples/example-cluster.yml +8 -0
  108. data/test/examples/example.json +127 -0
  109. data/test/examples/example.rb +128 -0
  110. data/test/examples/example.yml +67 -0
  111. data/test/examples/google-example.yml +33 -0
  112. data/test/examples/joyent-vsphere-example.yml +15 -0
  113. data/test/examples/knife.yml +7 -0
  114. data/test/examples/kvm-example.yml +22 -0
  115. data/test/examples/node-example.yml +23 -0
  116. data/test/examples/php-quick-start.yml +83 -0
  117. data/test/extract-repo/Berksfile +4 -0
  118. data/test/extract-repo/Berksfile.lock +10 -0
  119. data/test/extract-repo/cookbooks/abc/CHANGELOG.md +13 -0
  120. data/test/extract-repo/cookbooks/abc/README.md +68 -0
  121. data/test/extract-repo/cookbooks/abc/metadata.rb +7 -0
  122. data/test/extract-repo/cookbooks/abc/recipes/default.rb +8 -0
  123. data/test/extract-repo/cookbooks/def/CHANGELOG.md +13 -0
  124. data/test/extract-repo/cookbooks/def/README.md +68 -0
  125. data/test/extract-repo/cookbooks/def/metadata.rb +7 -0
  126. data/test/extract-repo/cookbooks/def/recipes/default.rb +8 -0
  127. data/test/extract-repo/cookbooks/ghi/CHANGELOG.md +13 -0
  128. data/test/extract-repo/cookbooks/ghi/README.md +68 -0
  129. data/test/extract-repo/cookbooks/ghi/metadata.rb +7 -0
  130. data/test/extract-repo/cookbooks/ghi/recipes/default.rb +8 -0
  131. data/test/extract-repo/cookbooks/jkl/CHANGELOG.md +13 -0
  132. data/test/extract-repo/cookbooks/jkl/README.md +68 -0
  133. data/test/extract-repo/cookbooks/jkl/metadata.rb +10 -0
  134. data/test/extract-repo/cookbooks/jkl/recipes/default.rb +8 -0
  135. data/test/extract-repo/cookbooks/mno/CHANGELOG.md +13 -0
  136. data/test/extract-repo/cookbooks/mno/README.md +68 -0
  137. data/test/extract-repo/cookbooks/mno/metadata.rb +9 -0
  138. data/test/extract-repo/cookbooks/mno/recipes/default.rb +8 -0
  139. data/test/extract-repo/data_bags/junk/README +1 -0
  140. data/test/extract-repo/data_bags/junk/abc.json +4 -0
  141. data/test/extract-repo/data_bags/junk/ade.json +4 -0
  142. data/test/extract-repo/data_bags/junk/afg.json +4 -0
  143. data/test/extract-repo/data_bags/junk/bcd.json +4 -0
  144. data/test/extract-repo/data_bags/junk/sub1/cde1.json +4 -0
  145. data/test/extract-repo/data_bags/junk/sub1/cde2.json +4 -0
  146. data/test/extract-repo/data_bags/junk/sub2/def1.json +4 -0
  147. data/test/extract-repo/data_bags/junk/sub2/def2.json +4 -0
  148. data/test/extract-repo/data_bags/users/README +1 -0
  149. data/test/extract-repo/data_bags/users/mray.json +8 -0
  150. data/test/extract-repo/data_bags/users/ubuntu.json +8 -0
  151. data/test/extract-repo/environments/development.rb +2 -0
  152. data/test/extract-repo/environments/production-blue.json +177 -0
  153. data/test/extract-repo/environments/production-green.json +177 -0
  154. data/test/extract-repo/environments/production-red.json +177 -0
  155. data/test/extract-repo/environments/qa.rb +2 -0
  156. data/test/extract-repo/environments/sub/efg1.rb +2 -0
  157. data/test/extract-repo/environments/sub/efg2.json +177 -0
  158. data/test/extract-repo/nodes/boxy.lab.atx.json +1756 -0
  159. data/test/extract-repo/nodes/guenter.home.atx.json +2503 -0
  160. data/test/extract-repo/roles/README +1 -0
  161. data/test/extract-repo/roles/base.rb +18 -0
  162. data/test/extract-repo/roles/base2.rb +16 -0
  163. data/test/extract-repo/roles/base3.rb +17 -0
  164. data/test/extract-repo/roles/base4.rb +16 -0
  165. data/test/extract-repo/roles/sub/bw2.json +21 -0
  166. data/test/extract-repo/roles/sub/bwi1.json +20 -0
  167. data/test/extract-repo/roles/tc.rb +13 -0
  168. data/test/extract-repo2/cookbooks/README.md +1 -0
  169. data/test/extract-repo2/data_bags/README.md +1 -0
  170. data/test/extract-repo2/environments/README.md +1 -0
  171. data/test/extract-repo2/nodes/README.md +1 -0
  172. data/test/extract-repo2/roles/README.md +1 -0
  173. metadata +357 -67
  174. data/spec/bin/chef_client_spec.rb +0 -72
  175. data/spec/bin/google_spec.rb +0 -105
  176. data/spec/bin/joyent-vsphere_spec.rb +0 -25
  177. data/spec/bin/knife_spec.rb +0 -18
  178. data/spec/bin/kvm_spec.rb +0 -29
  179. data/spec/bin/node_spec.rb +0 -108
  180. data/spec/bin/spiceweasel_spec.rb +0 -136
@@ -0,0 +1,2503 @@
1
+ {
2
+ "name": "guenter.home.atx",
3
+ "chef_environment": "home",
4
+ "run_list": [
5
+ "role[lab-base]",
6
+ "role[vagrant]"
7
+ ],
8
+ "normal": {
9
+ "tags": [
10
+
11
+ ]
12
+ },
13
+ "default": {
14
+ "apt": {
15
+ "cacher-client": {
16
+ "restrict_environment": false
17
+ },
18
+ "cacher_dir": "/var/cache/apt-cacher-ng",
19
+ "cacher_port": 3142,
20
+ "caching_server": false,
21
+ "compiletime": false,
22
+ "key_proxy": ""
23
+ },
24
+ "ntp": {
25
+ "servers": [
26
+ "0.pool.ntp.org",
27
+ "1.pool.ntp.org",
28
+ "2.pool.ntp.org",
29
+ "3.pool.ntp.org"
30
+ ],
31
+ "peers": [
32
+
33
+ ],
34
+ "restrictions": [
35
+
36
+ ],
37
+ "packages": [
38
+ "ntp",
39
+ "ntpdate"
40
+ ],
41
+ "service": "ntp",
42
+ "varlibdir": "/var/lib/ntp",
43
+ "driftfile": "/var/lib/ntp/ntp.drift",
44
+ "statsdir": "/var/log/ntpstats/",
45
+ "conf_owner": "root",
46
+ "conf_group": "root",
47
+ "var_owner": "ntp",
48
+ "var_group": "ntp",
49
+ "leapfile": "/etc/ntp.leapseconds",
50
+ "ntpdate": {
51
+ "disable": false
52
+ }
53
+ },
54
+ "openssh": {
55
+ "package_name": [
56
+ "openssh-client",
57
+ "openssh-server"
58
+ ],
59
+ "service_name": "ssh",
60
+ "client": {
61
+ "host": "*"
62
+ },
63
+ "server": {
64
+ "authorized_keys_file": "%h/.ssh/authorized_keys",
65
+ "challenge_response_authentication": "no",
66
+ "use_p_a_m": "yes"
67
+ }
68
+ },
69
+ "authorization": {
70
+ "sudo": {
71
+ "groups": [
72
+
73
+ ],
74
+ "users": [
75
+
76
+ ],
77
+ "passwordless": false,
78
+ "include_sudoers_d": false,
79
+ "agent_forwarding": false,
80
+ "sudoers_defaults": [
81
+ "!lecture,tty_tickets,!fqdn"
82
+ ]
83
+ }
84
+ },
85
+ "chef_client": {
86
+ "config": {
87
+ "chef_server_url": "https://api.opscode.com/organizations/os-testing",
88
+ "validation_client_name": "os-testing-validator",
89
+ "node_name": false
90
+ },
91
+ "interval": "1800",
92
+ "splay": "300",
93
+ "conf_dir": "/etc/chef",
94
+ "bin": "/usr/bin/chef-client",
95
+ "log_dir": "/var/log/chef",
96
+ "cron": {
97
+ "minute": "0",
98
+ "hour": "*/4",
99
+ "path": null,
100
+ "environment_variables": null,
101
+ "log_file": "/dev/null",
102
+ "use_cron_d": false
103
+ },
104
+ "load_gems": {
105
+ },
106
+ "daemon_options": [
107
+
108
+ ],
109
+ "init_style": "init",
110
+ "run_path": "/var/run/chef",
111
+ "cache_path": "/var/cache/chef",
112
+ "backup_path": "/var/lib/chef"
113
+ },
114
+ "chef-client": {
115
+ "log_file": null
116
+ },
117
+ "ohai": {
118
+ "disabled_plugins": [
119
+
120
+ ]
121
+ },
122
+ "dmg": {
123
+ "base_dir": "/Applications",
124
+ "cache_dir": "/var/chef/cache"
125
+ },
126
+ "chef_handler": {
127
+ "root_user": "root",
128
+ "root_group": "root",
129
+ "handler_path": "/var/chef/handlers"
130
+ },
131
+ "windows": {
132
+ "allow_pending_reboots": true,
133
+ "rubyzipversion": null
134
+ },
135
+ "yum": {
136
+ "exclude": [
137
+
138
+ ],
139
+ "installonlypkgs": [
140
+
141
+ ],
142
+ "ius_release": "1.0-11",
143
+ "repoforge_release": "0.5.2-2",
144
+ "proxy": "",
145
+ "proxy_username": "",
146
+ "proxy_password": "",
147
+ "cachedir": "/var/cache/yum",
148
+ "keepcache": 0,
149
+ "elrepo": {
150
+ "url": "http://elrepo.org/mirrors-elrepo.el13",
151
+ "key": "RPM-GPG-KEY-elrepo.org",
152
+ "key_url": "http://elrepo.org/RPM-GPG-KEY-elrepo.org",
153
+ "includepkgs": null,
154
+ "exclude": null
155
+ },
156
+ "epel": {
157
+ "url": "http://mirrors.fedoraproject.org/mirrorlist?repo=epel-13&arch=$basearch",
158
+ "baseurl": "",
159
+ "key": "RPM-GPG-KEY-EPEL-6",
160
+ "key_url": "http://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6",
161
+ "includepkgs": null,
162
+ "exclude": null
163
+ },
164
+ "remi": {
165
+ "url": "http://rpms.famillecollet.com/enterprise/13/remi/mirror",
166
+ "key": "RPM-GPG-KEY-remi",
167
+ "key_url": "http://rpms.famillecollet.com/RPM-GPG-KEY-remi",
168
+ "includepkgs": null,
169
+ "exclude": null
170
+ }
171
+ },
172
+ "virtualbox": {
173
+ "url": "",
174
+ "version": "4.2",
175
+ "user": "virtualbox",
176
+ "group": "vboxusers",
177
+ "webportal": {
178
+ "versions": {
179
+ "4.0": "7",
180
+ "4.1": "9"
181
+ }
182
+ },
183
+ "webservice": {
184
+ "log": {
185
+ "location": "/var/log/vboxwebsrv",
186
+ "rotate": 5,
187
+ "size": 10485760,
188
+ "interval": 604800
189
+ }
190
+ }
191
+ },
192
+ "vagrant": {
193
+ "url": null,
194
+ "checksum": null,
195
+ "plugins": [
196
+
197
+ ],
198
+ "msi_version": ""
199
+ },
200
+ "build_essential": {
201
+ "compiletime": false
202
+ },
203
+ "test-kitchen": {
204
+ "user": "vagrant",
205
+ "version": "1.0.0.beta.2"
206
+ }
207
+ },
208
+ "override": {
209
+ "vagrant": {
210
+ "url": "http://files.vagrantup.com/packages/7ec0ee1d00a916f80b109a298bab08e391945243/vagrant_1.2.7_x86_64.deb",
211
+ "plugins": [
212
+ "vagrant-omnibus",
213
+ "vagrant-berkshelf"
214
+ ]
215
+ },
216
+ "test-kitchen": {
217
+ "user": "mray"
218
+ },
219
+ "build_essential": {
220
+ "compiletime": true
221
+ },
222
+ "apt": {
223
+ "cacher-client": {
224
+ "restrict_environment": true
225
+ }
226
+ },
227
+ "authorization": {
228
+ "sudo": {
229
+ "groups": [
230
+ "admin",
231
+ "wheel",
232
+ "sysadmin"
233
+ ],
234
+ "users": [
235
+ "mray"
236
+ ],
237
+ "passwordless": true,
238
+ "include_sudoers_d": true
239
+ }
240
+ },
241
+ "pxe_dust": {
242
+ "default": {
243
+ "domain": "home.atx",
244
+ "environment": "home",
245
+ "run_list": ""
246
+ }
247
+ }
248
+ },
249
+ "automatic": {
250
+ "languages": {
251
+ "ruby": {
252
+ "platform": "x86_64-linux",
253
+ "version": "1.9.3",
254
+ "release_date": "2013-05-15",
255
+ "target": "x86_64-unknown-linux-gnu",
256
+ "target_cpu": "x86_64",
257
+ "target_vendor": "unknown",
258
+ "target_os": "linux",
259
+ "host": "x86_64-unknown-linux-gnu",
260
+ "host_cpu": "x86_64",
261
+ "host_os": "linux-gnu",
262
+ "host_vendor": "unknown",
263
+ "bin_dir": "/opt/chef/embedded/bin",
264
+ "ruby_bin": "/opt/chef/embedded/bin/ruby",
265
+ "gems_dir": "/opt/chef/embedded/lib/ruby/gems/1.9.1",
266
+ "gem_bin": "/opt/chef/embedded/bin/gem"
267
+ },
268
+ "perl": {
269
+ "version": "5.14.2",
270
+ "archname": "x86_64-linux-gnu-thread-multi"
271
+ },
272
+ "python": {
273
+ "version": "2.7.4",
274
+ "builddate": "Apr 19 2013, 18:28:01"
275
+ }
276
+ },
277
+ "kernel": {
278
+ "name": "Linux",
279
+ "release": "3.8.0-27-generic",
280
+ "version": "#40-Ubuntu SMP Tue Jul 9 00:17:05 UTC 2013",
281
+ "machine": "x86_64",
282
+ "modules": {
283
+ "pci_stub": {
284
+ "size": "12622",
285
+ "refcount": "1"
286
+ },
287
+ "vboxpci": {
288
+ "size": "23194",
289
+ "refcount": "0"
290
+ },
291
+ "vboxnetadp": {
292
+ "size": "25670",
293
+ "refcount": "0"
294
+ },
295
+ "vboxnetflt": {
296
+ "size": "27613",
297
+ "refcount": "0"
298
+ },
299
+ "vboxdrv": {
300
+ "size": "320461",
301
+ "refcount": "3"
302
+ },
303
+ "joydev": {
304
+ "size": "17377",
305
+ "refcount": "0"
306
+ },
307
+ "btusb": {
308
+ "size": "22474",
309
+ "refcount": "0"
310
+ },
311
+ "bluetooth": {
312
+ "size": "228667",
313
+ "refcount": "2"
314
+ },
315
+ "smsc75xx": {
316
+ "size": "31137",
317
+ "refcount": "0"
318
+ },
319
+ "usbnet": {
320
+ "size": "31879",
321
+ "refcount": "1"
322
+ },
323
+ "coretemp": {
324
+ "size": "13355",
325
+ "refcount": "0"
326
+ },
327
+ "kvm_intel": {
328
+ "size": "132891",
329
+ "refcount": "0"
330
+ },
331
+ "kvm": {
332
+ "size": "443165",
333
+ "refcount": "1"
334
+ },
335
+ "ghash_clmulni_intel": {
336
+ "size": "13259",
337
+ "refcount": "0"
338
+ },
339
+ "uvcvideo": {
340
+ "size": "80847",
341
+ "refcount": "0"
342
+ },
343
+ "videobuf2_vmalloc": {
344
+ "size": "13056",
345
+ "refcount": "1"
346
+ },
347
+ "videobuf2_memops": {
348
+ "size": "13202",
349
+ "refcount": "1"
350
+ },
351
+ "videobuf2_core": {
352
+ "size": "40513",
353
+ "refcount": "1"
354
+ },
355
+ "aesni_intel": {
356
+ "size": "55399",
357
+ "refcount": "0"
358
+ },
359
+ "videodev": {
360
+ "size": "129260",
361
+ "refcount": "2"
362
+ },
363
+ "aes_x86_64": {
364
+ "size": "17255",
365
+ "refcount": "1"
366
+ },
367
+ "xts": {
368
+ "size": "12885",
369
+ "refcount": "1"
370
+ },
371
+ "lrw": {
372
+ "size": "13257",
373
+ "refcount": "1"
374
+ },
375
+ "gf128mul": {
376
+ "size": "14951",
377
+ "refcount": "2"
378
+ },
379
+ "ablk_helper": {
380
+ "size": "13597",
381
+ "refcount": "1"
382
+ },
383
+ "cryptd": {
384
+ "size": "20373",
385
+ "refcount": "3"
386
+ },
387
+ "dell_wmi": {
388
+ "size": "12681",
389
+ "refcount": "0"
390
+ },
391
+ "sparse_keymap": {
392
+ "size": "13890",
393
+ "refcount": "1"
394
+ },
395
+ "dell_laptop": {
396
+ "size": "17369",
397
+ "refcount": "0"
398
+ },
399
+ "dcdbas": {
400
+ "size": "14397",
401
+ "refcount": "1"
402
+ },
403
+ "arc4": {
404
+ "size": "12615",
405
+ "refcount": "2"
406
+ },
407
+ "iwldvm": {
408
+ "size": "241872",
409
+ "refcount": "0"
410
+ },
411
+ "mac80211": {
412
+ "size": "606457",
413
+ "refcount": "1"
414
+ },
415
+ "snd_hda_codec_hdmi": {
416
+ "size": "36913",
417
+ "refcount": "1"
418
+ },
419
+ "iwlwifi": {
420
+ "size": "173477",
421
+ "refcount": "1"
422
+ },
423
+ "lpc_ich": {
424
+ "size": "17061",
425
+ "refcount": "0"
426
+ },
427
+ "i915": {
428
+ "size": "600396",
429
+ "refcount": "1"
430
+ },
431
+ "snd_hda_codec_realtek": {
432
+ "size": "78399",
433
+ "refcount": "1"
434
+ },
435
+ "psmouse": {
436
+ "size": "95870",
437
+ "refcount": "0"
438
+ },
439
+ "microcode": {
440
+ "size": "22881",
441
+ "refcount": "0"
442
+ },
443
+ "cfg80211": {
444
+ "size": "510937",
445
+ "refcount": "3"
446
+ },
447
+ "serio_raw": {
448
+ "size": "13215",
449
+ "refcount": "0"
450
+ },
451
+ "drm_kms_helper": {
452
+ "size": "49394",
453
+ "refcount": "1"
454
+ },
455
+ "drm": {
456
+ "size": "286028",
457
+ "refcount": "2"
458
+ },
459
+ "wmi": {
460
+ "size": "19070",
461
+ "refcount": "1"
462
+ },
463
+ "snd_hda_intel": {
464
+ "size": "39619",
465
+ "refcount": "0"
466
+ },
467
+ "snd_hda_codec": {
468
+ "size": "136453",
469
+ "refcount": "3"
470
+ },
471
+ "mei": {
472
+ "size": "41158",
473
+ "refcount": "0"
474
+ },
475
+ "snd_hwdep": {
476
+ "size": "13602",
477
+ "refcount": "1"
478
+ },
479
+ "i2c_algo_bit": {
480
+ "size": "13413",
481
+ "refcount": "1"
482
+ },
483
+ "snd_pcm": {
484
+ "size": "97451",
485
+ "refcount": "3"
486
+ },
487
+ "snd_page_alloc": {
488
+ "size": "18710",
489
+ "refcount": "2"
490
+ },
491
+ "snd_timer": {
492
+ "size": "29425",
493
+ "refcount": "1"
494
+ },
495
+ "snd": {
496
+ "size": "68876",
497
+ "refcount": "7"
498
+ },
499
+ "soundcore": {
500
+ "size": "12680",
501
+ "refcount": "1"
502
+ },
503
+ "video": {
504
+ "size": "19390",
505
+ "refcount": "1"
506
+ },
507
+ "ext2": {
508
+ "size": "72837",
509
+ "refcount": "1"
510
+ },
511
+ "mac_hid": {
512
+ "size": "13205",
513
+ "refcount": "0"
514
+ },
515
+ "lp": {
516
+ "size": "17759",
517
+ "refcount": "0"
518
+ },
519
+ "parport": {
520
+ "size": "46345",
521
+ "refcount": "1"
522
+ },
523
+ "ahci": {
524
+ "size": "25731",
525
+ "refcount": "2"
526
+ },
527
+ "libahci": {
528
+ "size": "31364",
529
+ "refcount": "1"
530
+ }
531
+ },
532
+ "os": "GNU/Linux"
533
+ },
534
+ "os": "linux",
535
+ "os_version": "3.8.0-27-generic",
536
+ "chef_packages": {
537
+ "ohai": {
538
+ "version": "6.18.0",
539
+ "ohai_root": "/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/ohai-6.18.0/lib/ohai"
540
+ },
541
+ "chef": {
542
+ "version": "11.6.0",
543
+ "chef_root": "/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib"
544
+ }
545
+ },
546
+ "hostname": "guenter",
547
+ "fqdn": "guenter.home.atx",
548
+ "domain": "home.atx",
549
+ "network": {
550
+ "interfaces": {
551
+ "lo": {
552
+ "mtu": "65536",
553
+ "flags": [
554
+ "LOOPBACK",
555
+ "UP",
556
+ "LOWER_UP"
557
+ ],
558
+ "encapsulation": "Loopback",
559
+ "addresses": {
560
+ "127.0.0.1": {
561
+ "family": "inet",
562
+ "prefixlen": "8",
563
+ "netmask": "255.0.0.0",
564
+ "scope": "Node"
565
+ },
566
+ "::1": {
567
+ "family": "inet6",
568
+ "prefixlen": "128",
569
+ "scope": "Node"
570
+ }
571
+ },
572
+ "state": "unknown"
573
+ },
574
+ "wlan0": {
575
+ "type": "wlan",
576
+ "number": "0",
577
+ "mtu": "1500",
578
+ "flags": [
579
+ "BROADCAST",
580
+ "MULTICAST"
581
+ ],
582
+ "encapsulation": "Ethernet",
583
+ "addresses": {
584
+ "88:53:2E:E4:2C:35": {
585
+ "family": "lladdr"
586
+ }
587
+ },
588
+ "state": "down"
589
+ },
590
+ "eth0": {
591
+ "type": "eth",
592
+ "number": "0",
593
+ "mtu": "1500",
594
+ "flags": [
595
+ "BROADCAST",
596
+ "MULTICAST",
597
+ "UP",
598
+ "LOWER_UP"
599
+ ],
600
+ "encapsulation": "Ethernet",
601
+ "addresses": {
602
+ "80:3F:5D:08:79:B6": {
603
+ "family": "lladdr"
604
+ },
605
+ "192.168.1.135": {
606
+ "family": "inet",
607
+ "prefixlen": "24",
608
+ "netmask": "255.255.255.0",
609
+ "broadcast": "192.168.1.255",
610
+ "scope": "Global"
611
+ },
612
+ "fe80::823f:5dff:fe08:79b6": {
613
+ "family": "inet6",
614
+ "prefixlen": "64",
615
+ "scope": "Link"
616
+ }
617
+ },
618
+ "state": "up",
619
+ "arp": {
620
+ "192.168.1.1": "30:46:9a:8c:aa:fc",
621
+ "192.168.1.125": "7c:6d:62:8e:d7:ed"
622
+ },
623
+ "routes": [
624
+ {
625
+ "destination": "default",
626
+ "family": "inet",
627
+ "via": "192.168.1.1"
628
+ },
629
+ {
630
+ "destination": "192.168.1.0/24",
631
+ "family": "inet",
632
+ "scope": "link",
633
+ "proto": "kernel",
634
+ "src": "192.168.1.135"
635
+ },
636
+ {
637
+ "destination": "fe80::/64",
638
+ "family": "inet6",
639
+ "metric": "256",
640
+ "proto": "kernel"
641
+ }
642
+ ]
643
+ }
644
+ },
645
+ "default_interface": "eth0",
646
+ "default_gateway": "192.168.1.1"
647
+ },
648
+ "counters": {
649
+ "network": {
650
+ "interfaces": {
651
+ "lo": {
652
+ "rx": {
653
+ "bytes": "18944",
654
+ "packets": "256",
655
+ "errors": "0",
656
+ "drop": "0",
657
+ "overrun": "0"
658
+ },
659
+ "tx": {
660
+ "bytes": "18944",
661
+ "packets": "256",
662
+ "errors": "0",
663
+ "drop": "0",
664
+ "carrier": "0",
665
+ "collisions": "0"
666
+ }
667
+ },
668
+ "wlan0": {
669
+ "tx": {
670
+ "queuelen": "1000",
671
+ "bytes": "0",
672
+ "packets": "0",
673
+ "errors": "0",
674
+ "drop": "0",
675
+ "carrier": "0",
676
+ "collisions": "0"
677
+ },
678
+ "rx": {
679
+ "bytes": "0",
680
+ "packets": "0",
681
+ "errors": "0",
682
+ "drop": "0",
683
+ "overrun": "0"
684
+ }
685
+ },
686
+ "eth0": {
687
+ "tx": {
688
+ "queuelen": "1000",
689
+ "bytes": "10703681",
690
+ "packets": "121439",
691
+ "errors": "0",
692
+ "drop": "0",
693
+ "carrier": "0",
694
+ "collisions": "0"
695
+ },
696
+ "rx": {
697
+ "bytes": "306849827",
698
+ "packets": "220340",
699
+ "errors": "11921",
700
+ "drop": "5976",
701
+ "overrun": "0"
702
+ }
703
+ }
704
+ }
705
+ }
706
+ },
707
+ "ipaddress": "192.168.1.135",
708
+ "macaddress": "80:3F:5D:08:79:B6",
709
+ "ip6address": "fe80::823f:5dff:fe08:79b6",
710
+ "keys": {
711
+ "ssh": {
712
+ "host_dsa_public": "AAAAB3NzaC1kc3MAAACBALRM5jFeGzIw2f+hxkcTLzcyDAeCs3PXSGejnIh3NVWDrBv06D4nDyxZKu9x1PqmLnTf930kkJzJDJ22OPa4ZZU9UrT13vFeC5v8x9Fe3ARixjmOsD3T1E6Xo7ie9ukyAXWJfxF/LwYkG3kG5tOJrHgK3HqC4minXw+ONKGjKV93AAAAFQClEuIBF/poeEhvtu8wLpzjbUUbswAAAIBq1A3bj2/i2gmPUYSY9l8l30M5JbIdnmZ5KD3eqOycvqwchs8YqsN3VCzGYgHI8OVX4I2sAXvkkaum8KxSyjR/SD/XKMbiqL3BtHvsAeRkDvUqJrVHOhkmfaKCcaNiDDY3KxKlP9WkTh4k/nU/0LHkPHZ/Y+FwLaf9Cqf0AHURQQAAAIAv/YJNhPuEmcue/ETfd5ts/OjBULepgN8akVsfxmqQm/2auH9A2zcb3ecAZNcSZ4Cu/G+Zc0aIhSBrmNDSKGCTK6v+OwNB2/nTRhyUp7IwhoUKtv05sNvxVzoHkA6kqcZgrg9COsAJs64ZLqV1uW+pcTQQGiJUiq1zaqfPgfhupA==",
713
+ "host_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQCTkMll0PHfa/NzrFQEcMXIqiOmnTKXo6v3zfP6/Plqt4G76IUZzyGdd+288R+lU6TXgsp4yc4FUMPX8qoLNoGzFl+cKgjRzpnnYC2NoKZsCkbndbTHT6sWQwYWqq6N1BMyndIi1ryia6Zy5Rcs/JEbXEpeT/1yBLYJKXrjpm37WIkor8RlZ+hGuLtQUnPbHNZVKx+pP1PRDYXua0v/IuQBz86LaO0jgS91wEsWk0Snx+97KSByFGV32Lptp0GudVGscNdQbF6OCS89HtiU1n66St9k/rSZX4t4eWxJLqJsS9NFIEcZtWXKnxr7nIfbr43fFEiErp1tKPRRqYRONr09",
714
+ "host_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBF/VwJYGUvoPhjQ5x7P/L1x9lNPPDqsHTvfnWVGNRKObxyxzGfclr66g+SyyqjZOMKxkf/dLV7wkyjzD4Lu9ODM=",
715
+ "host_ecdsa_type": "ecdsa-sha2-nistp256"
716
+ }
717
+ },
718
+ "root_group": "root",
719
+ "command": {
720
+ "ps": "ps -ef"
721
+ },
722
+ "dmi": {
723
+ "dmidecode_version": "2.11",
724
+ "smbios_version": "2.7",
725
+ "structures": {
726
+ "count": "70",
727
+ "size": "2927"
728
+ },
729
+ "table_location": "0x000E1020",
730
+ "processor": {
731
+ "all_records": [
732
+ {
733
+ "record_id": "0x0000",
734
+ "size": "4",
735
+ "application_identifier": "OEM",
736
+ "Socket Designation": "L3-Cache",
737
+ "Type": "DDR3",
738
+ "Family": "Core i7",
739
+ "Manufacturer": "Hynix/Hyundai",
740
+ "ID": "A7 06 02 00 FF FB EB BF",
741
+ "Signature": "Type 0, Family 6, Model 42, Stepping 7",
742
+ "Flags": {
743
+ "FPU (Floating-point unit on-chip)": null,
744
+ "VME (Virtual mode extension)": null,
745
+ "DE (Debugging extension)": null,
746
+ "PSE (Page size extension)": null,
747
+ "TSC (Time stamp counter)": null,
748
+ "MSR (Model specific registers)": null,
749
+ "PAE (Physical address extension)": null,
750
+ "MCE (Machine check exception)": null,
751
+ "CX8 (CMPXCHG8 instruction supported)": null,
752
+ "APIC (On-chip APIC hardware supported)": null,
753
+ "SEP (Fast system call)": null,
754
+ "MTRR (Memory type range registers)": null,
755
+ "PGE (Page global enable)": null,
756
+ "MCA (Machine check architecture)": null,
757
+ "CMOV (Conditional move instruction supported)": null,
758
+ "PAT (Page attribute table)": null,
759
+ "PSE-36 (36-bit page size extension)": null,
760
+ "CLFSH (CLFLUSH instruction supported)": null,
761
+ "DS (Debug store)": null,
762
+ "ACPI (ACPI supported)": null,
763
+ "MMX (MMX technology supported)": null,
764
+ "FXSR (FXSAVE and FXSTOR instructions supported)": null,
765
+ "SSE (Streaming SIMD extensions)": null,
766
+ "SSE2 (Streaming SIMD extensions 2)": null,
767
+ "SS (Self-snoop)": null,
768
+ "HTT (Multi-threading)": null,
769
+ "TM (Thermal monitor supported)": null,
770
+ "PBE (Pending break enabled)": null
771
+ },
772
+ "Version": "Intel(R) Core(TM) i7-2637M CPU @ 1.70GHz",
773
+ "Voltage": "1.2 V",
774
+ "External Clock": "100 MHz",
775
+ "Max Speed": "1700 MHz",
776
+ "Current Speed": "1700 MHz",
777
+ "Status": "Populated, Enabled",
778
+ "Upgrade": "Socket rPGA988B",
779
+ "L1 Cache Handle": "0x0001",
780
+ "L2 Cache Handle": "0x0002",
781
+ "L3 Cache Handle": "0x0003",
782
+ "Serial Number": "00000000",
783
+ "Asset Tag": "9876543210",
784
+ "Part Number": "HT2SCRCH ",
785
+ "Core Count": "2",
786
+ "Core Enabled": "2",
787
+ "Thread Count": "4",
788
+ "Characteristics": {
789
+ "64-bit capable": null
790
+ },
791
+ "Configuration": "Enabled, Not Socketed, Level 3",
792
+ "Operational Mode": "Write Back",
793
+ "Location": "System Board Or Motherboard",
794
+ "Installed Size": "4096 kB",
795
+ "Maximum Size": "4096 kB",
796
+ "Supported SRAM Types": {
797
+ "Synchronous": null
798
+ },
799
+ "Installed SRAM Type": "Synchronous",
800
+ "Speed": "1333 MHz",
801
+ "Error Correction Type": "None",
802
+ "System Type": "Unified",
803
+ "Associativity": "16-way Set-associative",
804
+ "Use": "System Memory",
805
+ "Maximum Capacity": "4 GB",
806
+ "Error Information Handle": "Not Provided",
807
+ "Number Of Devices": "2",
808
+ "Array Handle": "0x0004",
809
+ "Total Width": "64 bits",
810
+ "Data Width": "64 bits",
811
+ "Size": "2048 MB",
812
+ "Form Factor": "DIMM",
813
+ "Set": "None",
814
+ "Locator": "ChannelB-DIMM0",
815
+ "Bank Locator": "BANK 2",
816
+ "Type Detail": "Synchronous",
817
+ "Rank": "Unknown",
818
+ "Configured Clock Speed": "1333 MHz",
819
+ "Starting Address": "0x00000000000",
820
+ "Ending Address": "0x000FFFFFFFF",
821
+ "Range Size": "4 GB",
822
+ "Physical Device Handle": "0x0005",
823
+ "Memory Array Mapped Address Handle": "0x0009",
824
+ "Partition Row Position": "1",
825
+ "Interleave Position": "2",
826
+ "Interleaved Data Depth": "2",
827
+ "Physical Array Handle": "0x0004",
828
+ "Partition Width": "2",
829
+ "Header and Data": {
830
+ "83 40 0B 00 35 00 00 00 00 00 00 00 00 00 00 00": null,
831
+ "F8 00 4D 1C FF FF FF FF 09 E0 00 00 01 00 07 00": null,
832
+ "5F 04 14 00 00 00 00 00 C8 00 FF FF 00 00 00 00": null,
833
+ "00 00 00 00 B6 00 00 00 76 50 72 6F 00 00 00 00": null
834
+ },
835
+ "Strings": {
836
+ "Intel_ASF": null,
837
+ "Intel_ASF_001": null
838
+ }
839
+ }
840
+ ],
841
+ "socket_designation": "L3-Cache",
842
+ "type": "DDR3",
843
+ "family": "Core i7",
844
+ "manufacturer": "Hynix/Hyundai",
845
+ "id": "A7 06 02 00 FF FB EB BF",
846
+ "signature": "Type 0, Family 6, Model 42, Stepping 7",
847
+ "version": "Intel(R) Core(TM) i7-2637M CPU @ 1.70GHz",
848
+ "voltage": "1.2 V",
849
+ "external_clock": "100 MHz",
850
+ "max_speed": "1700 MHz",
851
+ "current_speed": "1700 MHz",
852
+ "status": "Populated, Enabled",
853
+ "upgrade": "Socket rPGA988B",
854
+ "l1_cache_handle": "0x0001",
855
+ "l2_cache_handle": "0x0002",
856
+ "l3_cache_handle": "0x0003",
857
+ "serial_number": "00000000",
858
+ "asset_tag": "9876543210",
859
+ "part_number": "HT2SCRCH ",
860
+ "core_count": "2",
861
+ "core_enabled": "2",
862
+ "thread_count": "4",
863
+ "configuration": "Enabled, Not Socketed, Level 3",
864
+ "operational_mode": "Write Back",
865
+ "location": "System Board Or Motherboard",
866
+ "installed_size": "4096 kB",
867
+ "maximum_size": "4096 kB",
868
+ "installed_sram_type": "Synchronous",
869
+ "speed": "1333 MHz",
870
+ "error_correction_type": "None",
871
+ "system_type": "Unified",
872
+ "associativity": "16-way Set-associative",
873
+ "use": "System Memory",
874
+ "maximum_capacity": "4 GB",
875
+ "error_information_handle": "Not Provided",
876
+ "number_of_devices": "2",
877
+ "array_handle": "0x0004",
878
+ "total_width": "64 bits",
879
+ "data_width": "64 bits",
880
+ "size": "2048 MB",
881
+ "form_factor": "DIMM",
882
+ "set": "None",
883
+ "locator": "ChannelB-DIMM0",
884
+ "bank_locator": "BANK 2",
885
+ "type_detail": "Synchronous",
886
+ "rank": "Unknown",
887
+ "configured_clock_speed": "1333 MHz",
888
+ "starting_address": "0x00000000000",
889
+ "ending_address": "0x000FFFFFFFF",
890
+ "range_size": "4 GB",
891
+ "physical_device_handle": "0x0005",
892
+ "memory_array_mapped_address_handle": "0x0009",
893
+ "partition_row_position": "1",
894
+ "interleave_position": "2",
895
+ "interleaved_data_depth": "2",
896
+ "physical_array_handle": "0x0004",
897
+ "partition_width": "2"
898
+ },
899
+ "bios": {
900
+ "all_records": [
901
+ {
902
+ "record_id": "0x000C",
903
+ "size": "0",
904
+ "application_identifier": "BIOS Information",
905
+ "Vendor": "Dell Inc. ",
906
+ "Version": "A08",
907
+ "Release Date": "01/22/2013",
908
+ "Address": "0xE0000",
909
+ "Runtime Size": "128 kB",
910
+ "ROM Size": "2560 kB",
911
+ "Characteristics": {
912
+ "PCI is supported": null,
913
+ "PNP is supported": null,
914
+ "BIOS is upgradeable": null,
915
+ "BIOS shadowing is allowed": null,
916
+ "ESCD support is available": null,
917
+ "Boot from CD is supported": null,
918
+ "Selectable boot is supported": null,
919
+ "BIOS ROM is socketed": null,
920
+ "EDD is supported": null,
921
+ "5.25\"/360 kB floppy services are supported (int 13h)": null,
922
+ "5.25\"/1.2 MB floppy services are supported (int 13h)": null,
923
+ "3.5\"/720 kB floppy services are supported (int 13h)": null,
924
+ "Print screen service is supported (int 5h)": null,
925
+ "8042 keyboard services are supported (int 9h)": null,
926
+ "Serial services are supported (int 14h)": null,
927
+ "Printer services are supported (int 17h)": null,
928
+ "CGA/mono video services are supported (int 10h)": null,
929
+ "ACPI is supported": null,
930
+ "USB legacy is supported": null,
931
+ "LS-120 boot is supported": null,
932
+ "Smart battery is supported": null,
933
+ "BIOS boot specification is supported": null,
934
+ "Function key-initiated network boot is supported": null,
935
+ "Targeted content distribution is supported": null
936
+ },
937
+ "BIOS Revision": "0.1"
938
+ }
939
+ ],
940
+ "vendor": "Dell Inc. ",
941
+ "version": "A08",
942
+ "release_date": "01/22/2013",
943
+ "address": "0xE0000",
944
+ "runtime_size": "128 kB",
945
+ "rom_size": "2560 kB",
946
+ "bios_revision": "0.1"
947
+ },
948
+ "system": {
949
+ "all_records": [
950
+ {
951
+ "record_id": "0x000D",
952
+ "size": "1",
953
+ "application_identifier": "System Information",
954
+ "Manufacturer": "Dell Inc. ",
955
+ "Product Name": "Dell System XPS L321X",
956
+ "Version": "Not Specified",
957
+ "Serial Number": "7VP0DT1",
958
+ "UUID": "4C4C4544-0056-5010-8030-B7C04F445431",
959
+ "Wake-up Type": "Power Switch",
960
+ "SKU Number": "System SKUNumber",
961
+ "Family": "HuronRiver System"
962
+ }
963
+ ],
964
+ "manufacturer": "Dell Inc. ",
965
+ "product_name": "Dell System XPS L321X",
966
+ "version": "Not Specified",
967
+ "serial_number": "7VP0DT1",
968
+ "uuid": "4C4C4544-0056-5010-8030-B7C04F445431",
969
+ "wake_up_type": "Power Switch",
970
+ "sku_number": "System SKUNumber",
971
+ "family": "HuronRiver System"
972
+ },
973
+ "base_board": {
974
+ "all_records": [
975
+ {
976
+ "record_id": "0x000E",
977
+ "size": "2",
978
+ "application_identifier": "Base Board Information",
979
+ "Manufacturer": "Dell Inc. ",
980
+ "Product Name": "0Y4RM9",
981
+ "Version": "A00",
982
+ "Serial Number": ".7VP0DT1.CN4864325G0344.",
983
+ "Asset Tag": " ",
984
+ "Features": {
985
+ "Board is a hosting board": null,
986
+ "Board is replaceable": null
987
+ },
988
+ "Location In Chassis": "Part Component",
989
+ "Chassis Handle": "0x0000",
990
+ "Type": "Motherboard",
991
+ "Contained Object Handles": "0"
992
+ }
993
+ ],
994
+ "manufacturer": "Dell Inc. ",
995
+ "product_name": "0Y4RM9",
996
+ "version": "A00",
997
+ "serial_number": ".7VP0DT1.CN4864325G0344.",
998
+ "asset_tag": " ",
999
+ "location_in_chassis": "Part Component",
1000
+ "chassis_handle": "0x0000",
1001
+ "type": "Motherboard",
1002
+ "contained_object_handles": "0"
1003
+ },
1004
+ "chassis": {
1005
+ "all_records": [
1006
+ {
1007
+ "record_id": "0x000F",
1008
+ "size": "3",
1009
+ "application_identifier": "OEM",
1010
+ "Manufacturer": "Dynapack",
1011
+ "Type": "Fan",
1012
+ "Lock": "Not Present",
1013
+ "Version": "0.1",
1014
+ "Serial Number": "1.0",
1015
+ "Asset Tag": " ",
1016
+ "Boot-up State": "Safe",
1017
+ "Power Supply State": "Safe",
1018
+ "Thermal State": "Safe",
1019
+ "Security Status": "None",
1020
+ "OEM Information": "0x00000000",
1021
+ "Height": "Unspecified",
1022
+ "Number Of Power Cords": "1",
1023
+ "Contained Elements": "0",
1024
+ "SKU Number": "Not Specified",
1025
+ "Internal Reference Designator": "None",
1026
+ "Internal Connector Type": "None",
1027
+ "External Reference Designator": "SATA Port 6(Docking)",
1028
+ "External Connector Type": "SAS/SATA Plug Receptacle",
1029
+ "Port Type": "SATA",
1030
+ "Designation": "PCI-Express 5 X1",
1031
+ "Current Usage": "Available",
1032
+ "Length": "Short",
1033
+ "ID": "5",
1034
+ "Characteristics": {
1035
+ "3.3 V is provided": null,
1036
+ "Opening is shared": null,
1037
+ "PME signal is supported": null
1038
+ },
1039
+ "Bus Address": "0000:00:00.0",
1040
+ "Status": "Valid, Not Full",
1041
+ "Description": "Intel(R) Azalia Audio Device",
1042
+ "Language Description Format": "Abbreviated",
1043
+ "Installable Languages": {
1044
+ "en-US": null,
1045
+ "fr-FR": null,
1046
+ "ja-JP": null,
1047
+ "ko-KR": null
1048
+ },
1049
+ "Currently Installed Language": "en-US",
1050
+ "Location": "Rear",
1051
+ "Manufacture Date": "2008",
1052
+ "Name": "DELL",
1053
+ "Design Capacity": "46620 mWh",
1054
+ "Design Voltage": "7400 mV",
1055
+ "SBDS Version": "V1.0",
1056
+ "Maximum Error": "Unknown",
1057
+ "SBDS Chemistry": "LION",
1058
+ "OEM-specific Information": "0x00000000",
1059
+ "Granularity": "Unknown",
1060
+ "Operation": "Unknown",
1061
+ "Vendor Syndrome": "Unknown",
1062
+ "Memory Array Address": "Unknown",
1063
+ "Device Address": "Unknown",
1064
+ "Resolution": "Unknown",
1065
+ "Interface": "PS/2",
1066
+ "Buttons": "2",
1067
+ "Watchdog Timer": "Present",
1068
+ "Boot Option": "Do Not Reboot",
1069
+ "Boot Option On Limit": "Do Not Reboot",
1070
+ "Reset Count": "Unknown",
1071
+ "Reset Limit": "Unknown",
1072
+ "Timer Interval": "Unknown",
1073
+ "Timeout": "Unknown",
1074
+ "Power-On Password Status": "Unknown",
1075
+ "Keyboard Password Status": "Unknown",
1076
+ "Administrator Password Status": "Unknown",
1077
+ "Front Panel Reset Status": "Unknown",
1078
+ "Nominal Speed": "0 rpm",
1079
+ "Area Length": "18 bytes",
1080
+ "Header Start Offset": "0x0000",
1081
+ "Header Length": "16 bytes",
1082
+ "Data Start Offset": "0x0010",
1083
+ "Access Method": "General-purpose non-volatile data functions",
1084
+ "Access Address": "0x00F0",
1085
+ "Change Token": "0x00000000",
1086
+ "Header Format": "Type 1",
1087
+ "Supported Log Type Descriptors": "29",
1088
+ "Descriptor 1": "Single-bit ECC memory error",
1089
+ "Data Format 1": "Multiple-event handle",
1090
+ "Descriptor 2": "Multi-bit ECC memory error",
1091
+ "Data Format 2": "Multiple-event handle",
1092
+ "Descriptor 3": "Parity memory error",
1093
+ "Data Format 3": "None",
1094
+ "Descriptor 4": "Bus timeout",
1095
+ "Data Format 4": "None",
1096
+ "Descriptor 5": "I/O channel block",
1097
+ "Data Format 5": "None",
1098
+ "Descriptor 6": "Software NMI",
1099
+ "Data Format 6": "None",
1100
+ "Descriptor 7": "POST memory resize",
1101
+ "Data Format 7": "None",
1102
+ "Descriptor 8": "POST error",
1103
+ "Data Format 8": "POST results bitmap",
1104
+ "Descriptor 9": "PCI parity error",
1105
+ "Data Format 9": "None",
1106
+ "Descriptor 10": "PCI system error",
1107
+ "Data Format 10": "None",
1108
+ "Descriptor 11": "CPU failure",
1109
+ "Data Format 11": "None",
1110
+ "Descriptor 12": "EISA failsafe timer timeout",
1111
+ "Data Format 12": "None",
1112
+ "Descriptor 13": "Correctable memory log disabled",
1113
+ "Data Format 13": "None",
1114
+ "Descriptor 14": "Logging disabled",
1115
+ "Data Format 14": "None",
1116
+ "Descriptor 15": "System limit exceeded",
1117
+ "Data Format 15": "None",
1118
+ "Descriptor 16": "Asynchronous hardware timer expired",
1119
+ "Data Format 16": "None",
1120
+ "Descriptor 17": "System configuration information",
1121
+ "Data Format 17": "None",
1122
+ "Descriptor 18": "Hard disk information",
1123
+ "Data Format 18": "None",
1124
+ "Descriptor 19": "System reconfigured",
1125
+ "Data Format 19": "None",
1126
+ "Descriptor 20": "Uncorrectable CPU-complex error",
1127
+ "Data Format 20": "None",
1128
+ "Descriptor 21": "Log area reset/cleared",
1129
+ "Data Format 21": "None",
1130
+ "Descriptor 22": "System boot",
1131
+ "Data Format 22": "None",
1132
+ "Descriptor 23": "OEM-specific",
1133
+ "Data Format 23": "None",
1134
+ "Descriptor 24": "OEM-specific",
1135
+ "Data Format 24": "None",
1136
+ "Descriptor 25": "OEM-specific",
1137
+ "Data Format 25": "None",
1138
+ "Descriptor 26": "OEM-specific",
1139
+ "Data Format 26": "None",
1140
+ "Descriptor 27": "OEM-specific",
1141
+ "Data Format 27": "None",
1142
+ "Descriptor 28": "OEM-specific",
1143
+ "Data Format 28": "None",
1144
+ "Descriptor 29": "OEM-specific",
1145
+ "Data Format 29": "None",
1146
+ "Header and Data": {
1147
+ "DE 10 44 00 01 02 FF FF 00 00 00 00 00 00 00 00": null
1148
+ },
1149
+ "Strings": {
1150
+ "Intel": null,
1151
+ " 211": null
1152
+ }
1153
+ }
1154
+ ],
1155
+ "manufacturer": "Dynapack",
1156
+ "type": "Fan",
1157
+ "lock": "Not Present",
1158
+ "version": "0.1",
1159
+ "serial_number": "1.0",
1160
+ "asset_tag": " ",
1161
+ "boot_up_state": "Safe",
1162
+ "power_supply_state": "Safe",
1163
+ "thermal_state": "Safe",
1164
+ "security_status": "None",
1165
+ "oem_information": "0x00000000",
1166
+ "height": "Unspecified",
1167
+ "number_of_power_cords": "1",
1168
+ "contained_elements": "0",
1169
+ "sku_number": "Not Specified",
1170
+ "internal_reference_designator": "None",
1171
+ "internal_connector_type": "None",
1172
+ "external_reference_designator": "SATA Port 6(Docking)",
1173
+ "external_connector_type": "SAS/SATA Plug Receptacle",
1174
+ "port_type": "SATA",
1175
+ "designation": "PCI-Express 5 X1",
1176
+ "current_usage": "Available",
1177
+ "length": "Short",
1178
+ "id": "5",
1179
+ "bus_address": "0000:00:00.0",
1180
+ "status": "Valid, Not Full",
1181
+ "description": "Intel(R) Azalia Audio Device",
1182
+ "language_description_format": "Abbreviated",
1183
+ "currently_installed_language": "en-US",
1184
+ "location": "Rear",
1185
+ "manufacture_date": "2008",
1186
+ "name": "DELL",
1187
+ "design_capacity": "46620 mWh",
1188
+ "design_voltage": "7400 mV",
1189
+ "sbds_version": "V1.0",
1190
+ "maximum_error": "Unknown",
1191
+ "sbds_chemistry": "LION",
1192
+ "oem_specific_information": "0x00000000",
1193
+ "granularity": "Unknown",
1194
+ "operation": "Unknown",
1195
+ "vendor_syndrome": "Unknown",
1196
+ "memory_array_address": "Unknown",
1197
+ "device_address": "Unknown",
1198
+ "resolution": "Unknown",
1199
+ "interface": "PS/2",
1200
+ "buttons": "2",
1201
+ "watchdog_timer": "Present",
1202
+ "boot_option": "Do Not Reboot",
1203
+ "boot_option_on_limit": "Do Not Reboot",
1204
+ "reset_count": "Unknown",
1205
+ "reset_limit": "Unknown",
1206
+ "timer_interval": "Unknown",
1207
+ "timeout": "Unknown",
1208
+ "power_on_password_status": "Unknown",
1209
+ "keyboard_password_status": "Unknown",
1210
+ "administrator_password_status": "Unknown",
1211
+ "front_panel_reset_status": "Unknown",
1212
+ "nominal_speed": "0 rpm",
1213
+ "area_length": "18 bytes",
1214
+ "header_start_offset": "0x0000",
1215
+ "header_length": "16 bytes",
1216
+ "data_start_offset": "0x0010",
1217
+ "access_method": "General-purpose non-volatile data functions",
1218
+ "access_address": "0x00F0",
1219
+ "change_token": "0x00000000",
1220
+ "header_format": "Type 1",
1221
+ "supported_log_type_descriptors": "29",
1222
+ "descriptor_1": "Single-bit ECC memory error",
1223
+ "data_format_1": "Multiple-event handle",
1224
+ "descriptor_2": "Multi-bit ECC memory error",
1225
+ "data_format_2": "Multiple-event handle",
1226
+ "descriptor_3": "Parity memory error",
1227
+ "data_format_3": "None",
1228
+ "descriptor_4": "Bus timeout",
1229
+ "data_format_4": "None",
1230
+ "descriptor_5": "I/O channel block",
1231
+ "data_format_5": "None",
1232
+ "descriptor_6": "Software NMI",
1233
+ "data_format_6": "None",
1234
+ "descriptor_7": "POST memory resize",
1235
+ "data_format_7": "None",
1236
+ "descriptor_8": "POST error",
1237
+ "data_format_8": "POST results bitmap",
1238
+ "descriptor_9": "PCI parity error",
1239
+ "data_format_9": "None",
1240
+ "descriptor_10": "PCI system error",
1241
+ "data_format_10": "None",
1242
+ "descriptor_11": "CPU failure",
1243
+ "data_format_11": "None",
1244
+ "descriptor_12": "EISA failsafe timer timeout",
1245
+ "data_format_12": "None",
1246
+ "descriptor_13": "Correctable memory log disabled",
1247
+ "data_format_13": "None",
1248
+ "descriptor_14": "Logging disabled",
1249
+ "data_format_14": "None",
1250
+ "descriptor_15": "System limit exceeded",
1251
+ "data_format_15": "None",
1252
+ "descriptor_16": "Asynchronous hardware timer expired",
1253
+ "data_format_16": "None",
1254
+ "descriptor_17": "System configuration information",
1255
+ "data_format_17": "None",
1256
+ "descriptor_18": "Hard disk information",
1257
+ "data_format_18": "None",
1258
+ "descriptor_19": "System reconfigured",
1259
+ "data_format_19": "None",
1260
+ "descriptor_20": "Uncorrectable CPU-complex error",
1261
+ "data_format_20": "None",
1262
+ "descriptor_21": "Log area reset/cleared",
1263
+ "data_format_21": "None",
1264
+ "descriptor_22": "System boot",
1265
+ "data_format_22": "None",
1266
+ "descriptor_23": "OEM-specific",
1267
+ "data_format_23": "None",
1268
+ "descriptor_24": "OEM-specific",
1269
+ "data_format_24": "None",
1270
+ "descriptor_25": "OEM-specific",
1271
+ "data_format_25": "None",
1272
+ "descriptor_26": "OEM-specific",
1273
+ "data_format_26": "None",
1274
+ "descriptor_27": "OEM-specific",
1275
+ "data_format_27": "None",
1276
+ "descriptor_28": "OEM-specific",
1277
+ "data_format_28": "None",
1278
+ "descriptor_29": "OEM-specific",
1279
+ "data_format_29": "None"
1280
+ },
1281
+ "oem_strings": {
1282
+ "all_records": [
1283
+ {
1284
+ "record_id": "0x0045",
1285
+ "size": "11",
1286
+ "application_identifier": "End Of Table",
1287
+ "String 1": "Dell System",
1288
+ "String 2": "1[052E]",
1289
+ "String 3": "13[PP36S]",
1290
+ "String 4": "14[3]",
1291
+ "String 5": "15[9]"
1292
+ }
1293
+ ],
1294
+ "string_1": "Dell System",
1295
+ "string_2": "1[052E]",
1296
+ "string_3": "13[PP36S]",
1297
+ "string_4": "14[3]",
1298
+ "string_5": "15[9]"
1299
+ }
1300
+ },
1301
+ "ohai_time": 1376938215.4451306,
1302
+ "lsb": {
1303
+ "id": "Ubuntu",
1304
+ "release": "13.04",
1305
+ "codename": "raring",
1306
+ "description": "Ubuntu 13.04"
1307
+ },
1308
+ "platform": "ubuntu",
1309
+ "platform_version": "13.04",
1310
+ "platform_family": "debian",
1311
+ "etc": {
1312
+ "passwd": {
1313
+ "root": {
1314
+ "dir": "/root",
1315
+ "gid": 0,
1316
+ "uid": 0,
1317
+ "shell": "/bin/bash",
1318
+ "gecos": "root"
1319
+ },
1320
+ "daemon": {
1321
+ "dir": "/usr/sbin",
1322
+ "gid": 1,
1323
+ "uid": 1,
1324
+ "shell": "/bin/sh",
1325
+ "gecos": "daemon"
1326
+ },
1327
+ "bin": {
1328
+ "dir": "/bin",
1329
+ "gid": 2,
1330
+ "uid": 2,
1331
+ "shell": "/bin/sh",
1332
+ "gecos": "bin"
1333
+ },
1334
+ "sys": {
1335
+ "dir": "/dev",
1336
+ "gid": 3,
1337
+ "uid": 3,
1338
+ "shell": "/bin/sh",
1339
+ "gecos": "sys"
1340
+ },
1341
+ "sync": {
1342
+ "dir": "/bin",
1343
+ "gid": 65534,
1344
+ "uid": 4,
1345
+ "shell": "/bin/sync",
1346
+ "gecos": "sync"
1347
+ },
1348
+ "games": {
1349
+ "dir": "/usr/games",
1350
+ "gid": 60,
1351
+ "uid": 5,
1352
+ "shell": "/bin/sh",
1353
+ "gecos": "games"
1354
+ },
1355
+ "man": {
1356
+ "dir": "/var/cache/man",
1357
+ "gid": 12,
1358
+ "uid": 6,
1359
+ "shell": "/bin/sh",
1360
+ "gecos": "man"
1361
+ },
1362
+ "lp": {
1363
+ "dir": "/var/spool/lpd",
1364
+ "gid": 7,
1365
+ "uid": 7,
1366
+ "shell": "/bin/sh",
1367
+ "gecos": "lp"
1368
+ },
1369
+ "mail": {
1370
+ "dir": "/var/mail",
1371
+ "gid": 8,
1372
+ "uid": 8,
1373
+ "shell": "/bin/sh",
1374
+ "gecos": "mail"
1375
+ },
1376
+ "news": {
1377
+ "dir": "/var/spool/news",
1378
+ "gid": 9,
1379
+ "uid": 9,
1380
+ "shell": "/bin/sh",
1381
+ "gecos": "news"
1382
+ },
1383
+ "uucp": {
1384
+ "dir": "/var/spool/uucp",
1385
+ "gid": 10,
1386
+ "uid": 10,
1387
+ "shell": "/bin/sh",
1388
+ "gecos": "uucp"
1389
+ },
1390
+ "proxy": {
1391
+ "dir": "/bin",
1392
+ "gid": 13,
1393
+ "uid": 13,
1394
+ "shell": "/bin/sh",
1395
+ "gecos": "proxy"
1396
+ },
1397
+ "www-data": {
1398
+ "dir": "/var/www",
1399
+ "gid": 33,
1400
+ "uid": 33,
1401
+ "shell": "/bin/sh",
1402
+ "gecos": "www-data"
1403
+ },
1404
+ "backup": {
1405
+ "dir": "/var/backups",
1406
+ "gid": 34,
1407
+ "uid": 34,
1408
+ "shell": "/bin/sh",
1409
+ "gecos": "backup"
1410
+ },
1411
+ "list": {
1412
+ "dir": "/var/list",
1413
+ "gid": 38,
1414
+ "uid": 38,
1415
+ "shell": "/bin/sh",
1416
+ "gecos": "Mailing List Manager"
1417
+ },
1418
+ "irc": {
1419
+ "dir": "/var/run/ircd",
1420
+ "gid": 39,
1421
+ "uid": 39,
1422
+ "shell": "/bin/sh",
1423
+ "gecos": "ircd"
1424
+ },
1425
+ "gnats": {
1426
+ "dir": "/var/lib/gnats",
1427
+ "gid": 41,
1428
+ "uid": 41,
1429
+ "shell": "/bin/sh",
1430
+ "gecos": "Gnats Bug-Reporting System (admin)"
1431
+ },
1432
+ "nobody": {
1433
+ "dir": "/nonexistent",
1434
+ "gid": 65534,
1435
+ "uid": 65534,
1436
+ "shell": "/bin/sh",
1437
+ "gecos": "nobody"
1438
+ },
1439
+ "libuuid": {
1440
+ "dir": "/var/lib/libuuid",
1441
+ "gid": 101,
1442
+ "uid": 100,
1443
+ "shell": "/bin/sh",
1444
+ "gecos": ""
1445
+ },
1446
+ "syslog": {
1447
+ "dir": "/home/syslog",
1448
+ "gid": 103,
1449
+ "uid": 101,
1450
+ "shell": "/bin/false",
1451
+ "gecos": ""
1452
+ },
1453
+ "messagebus": {
1454
+ "dir": "/var/run/dbus",
1455
+ "gid": 105,
1456
+ "uid": 102,
1457
+ "shell": "/bin/false",
1458
+ "gecos": ""
1459
+ },
1460
+ "ntp": {
1461
+ "dir": "/home/ntp",
1462
+ "gid": 108,
1463
+ "uid": 103,
1464
+ "shell": "/bin/false",
1465
+ "gecos": ""
1466
+ },
1467
+ "sshd": {
1468
+ "dir": "/var/run/sshd",
1469
+ "gid": 65534,
1470
+ "uid": 104,
1471
+ "shell": "/usr/sbin/nologin",
1472
+ "gecos": ""
1473
+ },
1474
+ "ubuntu": {
1475
+ "dir": "/home/ubuntu",
1476
+ "gid": 1000,
1477
+ "uid": 1000,
1478
+ "shell": "/bin/bash",
1479
+ "gecos": "Ubuntu,,,"
1480
+ },
1481
+ "mray": {
1482
+ "dir": "/home/mray",
1483
+ "gid": 1001,
1484
+ "uid": 1001,
1485
+ "shell": "/bin/bash",
1486
+ "gecos": "Matt Ray"
1487
+ },
1488
+ "pulse": {
1489
+ "dir": "/var/run/pulse",
1490
+ "gid": 112,
1491
+ "uid": 105,
1492
+ "shell": "/bin/false",
1493
+ "gecos": "PulseAudio daemon,,,"
1494
+ },
1495
+ "usbmux": {
1496
+ "dir": "/home/usbmux",
1497
+ "gid": 46,
1498
+ "uid": 106,
1499
+ "shell": "/bin/false",
1500
+ "gecos": "usbmux daemon,,,"
1501
+ },
1502
+ "rtkit": {
1503
+ "dir": "/proc",
1504
+ "gid": 114,
1505
+ "uid": 107,
1506
+ "shell": "/bin/false",
1507
+ "gecos": "RealtimeKit,,,"
1508
+ }
1509
+ },
1510
+ "group": {
1511
+ "root": {
1512
+ "gid": 0,
1513
+ "members": [
1514
+
1515
+ ]
1516
+ },
1517
+ "daemon": {
1518
+ "gid": 1,
1519
+ "members": [
1520
+
1521
+ ]
1522
+ },
1523
+ "bin": {
1524
+ "gid": 2,
1525
+ "members": [
1526
+
1527
+ ]
1528
+ },
1529
+ "sys": {
1530
+ "gid": 3,
1531
+ "members": [
1532
+
1533
+ ]
1534
+ },
1535
+ "adm": {
1536
+ "gid": 4,
1537
+ "members": [
1538
+ "ubuntu"
1539
+ ]
1540
+ },
1541
+ "tty": {
1542
+ "gid": 5,
1543
+ "members": [
1544
+
1545
+ ]
1546
+ },
1547
+ "disk": {
1548
+ "gid": 6,
1549
+ "members": [
1550
+
1551
+ ]
1552
+ },
1553
+ "lp": {
1554
+ "gid": 7,
1555
+ "members": [
1556
+
1557
+ ]
1558
+ },
1559
+ "mail": {
1560
+ "gid": 8,
1561
+ "members": [
1562
+
1563
+ ]
1564
+ },
1565
+ "news": {
1566
+ "gid": 9,
1567
+ "members": [
1568
+
1569
+ ]
1570
+ },
1571
+ "uucp": {
1572
+ "gid": 10,
1573
+ "members": [
1574
+
1575
+ ]
1576
+ },
1577
+ "man": {
1578
+ "gid": 12,
1579
+ "members": [
1580
+
1581
+ ]
1582
+ },
1583
+ "proxy": {
1584
+ "gid": 13,
1585
+ "members": [
1586
+
1587
+ ]
1588
+ },
1589
+ "kmem": {
1590
+ "gid": 15,
1591
+ "members": [
1592
+
1593
+ ]
1594
+ },
1595
+ "dialout": {
1596
+ "gid": 20,
1597
+ "members": [
1598
+
1599
+ ]
1600
+ },
1601
+ "fax": {
1602
+ "gid": 21,
1603
+ "members": [
1604
+
1605
+ ]
1606
+ },
1607
+ "voice": {
1608
+ "gid": 22,
1609
+ "members": [
1610
+
1611
+ ]
1612
+ },
1613
+ "cdrom": {
1614
+ "gid": 24,
1615
+ "members": [
1616
+ "ubuntu"
1617
+ ]
1618
+ },
1619
+ "floppy": {
1620
+ "gid": 25,
1621
+ "members": [
1622
+
1623
+ ]
1624
+ },
1625
+ "tape": {
1626
+ "gid": 26,
1627
+ "members": [
1628
+
1629
+ ]
1630
+ },
1631
+ "sudo": {
1632
+ "gid": 27,
1633
+ "members": [
1634
+ "ubuntu"
1635
+ ]
1636
+ },
1637
+ "audio": {
1638
+ "gid": 29,
1639
+ "members": [
1640
+ "pulse"
1641
+ ]
1642
+ },
1643
+ "dip": {
1644
+ "gid": 30,
1645
+ "members": [
1646
+ "ubuntu"
1647
+ ]
1648
+ },
1649
+ "www-data": {
1650
+ "gid": 33,
1651
+ "members": [
1652
+
1653
+ ]
1654
+ },
1655
+ "backup": {
1656
+ "gid": 34,
1657
+ "members": [
1658
+
1659
+ ]
1660
+ },
1661
+ "operator": {
1662
+ "gid": 37,
1663
+ "members": [
1664
+
1665
+ ]
1666
+ },
1667
+ "list": {
1668
+ "gid": 38,
1669
+ "members": [
1670
+
1671
+ ]
1672
+ },
1673
+ "irc": {
1674
+ "gid": 39,
1675
+ "members": [
1676
+
1677
+ ]
1678
+ },
1679
+ "src": {
1680
+ "gid": 40,
1681
+ "members": [
1682
+
1683
+ ]
1684
+ },
1685
+ "gnats": {
1686
+ "gid": 41,
1687
+ "members": [
1688
+
1689
+ ]
1690
+ },
1691
+ "shadow": {
1692
+ "gid": 42,
1693
+ "members": [
1694
+
1695
+ ]
1696
+ },
1697
+ "utmp": {
1698
+ "gid": 43,
1699
+ "members": [
1700
+
1701
+ ]
1702
+ },
1703
+ "video": {
1704
+ "gid": 44,
1705
+ "members": [
1706
+
1707
+ ]
1708
+ },
1709
+ "sasl": {
1710
+ "gid": 45,
1711
+ "members": [
1712
+
1713
+ ]
1714
+ },
1715
+ "plugdev": {
1716
+ "gid": 46,
1717
+ "members": [
1718
+ "ubuntu"
1719
+ ]
1720
+ },
1721
+ "staff": {
1722
+ "gid": 50,
1723
+ "members": [
1724
+
1725
+ ]
1726
+ },
1727
+ "games": {
1728
+ "gid": 60,
1729
+ "members": [
1730
+
1731
+ ]
1732
+ },
1733
+ "users": {
1734
+ "gid": 100,
1735
+ "members": [
1736
+
1737
+ ]
1738
+ },
1739
+ "nogroup": {
1740
+ "gid": 65534,
1741
+ "members": [
1742
+
1743
+ ]
1744
+ },
1745
+ "libuuid": {
1746
+ "gid": 101,
1747
+ "members": [
1748
+
1749
+ ]
1750
+ },
1751
+ "crontab": {
1752
+ "gid": 102,
1753
+ "members": [
1754
+
1755
+ ]
1756
+ },
1757
+ "syslog": {
1758
+ "gid": 103,
1759
+ "members": [
1760
+
1761
+ ]
1762
+ },
1763
+ "fuse": {
1764
+ "gid": 104,
1765
+ "members": [
1766
+
1767
+ ]
1768
+ },
1769
+ "messagebus": {
1770
+ "gid": 105,
1771
+ "members": [
1772
+
1773
+ ]
1774
+ },
1775
+ "mlocate": {
1776
+ "gid": 106,
1777
+ "members": [
1778
+
1779
+ ]
1780
+ },
1781
+ "ssh": {
1782
+ "gid": 107,
1783
+ "members": [
1784
+
1785
+ ]
1786
+ },
1787
+ "ntp": {
1788
+ "gid": 108,
1789
+ "members": [
1790
+
1791
+ ]
1792
+ },
1793
+ "ubuntu": {
1794
+ "gid": 1000,
1795
+ "members": [
1796
+
1797
+ ]
1798
+ },
1799
+ "lpadmin": {
1800
+ "gid": 109,
1801
+ "members": [
1802
+ "ubuntu"
1803
+ ]
1804
+ },
1805
+ "sambashare": {
1806
+ "gid": 110,
1807
+ "members": [
1808
+ "ubuntu"
1809
+ ]
1810
+ },
1811
+ "mray": {
1812
+ "gid": 1001,
1813
+ "members": [
1814
+
1815
+ ]
1816
+ },
1817
+ "sysadmin": {
1818
+ "gid": 2300,
1819
+ "members": [
1820
+ "mray"
1821
+ ]
1822
+ },
1823
+ "utempter": {
1824
+ "gid": 111,
1825
+ "members": [
1826
+
1827
+ ]
1828
+ },
1829
+ "pulse": {
1830
+ "gid": 112,
1831
+ "members": [
1832
+
1833
+ ]
1834
+ },
1835
+ "pulse-access": {
1836
+ "gid": 113,
1837
+ "members": [
1838
+
1839
+ ]
1840
+ },
1841
+ "rtkit": {
1842
+ "gid": 114,
1843
+ "members": [
1844
+
1845
+ ]
1846
+ },
1847
+ "vboxusers": {
1848
+ "gid": 115,
1849
+ "members": [
1850
+
1851
+ ]
1852
+ }
1853
+ }
1854
+ },
1855
+ "current_user": "mray",
1856
+ "virtualization": {
1857
+ "system": "kvm",
1858
+ "role": "host"
1859
+ },
1860
+ "uptime_seconds": 15898,
1861
+ "uptime": "4 hours 24 minutes 58 seconds",
1862
+ "idletime_seconds": 63148,
1863
+ "idletime": "17 hours 32 minutes 28 seconds",
1864
+ "memory": {
1865
+ "swap": {
1866
+ "cached": "0kB",
1867
+ "total": "2064380kB",
1868
+ "free": "2064380kB"
1869
+ },
1870
+ "total": "3352916kB",
1871
+ "free": "1390204kB",
1872
+ "buffers": "117708kB",
1873
+ "cached": "1587764kB",
1874
+ "active": "749724kB",
1875
+ "inactive": "1029892kB",
1876
+ "dirty": "0kB",
1877
+ "writeback": "0kB",
1878
+ "anon_pages": "74120kB",
1879
+ "mapped": "10140kB",
1880
+ "slab": "139100kB",
1881
+ "slab_reclaimable": "122588kB",
1882
+ "slab_unreclaim": "16512kB",
1883
+ "page_tables": "2292kB",
1884
+ "nfs_unstable": "0kB",
1885
+ "bounce": "0kB",
1886
+ "commit_limit": "3740836kB",
1887
+ "committed_as": "126668kB",
1888
+ "vmalloc_total": "34359738367kB",
1889
+ "vmalloc_used": "347576kB",
1890
+ "vmalloc_chunk": "34359387100kB"
1891
+ },
1892
+ "filesystem": {
1893
+ "/dev/mapper/guenter--vg-root": {
1894
+ "kb_size": "50700972",
1895
+ "kb_used": "2303224",
1896
+ "kb_available": "45815632",
1897
+ "percent_used": "5%",
1898
+ "mount": "/",
1899
+ "fs_type": "ext4",
1900
+ "mount_options": [
1901
+ "rw",
1902
+ "errors=remount-ro"
1903
+ ],
1904
+ "uuid": "d530311b-c093-43e2-b7b5-56b7cccf8c6d"
1905
+ },
1906
+ "none": {
1907
+ "kb_size": "102400",
1908
+ "kb_used": "0",
1909
+ "kb_available": "102400",
1910
+ "percent_used": "0%",
1911
+ "mount": "/run/user",
1912
+ "fs_type": "tmpfs",
1913
+ "mount_options": [
1914
+ "rw",
1915
+ "noexec",
1916
+ "nosuid",
1917
+ "nodev",
1918
+ "size=104857600",
1919
+ "mode=0755"
1920
+ ]
1921
+ },
1922
+ "udev": {
1923
+ "kb_size": "1666600",
1924
+ "kb_used": "12",
1925
+ "kb_available": "1666588",
1926
+ "percent_used": "1%",
1927
+ "mount": "/dev",
1928
+ "fs_type": "devtmpfs",
1929
+ "mount_options": [
1930
+ "rw",
1931
+ "mode=0755"
1932
+ ]
1933
+ },
1934
+ "tmpfs": {
1935
+ "kb_size": "335292",
1936
+ "kb_used": "376",
1937
+ "kb_available": "334916",
1938
+ "percent_used": "1%",
1939
+ "mount": "/run",
1940
+ "fs_type": "tmpfs",
1941
+ "mount_options": [
1942
+ "rw",
1943
+ "noexec",
1944
+ "nosuid",
1945
+ "size=10%",
1946
+ "mode=0755"
1947
+ ]
1948
+ },
1949
+ "/dev/sda1": {
1950
+ "kb_size": "233191",
1951
+ "kb_used": "30193",
1952
+ "kb_available": "190557",
1953
+ "percent_used": "14%",
1954
+ "mount": "/boot",
1955
+ "fs_type": "ext2",
1956
+ "mount_options": [
1957
+ "rw"
1958
+ ],
1959
+ "uuid": "0b83a23e-ce7f-40a5-a75f-83e1c843f598"
1960
+ },
1961
+ "proc": {
1962
+ "mount": "/proc",
1963
+ "fs_type": "proc",
1964
+ "mount_options": [
1965
+ "rw",
1966
+ "noexec",
1967
+ "nosuid",
1968
+ "nodev"
1969
+ ]
1970
+ },
1971
+ "sysfs": {
1972
+ "mount": "/sys",
1973
+ "fs_type": "sysfs",
1974
+ "mount_options": [
1975
+ "rw",
1976
+ "noexec",
1977
+ "nosuid",
1978
+ "nodev"
1979
+ ]
1980
+ },
1981
+ "devpts": {
1982
+ "mount": "/dev/pts",
1983
+ "fs_type": "devpts",
1984
+ "mount_options": [
1985
+ "rw",
1986
+ "noexec",
1987
+ "nosuid",
1988
+ "gid=5",
1989
+ "mode=0620"
1990
+ ]
1991
+ },
1992
+ "/dev/sda5": {
1993
+ "fs_type": "LVM2_member",
1994
+ "uuid": "8wGuHC-w7E6-meyh-hMHO-AgdS-rt0X-Ij91MU"
1995
+ },
1996
+ "/dev/mapper/guenter--vg-swap_1": {
1997
+ "fs_type": "swap",
1998
+ "uuid": "83d4ffbd-fc10-4549-bf2d-98524095e9c2"
1999
+ },
2000
+ "rootfs": {
2001
+ "mount": "/",
2002
+ "fs_type": "rootfs",
2003
+ "mount_options": [
2004
+ "rw"
2005
+ ]
2006
+ }
2007
+ },
2008
+ "block_device": {
2009
+ "sda": {
2010
+ "size": "500118192",
2011
+ "removable": "0",
2012
+ "model": "LITEONIT LMT-256",
2013
+ "rev": "VZDA",
2014
+ "state": "running",
2015
+ "timeout": "30",
2016
+ "vendor": "ATA"
2017
+ },
2018
+ "dm-0": {
2019
+ "size": "103284736",
2020
+ "removable": "0"
2021
+ },
2022
+ "dm-1": {
2023
+ "size": "4128768",
2024
+ "removable": "0"
2025
+ },
2026
+ "ram0": {
2027
+ "size": "131072",
2028
+ "removable": "0"
2029
+ },
2030
+ "ram1": {
2031
+ "size": "131072",
2032
+ "removable": "0"
2033
+ },
2034
+ "ram2": {
2035
+ "size": "131072",
2036
+ "removable": "0"
2037
+ },
2038
+ "ram3": {
2039
+ "size": "131072",
2040
+ "removable": "0"
2041
+ },
2042
+ "ram4": {
2043
+ "size": "131072",
2044
+ "removable": "0"
2045
+ },
2046
+ "ram5": {
2047
+ "size": "131072",
2048
+ "removable": "0"
2049
+ },
2050
+ "ram6": {
2051
+ "size": "131072",
2052
+ "removable": "0"
2053
+ },
2054
+ "ram7": {
2055
+ "size": "131072",
2056
+ "removable": "0"
2057
+ },
2058
+ "ram8": {
2059
+ "size": "131072",
2060
+ "removable": "0"
2061
+ },
2062
+ "ram9": {
2063
+ "size": "131072",
2064
+ "removable": "0"
2065
+ },
2066
+ "loop0": {
2067
+ "size": "0",
2068
+ "removable": "0"
2069
+ },
2070
+ "loop1": {
2071
+ "size": "0",
2072
+ "removable": "0"
2073
+ },
2074
+ "loop2": {
2075
+ "size": "0",
2076
+ "removable": "0"
2077
+ },
2078
+ "loop3": {
2079
+ "size": "0",
2080
+ "removable": "0"
2081
+ },
2082
+ "loop4": {
2083
+ "size": "0",
2084
+ "removable": "0"
2085
+ },
2086
+ "loop5": {
2087
+ "size": "0",
2088
+ "removable": "0"
2089
+ },
2090
+ "loop6": {
2091
+ "size": "0",
2092
+ "removable": "0"
2093
+ },
2094
+ "loop7": {
2095
+ "size": "0",
2096
+ "removable": "0"
2097
+ },
2098
+ "ram10": {
2099
+ "size": "131072",
2100
+ "removable": "0"
2101
+ },
2102
+ "ram11": {
2103
+ "size": "131072",
2104
+ "removable": "0"
2105
+ },
2106
+ "ram12": {
2107
+ "size": "131072",
2108
+ "removable": "0"
2109
+ },
2110
+ "ram13": {
2111
+ "size": "131072",
2112
+ "removable": "0"
2113
+ },
2114
+ "ram14": {
2115
+ "size": "131072",
2116
+ "removable": "0"
2117
+ },
2118
+ "ram15": {
2119
+ "size": "131072",
2120
+ "removable": "0"
2121
+ }
2122
+ },
2123
+ "cpu": {
2124
+ "0": {
2125
+ "vendor_id": "GenuineIntel",
2126
+ "family": "6",
2127
+ "model": "42",
2128
+ "model_name": "Intel(R) Core(TM) i7-2637M CPU @ 1.70GHz",
2129
+ "stepping": "7",
2130
+ "mhz": "800.000",
2131
+ "cache_size": "4096 KB",
2132
+ "physical_id": "0",
2133
+ "core_id": "0",
2134
+ "cores": "2",
2135
+ "flags": [
2136
+ "fpu",
2137
+ "vme",
2138
+ "de",
2139
+ "pse",
2140
+ "tsc",
2141
+ "msr",
2142
+ "pae",
2143
+ "mce",
2144
+ "cx8",
2145
+ "apic",
2146
+ "sep",
2147
+ "mtrr",
2148
+ "pge",
2149
+ "mca",
2150
+ "cmov",
2151
+ "pat",
2152
+ "pse36",
2153
+ "clflush",
2154
+ "dts",
2155
+ "acpi",
2156
+ "mmx",
2157
+ "fxsr",
2158
+ "sse",
2159
+ "sse2",
2160
+ "ss",
2161
+ "ht",
2162
+ "tm",
2163
+ "pbe",
2164
+ "syscall",
2165
+ "nx",
2166
+ "rdtscp",
2167
+ "lm",
2168
+ "constant_tsc",
2169
+ "arch_perfmon",
2170
+ "pebs",
2171
+ "bts",
2172
+ "nopl",
2173
+ "xtopology",
2174
+ "nonstop_tsc",
2175
+ "aperfmperf",
2176
+ "eagerfpu",
2177
+ "pni",
2178
+ "pclmulqdq",
2179
+ "dtes64",
2180
+ "monitor",
2181
+ "ds_cpl",
2182
+ "vmx",
2183
+ "smx",
2184
+ "est",
2185
+ "tm2",
2186
+ "ssse3",
2187
+ "cx16",
2188
+ "xtpr",
2189
+ "pdcm",
2190
+ "pcid",
2191
+ "sse4_1",
2192
+ "sse4_2",
2193
+ "x2apic",
2194
+ "popcnt",
2195
+ "tsc_deadline_timer",
2196
+ "aes",
2197
+ "xsave",
2198
+ "avx",
2199
+ "lahf_lm",
2200
+ "ida",
2201
+ "arat",
2202
+ "epb",
2203
+ "xsaveopt",
2204
+ "pln",
2205
+ "pts",
2206
+ "dtherm",
2207
+ "tpr_shadow",
2208
+ "vnmi",
2209
+ "flexpriority",
2210
+ "ept",
2211
+ "vpid"
2212
+ ]
2213
+ },
2214
+ "1": {
2215
+ "vendor_id": "GenuineIntel",
2216
+ "family": "6",
2217
+ "model": "42",
2218
+ "model_name": "Intel(R) Core(TM) i7-2637M CPU @ 1.70GHz",
2219
+ "stepping": "7",
2220
+ "mhz": "800.000",
2221
+ "cache_size": "4096 KB",
2222
+ "physical_id": "0",
2223
+ "core_id": "0",
2224
+ "cores": "2",
2225
+ "flags": [
2226
+ "fpu",
2227
+ "vme",
2228
+ "de",
2229
+ "pse",
2230
+ "tsc",
2231
+ "msr",
2232
+ "pae",
2233
+ "mce",
2234
+ "cx8",
2235
+ "apic",
2236
+ "sep",
2237
+ "mtrr",
2238
+ "pge",
2239
+ "mca",
2240
+ "cmov",
2241
+ "pat",
2242
+ "pse36",
2243
+ "clflush",
2244
+ "dts",
2245
+ "acpi",
2246
+ "mmx",
2247
+ "fxsr",
2248
+ "sse",
2249
+ "sse2",
2250
+ "ss",
2251
+ "ht",
2252
+ "tm",
2253
+ "pbe",
2254
+ "syscall",
2255
+ "nx",
2256
+ "rdtscp",
2257
+ "lm",
2258
+ "constant_tsc",
2259
+ "arch_perfmon",
2260
+ "pebs",
2261
+ "bts",
2262
+ "nopl",
2263
+ "xtopology",
2264
+ "nonstop_tsc",
2265
+ "aperfmperf",
2266
+ "eagerfpu",
2267
+ "pni",
2268
+ "pclmulqdq",
2269
+ "dtes64",
2270
+ "monitor",
2271
+ "ds_cpl",
2272
+ "vmx",
2273
+ "smx",
2274
+ "est",
2275
+ "tm2",
2276
+ "ssse3",
2277
+ "cx16",
2278
+ "xtpr",
2279
+ "pdcm",
2280
+ "pcid",
2281
+ "sse4_1",
2282
+ "sse4_2",
2283
+ "x2apic",
2284
+ "popcnt",
2285
+ "tsc_deadline_timer",
2286
+ "aes",
2287
+ "xsave",
2288
+ "avx",
2289
+ "lahf_lm",
2290
+ "ida",
2291
+ "arat",
2292
+ "epb",
2293
+ "xsaveopt",
2294
+ "pln",
2295
+ "pts",
2296
+ "dtherm",
2297
+ "tpr_shadow",
2298
+ "vnmi",
2299
+ "flexpriority",
2300
+ "ept",
2301
+ "vpid"
2302
+ ]
2303
+ },
2304
+ "2": {
2305
+ "vendor_id": "GenuineIntel",
2306
+ "family": "6",
2307
+ "model": "42",
2308
+ "model_name": "Intel(R) Core(TM) i7-2637M CPU @ 1.70GHz",
2309
+ "stepping": "7",
2310
+ "mhz": "800.000",
2311
+ "cache_size": "4096 KB",
2312
+ "physical_id": "0",
2313
+ "core_id": "1",
2314
+ "cores": "2",
2315
+ "flags": [
2316
+ "fpu",
2317
+ "vme",
2318
+ "de",
2319
+ "pse",
2320
+ "tsc",
2321
+ "msr",
2322
+ "pae",
2323
+ "mce",
2324
+ "cx8",
2325
+ "apic",
2326
+ "sep",
2327
+ "mtrr",
2328
+ "pge",
2329
+ "mca",
2330
+ "cmov",
2331
+ "pat",
2332
+ "pse36",
2333
+ "clflush",
2334
+ "dts",
2335
+ "acpi",
2336
+ "mmx",
2337
+ "fxsr",
2338
+ "sse",
2339
+ "sse2",
2340
+ "ss",
2341
+ "ht",
2342
+ "tm",
2343
+ "pbe",
2344
+ "syscall",
2345
+ "nx",
2346
+ "rdtscp",
2347
+ "lm",
2348
+ "constant_tsc",
2349
+ "arch_perfmon",
2350
+ "pebs",
2351
+ "bts",
2352
+ "nopl",
2353
+ "xtopology",
2354
+ "nonstop_tsc",
2355
+ "aperfmperf",
2356
+ "eagerfpu",
2357
+ "pni",
2358
+ "pclmulqdq",
2359
+ "dtes64",
2360
+ "monitor",
2361
+ "ds_cpl",
2362
+ "vmx",
2363
+ "smx",
2364
+ "est",
2365
+ "tm2",
2366
+ "ssse3",
2367
+ "cx16",
2368
+ "xtpr",
2369
+ "pdcm",
2370
+ "pcid",
2371
+ "sse4_1",
2372
+ "sse4_2",
2373
+ "x2apic",
2374
+ "popcnt",
2375
+ "tsc_deadline_timer",
2376
+ "aes",
2377
+ "xsave",
2378
+ "avx",
2379
+ "lahf_lm",
2380
+ "ida",
2381
+ "arat",
2382
+ "epb",
2383
+ "xsaveopt",
2384
+ "pln",
2385
+ "pts",
2386
+ "dtherm",
2387
+ "tpr_shadow",
2388
+ "vnmi",
2389
+ "flexpriority",
2390
+ "ept",
2391
+ "vpid"
2392
+ ]
2393
+ },
2394
+ "3": {
2395
+ "vendor_id": "GenuineIntel",
2396
+ "family": "6",
2397
+ "model": "42",
2398
+ "model_name": "Intel(R) Core(TM) i7-2637M CPU @ 1.70GHz",
2399
+ "stepping": "7",
2400
+ "mhz": "800.000",
2401
+ "cache_size": "4096 KB",
2402
+ "physical_id": "0",
2403
+ "core_id": "1",
2404
+ "cores": "2",
2405
+ "flags": [
2406
+ "fpu",
2407
+ "vme",
2408
+ "de",
2409
+ "pse",
2410
+ "tsc",
2411
+ "msr",
2412
+ "pae",
2413
+ "mce",
2414
+ "cx8",
2415
+ "apic",
2416
+ "sep",
2417
+ "mtrr",
2418
+ "pge",
2419
+ "mca",
2420
+ "cmov",
2421
+ "pat",
2422
+ "pse36",
2423
+ "clflush",
2424
+ "dts",
2425
+ "acpi",
2426
+ "mmx",
2427
+ "fxsr",
2428
+ "sse",
2429
+ "sse2",
2430
+ "ss",
2431
+ "ht",
2432
+ "tm",
2433
+ "pbe",
2434
+ "syscall",
2435
+ "nx",
2436
+ "rdtscp",
2437
+ "lm",
2438
+ "constant_tsc",
2439
+ "arch_perfmon",
2440
+ "pebs",
2441
+ "bts",
2442
+ "nopl",
2443
+ "xtopology",
2444
+ "nonstop_tsc",
2445
+ "aperfmperf",
2446
+ "eagerfpu",
2447
+ "pni",
2448
+ "pclmulqdq",
2449
+ "dtes64",
2450
+ "monitor",
2451
+ "ds_cpl",
2452
+ "vmx",
2453
+ "smx",
2454
+ "est",
2455
+ "tm2",
2456
+ "ssse3",
2457
+ "cx16",
2458
+ "xtpr",
2459
+ "pdcm",
2460
+ "pcid",
2461
+ "sse4_1",
2462
+ "sse4_2",
2463
+ "x2apic",
2464
+ "popcnt",
2465
+ "tsc_deadline_timer",
2466
+ "aes",
2467
+ "xsave",
2468
+ "avx",
2469
+ "lahf_lm",
2470
+ "ida",
2471
+ "arat",
2472
+ "epb",
2473
+ "xsaveopt",
2474
+ "pln",
2475
+ "pts",
2476
+ "dtherm",
2477
+ "tpr_shadow",
2478
+ "vnmi",
2479
+ "flexpriority",
2480
+ "ept",
2481
+ "vpid"
2482
+ ]
2483
+ },
2484
+ "total": 4,
2485
+ "real": 1
2486
+ },
2487
+ "recipes": [
2488
+ "apt::cacher-client",
2489
+ "ntp",
2490
+ "openssh",
2491
+ "users::sysadmins",
2492
+ "sudo",
2493
+ "chef-client::delete_validation",
2494
+ "virtualbox",
2495
+ "vagrant",
2496
+ "test-kitchen"
2497
+ ],
2498
+ "roles": [
2499
+ "lab-base",
2500
+ "vagrant"
2501
+ ]
2502
+ }
2503
+ }