1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822 | powersj@z170:~/Work/repos/cloud-init/cloud-init$ python3 -m tests.cloud_tests run -n xenial --deb cloud-init_0.7.9-153-g16a7302f-0ubuntu1~16.04.2~ppa3_all.deb -v
2017-06-28 12:47:36,475 - tests.cloud_tests - DEBUG - running with args: Namespace(data_dir=None, deb='cloud-init_0.7.9-153-g16a7302f-0ubuntu1~16.04.2~ppa3_all.deb', feature_override={}, os_name=['xenial'], platform=['lxd'], ppa=None, preserve_data=False, quiet=False, repo=None, result=None, rpm=None, script=None, subcmd='run', test_config=['/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/bugs/lp1511485.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/bugs/lp1611074.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/bugs/lp1628337.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/add_apt_repositories.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/alter_completion_message.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/configure_instance_trusted_ca_certificates.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/configure_instances_ssh_keys.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/including_user_groups.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/install_arbitrary_packages.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/install_run_chef_recipes.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/run_apt_upgrade.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/run_commands.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/run_commands_first_boot.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/setup_run_puppet.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/examples/writing_out_arbitrary_files.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/main/command_output_simple.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/command_output_simple.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_conf.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/clou/command_output_simple.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_conf.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/clou/command_output_simple.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_conf.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/clou/command_output_simple.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_conf.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/clou/tests/cloud_tests/configs/modules/apt_configure_conf.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_disable_suites.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_primary.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_proxy.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_security.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_sources_key.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_sources_keyserver.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_sources_list.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_configure_sources_ppa.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_pipelining_disable.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/apt_pipelining_os.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/bootcmd.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/byobu.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ca_certs.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/debug_disable.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/debug_enable.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/final_message.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/keys_to_console.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/landscape.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/locale.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/lxd_bridge.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/lxd_dir.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ntp.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ntp_pools.yaml','/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ntp_servers.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/package_update_upgrade_install.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/runcmd.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/salt_minion.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/seed_random_command.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/seed_random_data.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/set_hostname.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/set_hostname_fqdn.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/set_password.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/set_password_expire.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/set_password_list.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/set_password_list_string.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/snappy.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ssh_auth_key_fingerprints_disable.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ssh_auth_key_fingerprints_enable.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ssh_import_id.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ssh_keys_generate.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/ssh_keys_provided.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/timezone.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/user_groups.yaml', '/home/powersj/Work/repos/cloud-init/cloud-init/tests/cloud_tests/configs/modules/write_files.yaml'], upgrade=False, upgrade_full=False, verbose=True)
2017-06-28 12:47:36,475 - tests.cloud_tests - DEBUG - using tmpdir: /tmp/cloud_test_data_j6a2ez6r
2017-06-28 12:47:36,481 - tests.cloud_tests - INFO - setting up platform: lxd
2017-06-28 12:47:36,526 - tests.cloud_tests - INFO - acquiring image for os: xenial
2017-06-28 12:48:07,464 - tests.cloud_tests - DEBUG - updating args for setup with: None
2017-06-28 12:48:07,464 - tests.cloud_tests - INFO - setting up ubuntu-xenial
2017-06-28 12:48:07,497 - tests.cloud_tests - DEBUG - install deb: "cloud-init_0.7.9-153-g16a7302f-0ubuntu1~16.04.2~ppa3_all.deb" into target
2017-06-28 12:48:17,344 - tests.cloud_tests - DEBUG - successfully installed: cloud-init_0.7.9-153-g16a7302f-0ubuntu1~16.04.2~ppa3_all.deb, version: '0.7.9-153-g16a7302f-0ubuntu1~16.04.2~ppa3'
2017-06-28 12:48:17,519 - tests.cloud_tests - DEBUG - after setup complete, installed cloud-init version is: '0.7.9-153-g16a7302f-0ubuntu1~16.04.2~ppa3'
2017-06-28 12:48:17,520 - tests.cloud_tests - DEBUG - creating snapshot for xenial
2017-06-28 12:48:23,947 - tests.cloud_tests - INFO - collecting test data for os: xenial
2017-06-28 12:48:23,952 - tests.cloud_tests - WARNING - test config bugs/lp1511485 is not enabled, skipping
2017-06-28 12:48:23,955 - tests.cloud_tests - WARNING - test config bugs/lp1611074 is not enabled, skipping
2017-06-28 12:48:23,958 - tests.cloud_tests - INFO - collecting test data for test: bugs/lp1628337
2017-06-28 12:48:49,299 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:48:49,816 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:48:50,364 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:48:50,909 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:48:51,503 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:48:52,051 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:48:59,797 - tests.cloud_tests - WARNING - test config examples/add_apt_repositories is not enabled, skipping
2017-06-28 12:48:59,807 - tests.cloud_tests - WARNING - test config examples/alter_completion_message is not enabled, skipping
2017-06-28 12:48:59,815 - tests.cloud_tests - WARNING - test config examples/configure_instance_trusted_ca_certificates is not enabled, skipping
2017-06-28 12:48:59,823 - tests.cloud_tests - WARNING - test config examples/configure_instances_ssh_keys is not enabled, skipping
2017-06-28 12:48:59,828 - tests.cloud_tests - WARNING - test config examples/including_user_groups is not enabled, skipping
2017-06-28 12:48:59,831 - tests.cloud_tests - WARNING - test config examples/install_arbitrary_packages is not enabled, skipping
2017-06-28 12:48:59,837 - tests.cloud_tests - WARNING - test config examples/install_run_chef_recipes is not enabled, skipping
2017-06-28 12:48:59,839 - tests.cloud_tests - WARNING - test config examples/run_apt_upgrade is not enabled, skipping
2017-06-28 12:48:59,842 - tests.cloud_tests - WARNING - test config examples/run_commands is not enabled, skipping
2017-06-28 12:48:59,844 - tests.cloud_tests - WARNING - test config examples/run_commands_first_boot is not enabled, skipping
2017-06-28 12:48:59,848 - tests.cloud_tests - WARNING - test config examples/setup_run_puppet is not enabled, skipping
2017-06-28 12:48:59,851 - tests.cloud_tests - WARNING - test config examples/writing_out_arbitrary_files is not enabled, skipping
2017-06-28 12:48:59,853 - tests.cloud_tests - INFO - collecting test data for test: main/command_output_simple
2017-06-28 12:49:06,847 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:49:07,317 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:49:07,831 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:49:08,379 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:49:08,931 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:49:09,465 - tests.cloud_tests - DEBUG - running collect script: cloud-init-test-output
2017-06-28 12:49:10,023 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:49:14,733 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_conf
2017-06-28 12:49:22,142 - tests.cloud_tests - DEBUG - running collect script: 94cloud-init-config
2017-06-28 12:49:22,660 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:49:23,197 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:49:23,716 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:49:24,269 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:49:24,794 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:49:25,341 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:49:32,414 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_disable_suites
2017-06-28 12:49:38,484 - tests.cloud_tests - DEBUG - running collect script: sources.list
2017-06-28 12:49:39,010 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:49:39,524 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:49:40,062 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:49:40,588 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:49:41,132 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:49:41,673 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:49:48,179 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_primary
2017-06-28 12:49:55,071 - tests.cloud_tests - DEBUG - running collect script: sources.list
2017-06-28 12:49:55,626 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:49:56,143 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:49:56,660 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:49:57,181 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:49:57,709 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:49:58,269 - tests.cloud_tests - DEBUG - running collect script: ubuntu.sources.list
2017-06-28 12:49:58,834 - tests.cloud_tests - DEBUG - running collect script: gatech.sources.list
2017-06-28 12:49:59,399 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:50:04,287 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_proxy
2017-06-28 12:50:10,188 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:50:10,720 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:50:11,282 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:50:11,822 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:50:12,380 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:50:12,922 - tests.cloud_tests - DEBUG - running collect script: 90cloud-init-aptproxy
2017-06-28 12:50:13,483 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:50:18,745 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_security
2017-06-28 12:50:26,815 - tests.cloud_tests - DEBUG - running collect script: sources.list
2017-06-28 12:50:27,365 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:50:27,899 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:50:28,459 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:50:28,956 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:50:29,529 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:50:30,093 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:50:36,328 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_sources_key
2017-06-28 12:51:05,729 - tests.cloud_tests - DEBUG - running collect script: sources.list
2017-06-28 12:51:06,241 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:51:06,757 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:51:07,310 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:51:07,839 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:51:08,392 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:51:08,924 - tests.cloud_tests - DEBUG - running collect script: apt_key_list
2017-06-28 12:51:09,557 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:51:16,259 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_sources_keyserver
2017-06-28 12:51:44,442 - tests.cloud_tests - DEBUG - running collect script: sources.list
2017-06-28 12:51:44,849 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:51:45,280 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:51:45,677 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:51:46,109 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:51:46,628 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:51:47,184 - tests.cloud_tests - DEBUG - running collect script: apt_key_list
2017-06-28 12:51:47,667 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:51:53,760 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_sources_list
2017-06-28 12:52:00,359 - tests.cloud_tests - DEBUG - running collect script: sources.list
2017-06-28 12:52:00,853 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:52:01,287 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:52:01,717 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:52:02,265 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:52:02,836 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:52:03,358 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:52:08,648 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_configure_sources_ppa
2017-06-28 12:52:43,893 - tests.cloud_tests - DEBUG - running collect script: sources.list
2017-06-28 12:52:44,385 - tests.cloud_tests - DEBUG - running collect script: sources_full
2017-06-28 12:52:44,905 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:52:45,423 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:52:45,925 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:52:46,482 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:52:47,040 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:52:47,591 - tests.cloud_tests - DEBUG - running collect script: apt-key
2017-06-28 12:52:48,244 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:52:51,442 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_pipelining_disable
2017-06-28 12:52:57,428 - tests.cloud_tests - DEBUG - running collect script: 90cloud-init-pipelining
2017-06-28 12:52:57,956 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:52:58,507 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:52:59,049 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:52:59,582 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:53:00,133 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:53:00,558 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:53:07,282 - tests.cloud_tests - INFO - collecting test data for test: modules/apt_pipelining_os
2017-06-28 12:53:13,382 - tests.cloud_tests - DEBUG - running collect script: 90cloud-init-pipelining
2017-06-28 12:53:13,839 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:53:14,362 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:53:14,914 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:53:15,356 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:53:15,920 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:53:16,493 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:53:23,248 - tests.cloud_tests - INFO - collecting test data for test: modules/bootcmd
2017-06-28 12:53:29,181 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:53:29,690 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:53:30,224 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:53:30,767 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:53:31,311 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:53:31,859 - tests.cloud_tests - DEBUG - running collect script: hosts
2017-06-28 12:53:32,366 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:53:39,126 - tests.cloud_tests - INFO - collecting test data for test: modules/byobu
2017-06-28 12:53:45,959 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:53:46,483 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:53:47,039 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:53:47,540 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:53:47,927 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:53:48,353 - tests.cloud_tests - DEBUG - running collect script: byobu_profile_enabled
2017-06-28 12:53:48,737 - tests.cloud_tests - DEBUG - running collect script: byobu_installed
2017-06-28 12:53:49,213 - tests.cloud_tests - DEBUG - running collect script: byobu_launch_exists
2017-06-28 12:53:49,596 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:53:55,518 - tests.cloud_tests - INFO - collecting test data for test: modules/ca_certs
2017-06-28 12:54:01,606 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:54:02,109 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:54:02,625 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:54:03,158 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:54:03,687 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:54:04,219 - tests.cloud_tests - DEBUG - running collect script: cert
2017-06-28 12:54:04,756 - tests.cloud_tests - DEBUG - running collect script: cert_count
2017-06-28 12:54:05,294 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:54:11,127 - tests.cloud_tests - INFO - collecting test data for test: modules/debug_disable
2017-06-28 12:54:17,193 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:54:17,714 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:54:18,192 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:54:18,572 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:54:19,047 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:54:19,429 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:54:27,263 - tests.cloud_tests - INFO - collecting test data for test: modules/debug_enable
2017-06-28 12:54:33,143 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:54:33,609 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:54:34,099 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:54:34,599 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:54:35,125 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:54:35,658 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:54:41,619 - tests.cloud_tests - INFO - collecting test data for test: modules/final_message
2017-06-28 12:54:49,152 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:54:49,665 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:54:50,213 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:54:50,671 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:54:51,098 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:54:51,519 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:54:58,667 - tests.cloud_tests - INFO - collecting test data for test: modules/keys_to_console
2017-06-28 12:55:05,794 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:55:06,331 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:55:06,873 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:55:07,437 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:55:07,942 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:55:08,468 - tests.cloud_tests - DEBUG - running collect script: syslog
2017-06-28 12:55:09,021 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:55:15,350 - tests.cloud_tests - WARNING - test config modules/landscape is not enabled, skipping
2017-06-28 12:55:15,355 - tests.cloud_tests - INFO - collecting test data for test: modules/locale
2017-06-28 12:55:21,351 - tests.cloud_tests - DEBUG - running collect script: locale_default
2017-06-28 12:55:21,840 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:55:22,343 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:55:22,878 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:55:23,401 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:55:23,934 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:55:24,500 - tests.cloud_tests - DEBUG - running collect script: locale_gen
2017-06-28 12:55:25,024 - tests.cloud_tests - DEBUG - running collect script: locale_a
2017-06-28 12:55:25,551 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:55:31,336 - tests.cloud_tests - INFO - collecting test data for test: modules/lxd_bridge
2017-06-28 12:55:39,163 - tests.cloud_tests - DEBUG - running collect script: lxc-bridge
2017-06-28 12:55:39,686 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:55:40,175 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:55:40,775 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:55:41,212 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:55:41,593 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:55:42,102 - tests.cloud_tests - DEBUG - running collect script: lxc
2017-06-28 12:55:42,620 - tests.cloud_tests - DEBUG - running collect script: lxd
2017-06-28 12:55:43,158 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:55:47,321 - tests.cloud_tests - INFO - collecting test data for test: modules/lxd_dir
2017-06-28 12:55:54,338 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:55:54,761 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:55:55,177 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:55:55,575 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:55:56,001 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:55:56,471 - tests.cloud_tests - DEBUG - running collect script: lxc
2017-06-28 12:55:56,983 - tests.cloud_tests - DEBUG - running collect script: lxd
2017-06-28 12:55:57,538 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:56:01,570 - tests.cloud_tests - INFO - collecting test data for test: modules/ntp
2017-06-28 12:56:35,004 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:56:35,487 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:56:36,010 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:56:36,492 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:56:37,033 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:56:37,572 - tests.cloud_tests - DEBUG - running collect script: ntp_conf_pool_list
2017-06-28 12:56:38,124 - tests.cloud_tests - DEBUG - running collect script: ntp_conf_dist_empty
2017-06-28 12:56:38,645 - tests.cloud_tests - DEBUG - running collect script: ntp_installed
2017-06-28 12:56:39,173 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:56:45,200 - tests.cloud_tests - INFO - collecting test data for test: modules/ntp_pools
2017-06-28 12:57:18,875 - tests.cloud_tests - DEBUG - running collect script: ntp_conf_dist_pools
2017-06-28 12:57:19,390 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:57:19,948 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:57:20,472 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:57:21,023 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:57:21,571 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:57:22,115 - tests.cloud_tests - DEBUG - running collect script: ntp_conf_pools
2017-06-28 12:57:22,626 - tests.cloud_tests - DEBUG - running collect script: ntpq_servers
2017-06-28 12:57:23,170 - tests.cloud_tests - DEBUG - running collect script: ntp_installed_pools
2017-06-28 12:57:23,678 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:57:26,899 - tests.cloud_tests - INFO - collecting test data for test: modules/ntp_servers
2017-06-28 12:57:56,168 - tests.cloud_tests - DEBUG - running collect script: ntp_conf_dist_servers
2017-06-28 12:57:56,679 - tests.cloud_tests - DEBUG - running collect script: ntp_installed_servers
2017-06-28 12:57:57,199 - tests.cloud_tests - DEBUG - running collect script: ntp_conf_servers
2017-06-28 12:57:57,733 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:57:58,207 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:57:58,746 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:57:59,313 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:57:59,827 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:58:00,390 - tests.cloud_tests - DEBUG - running collect script: ntpq_servers
2017-06-28 12:58:03,352 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:58:04,802 - tests.cloud_tests - INFO - collecting test data for test: modules/package_update_upgrade_install
2017-06-28 12:58:39,859 - tests.cloud_tests - DEBUG - running collect script: apt_history_cmdline
2017-06-28 12:58:40,285 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:58:40,766 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:58:41,243 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:58:41,778 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:58:42,230 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:58:42,683 - tests.cloud_tests - DEBUG - running collect script: dpkg_htop
2017-06-28 12:58:43,075 - tests.cloud_tests - DEBUG - running collect script: dpkg_tree
2017-06-28 12:58:43,463 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:58:50,343 - tests.cloud_tests - INFO - collecting test data for test: modules/runcmd
2017-06-28 12:58:56,155 - tests.cloud_tests - DEBUG - running collect script: run_cmd
2017-06-28 12:58:56,552 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:58:56,958 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:58:57,356 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:58:57,804 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:58:58,239 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:58:58,714 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:59:05,444 - tests.cloud_tests - WARNING - test config modules/salt_minion is not enabled, skipping
2017-06-28 12:59:05,449 - tests.cloud_tests - WARNING - test config modules/seed_random_command is not enabled, skipping
2017-06-28 12:59:05,452 - tests.cloud_tests - INFO - collecting test data for test: modules/seed_random_data
2017-06-28 12:59:11,295 - tests.cloud_tests - DEBUG - running collect script: seed_data
2017-06-28 12:59:11,704 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:59:12,135 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:59:12,544 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:59:12,958 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:59:13,382 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:59:13,787 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:59:20,430 - tests.cloud_tests - INFO - collecting test data for test: modules/set_hostname
2017-06-28 12:59:27,327 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:59:27,733 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:59:28,141 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:59:28,583 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:59:29,004 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:59:29,427 - tests.cloud_tests - DEBUG - running collect script: hosts
2017-06-28 12:59:29,866 - tests.cloud_tests - DEBUG - running collect script: fqdn
2017-06-28 12:59:40,291 - tests.cloud_tests - DEBUG - running collect script: hostname
2017-06-28 12:59:40,703 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 12:59:45,547 - tests.cloud_tests - INFO - collecting test data for test: modules/set_hostname_fqdn
2017-06-28 12:59:52,580 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 12:59:52,974 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 12:59:53,368 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 12:59:53,752 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 12:59:54,138 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 12:59:54,542 - tests.cloud_tests - DEBUG - running collect script: hosts
2017-06-28 12:59:54,936 - tests.cloud_tests - DEBUG - running collect script: fqdn
2017-06-28 12:59:55,333 - tests.cloud_tests - DEBUG - running collect script: hostname
2017-06-28 12:59:55,734 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:00:01,607 - tests.cloud_tests - INFO - collecting test data for test: modules/set_password
2017-06-28 13:00:07,516 - tests.cloud_tests - DEBUG - running collect script: sshd_config
2017-06-28 13:00:07,935 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:00:08,359 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:00:08,793 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:00:09,190 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:00:09,583 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:00:09,994 - tests.cloud_tests - DEBUG - running collect script: shadow
2017-06-28 13:00:10,383 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:00:15,731 - tests.cloud_tests - INFO - collecting test data for test: modules/set_password_expire
2017-06-28 13:00:23,463 - tests.cloud_tests - DEBUG - running collect script: sshd_config
2017-06-28 13:00:23,855 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:00:24,269 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:00:24,697 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:00:25,115 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:00:25,543 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:00:25,961 - tests.cloud_tests - DEBUG - running collect script: shadow
2017-06-28 13:00:26,360 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:00:33,026 - tests.cloud_tests - INFO - collecting test data for test: modules/set_password_list
2017-06-28 13:00:39,749 - tests.cloud_tests - DEBUG - running collect script: sshd_config
2017-06-28 13:00:40,165 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:00:40,559 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:00:40,958 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:00:41,358 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:00:41,748 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:00:42,156 - tests.cloud_tests - DEBUG - running collect script: shadow
2017-06-28 13:00:42,560 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:00:48,466 - tests.cloud_tests - INFO - collecting test data for test: modules/set_password_list_string
2017-06-28 13:00:54,410 - tests.cloud_tests - DEBUG - running collect script: sshd_config
2017-06-28 13:00:54,803 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:00:55,196 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:00:55,584 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:00:55,978 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:00:56,377 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:00:56,773 - tests.cloud_tests - DEBUG - running collect script: shadow
2017-06-28 13:00:57,174 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:01:03,679 - tests.cloud_tests - INFO - collecting test data for test: modules/snappy
2017-06-28 13:01:09,328 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:01:09,722 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:01:10,134 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:01:10,551 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:01:10,944 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:01:11,351 - tests.cloud_tests - DEBUG - running collect script: snapd
2017-06-28 13:01:11,767 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:01:18,917 - tests.cloud_tests - INFO - collecting test data for test: modules/ssh_auth_key_fingerprints_disable
2017-06-28 13:01:25,844 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:01:26,234 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:01:26,617 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:01:27,001 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:01:27,391 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:01:27,783 - tests.cloud_tests - DEBUG - running collect script: syslog
2017-06-28 13:01:28,174 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:01:34,337 - tests.cloud_tests - INFO - collecting test data for test: modules/ssh_auth_key_fingerprints_enable
2017-06-28 13:01:40,436 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:01:40,830 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:01:41,221 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:01:41,612 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:01:42,013 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:01:42,400 - tests.cloud_tests - DEBUG - running collect script: syslog
2017-06-28 13:01:42,787 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:01:49,006 - tests.cloud_tests - INFO - collecting test data for test: modules/ssh_import_id
2017-06-28 13:01:57,169 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:01:57,594 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:01:58,001 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:01:58,425 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:01:58,828 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:01:59,214 - tests.cloud_tests - DEBUG - running collect script: auth_keys_ubuntu
2017-06-28 13:01:59,599 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:02:04,589 - tests.cloud_tests - INFO - collecting test data for test: modules/ssh_keys_generate
2017-06-28 13:02:10,526 - tests.cloud_tests - DEBUG - running collect script: dsa_public
2017-06-28 13:02:10,934 - tests.cloud_tests - DEBUG - running collect script: ecdsa_private
2017-06-28 13:02:11,318 - tests.cloud_tests - DEBUG - running collect script: rsa_public
2017-06-28 13:02:11,721 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:02:12,129 - tests.cloud_tests - DEBUG - running collect script: ed25519_private
2017-06-28 13:02:12,546 - tests.cloud_tests - DEBUG - running collect script: auth_keys_root
2017-06-28 13:02:12,955 - tests.cloud_tests - DEBUG - running collect script: rsa_private
2017-06-28 13:02:13,363 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:02:13,779 - tests.cloud_tests - DEBUG - running collect script: ecdsa_public
2017-06-28 13:02:14,179 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:02:14,587 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:02:14,994 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:02:15,411 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:02:15,824 - tests.cloud_tests - DEBUG - running collect script: dsa_private
2017-06-28 13:02:16,230 - tests.cloud_tests - DEBUG - running collect script: auth_keys_ubuntu
2017-06-28 13:02:16,659 - tests.cloud_tests - DEBUG - running collect script: ed25519_public
2017-06-28 13:02:18,601 - tests.cloud_tests - WARNING - test config modules/ssh_keys_provided is not enabled, skipping
2017-06-28 13:02:18,604 - tests.cloud_tests - INFO - collecting test data for test: modules/timezone
2017-06-28 13:02:25,249 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:02:25,636 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:02:26,025 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:02:26,415 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:02:26,806 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:02:27,215 - tests.cloud_tests - DEBUG - running collect script: timezone
2017-06-28 13:02:27,614 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:02:34,453 - tests.cloud_tests - INFO - collecting test data for test: modules/user_groups
2017-06-28 13:02:40,554 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:02:40,945 - tests.cloud_tests - DEBUG - running collect script: group_ubuntu
2017-06-28 13:02:41,342 - tests.cloud_tests - DEBUG - running collect script: user_barfoo
2017-06-28 13:02:41,747 - tests.cloud_tests - DEBUG - running collect script: user_ubuntu
2017-06-28 13:02:42,138 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:02:42,545 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:02:42,970 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:02:43,370 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:02:43,765 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:02:44,162 - tests.cloud_tests - DEBUG - running collect script: group_cloud_users
2017-06-28 13:02:44,571 - tests.cloud_tests - DEBUG - running collect script: user_foobar
2017-06-28 13:02:44,976 - tests.cloud_tests - DEBUG - running collect script: user_cloudy
2017-06-28 13:02:50,088 - tests.cloud_tests - INFO - collecting test data for test: modules/write_files
2017-06-28 13:02:56,788 - tests.cloud_tests - DEBUG - running collect script: cloud-init-output.log
2017-06-28 13:02:57,197 - tests.cloud_tests - DEBUG - running collect script: cloud-init.log
2017-06-28 13:02:57,586 - tests.cloud_tests - DEBUG - running collect script: instance-id
2017-06-28 13:02:58,002 - tests.cloud_tests - DEBUG - running collect script: status.json
2017-06-28 13:02:58,405 - tests.cloud_tests - DEBUG - running collect script: result.json
2017-06-28 13:02:58,803 - tests.cloud_tests - DEBUG - running collect script: file_text
2017-06-28 13:02:59,203 - tests.cloud_tests - DEBUG - running collect script: file_binary
2017-06-28 13:02:59,616 - tests.cloud_tests - DEBUG - running collect script: file_b64
2017-06-28 13:03:00,002 - tests.cloud_tests - DEBUG - running collect script: file_gzip
2017-06-28 13:03:00,385 - tests.cloud_tests - DEBUG - running collect script: cloud-init-version
2017-06-28 13:03:10,190 - tests.cloud_tests - DEBUG - collect stages: {'name': 'collect data', 'time': 933.7150564193726, 'stages': [{'name': 'collect for platform: lxd', 'time': 933.6845083236694, 'stages': [{'name': 'set up and collect data for os: xenial', 'time': 900.5577967166901, 'stages': [{'name': 'set up for ubuntu-xenial', 'time': 9.852818250656128, 'stages': [{'name': 'setup func for --deb, install deb', 'time': 9.852809190750122, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect test data for xenial', 'time': 881.5353374481201, 'stages': [{}, {}, {'name': 'collect for test: bugs/lp1628337', 'time': 28.405665397644043, 'stages': [{'name': 'boot instance', 'time': 25.094999074935913, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.516667366027832, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5483436584472656, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5446584224700928, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5939369201660156, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.548417329788208, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5585713386535645, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {'name': 'collect for test: main/command_output_simple', 'time': 10.433642625808716, 'stages': [{'name': 'boot instance', 'time': 6.72842001914978, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.47031521797180176, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5138452053070068, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5481722354888916, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5518217086791992, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5346298217773438, 'success': True, 'errors': []}, {'name': 'script cloud-init-test-output', 'time': 0.5574839115142822, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5288786888122559, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_conf', 'time': 11.016554594039917, 'stages': [{'name': 'boot instance', 'time': 7.257155179977417, 'success': True, 'errors': []}, {'name': 'script 94cloud-init-config', 'time': 0.5175809860229492, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5365064144134521, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5193688869476318, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5534753799438477, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5242311954498291, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5477180480957031, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5604448318481445, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_disable_suites', 'time': 9.592334508895874, 'stages': [{'name': 'boot instance', 'time': 5.838858366012573, 'success': True, 'errors': []}, {'name': 'script sources.list', 'time': 0.5262937545776367, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5135471820831299, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5380079746246338, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5263183116912842, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5435609817504883, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5405871868133545, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5650782585144043, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_primary', 'time': 11.532953262329102, 'stages': [{'name': 'boot instance', 'time': 6.674340486526489, 'success': True, 'errors': []}, {'name': 'script sources.list', 'time': 0.5543811321258545, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5166912078857422, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5174379348754883, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5213830471038818, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5276064872741699, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5601010322570801, 'success': True, 'errors': []}, {'name': 'script ubuntu.sources.list', 'time': 0.5646138191223145, 'success': True, 'errors': []}, {'name': 'script gatech.sources.list', 'time': 0.5650513172149658, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5312423706054688, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_proxy', 'time': 9.481267213821411, 'stages': [{'name': 'boot instance', 'time': 5.641272783279419, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5318329334259033, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5622527599334717, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5398035049438477, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5585343837738037, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.542229413986206, 'success': True, 'errors': []}, {'name': 'script 90cloud-init-aptproxy', 'time': 0.5601825714111328, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5450737476348877, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_security', 'time': 11.725028276443481, 'stages': [{'name': 'boot instance', 'time': 7.8606276512146, 'success': True, 'errors': []}, {'name': 'script sources.list', 'time': 0.5499594211578369, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5340778827667236, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5594081878662109, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.49684858322143555, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5732126235961914, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.563835859298706, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5869748592376709, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_sources_key', 'time': 33.506983518600464, 'stages': [{'name': 'boot instance', 'time': 29.13581943511963, 'success': True, 'errors': []}, {'name': 'script sources.list', 'time': 0.5127272605895996, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5158240795135498, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.552802562713623, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.529557466506958, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5521440505981445, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5327703952789307, 'success': True, 'errors': []}, {'name': 'script apt_key_list', 'time': 0.6329853534698486, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.542259693145752, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_sources_keyserver', 'time': 31.640832662582397, 'stages': [{'name': 'boot instance', 'time': 27.914564609527588, 'success': True, 'errors': []}, {'name': 'script sources.list', 'time': 0.4066894054412842, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.43088769912719727, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.3971843719482422, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.4314384460449219, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5193057060241699, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5561854839324951, 'success': True, 'errors': []}, {'name': 'script apt_key_list', 'time': 0.4826529026031494, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5018539428710938, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_sources_list', 'time': 9.962383270263672, 'stages': [{'name': 'boot instance', 'time': 6.389465093612671, 'success': True, 'errors': []}, {'name': 'script sources.list', 'time': 0.49329042434692383, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.43416404724121094, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.43015050888061523, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5484471321105957, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.570185661315918, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5219957828521729, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.574615478515625, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_configure_sources_ppa', 'time': 39.882819414138794, 'stages': [{'name': 'boot instance', 'time': 34.948832988739014, 'success': True, 'errors': []}, {'name': 'script sources.list', 'time': 0.49149584770202637, 'success': True, 'errors': []}, {'name': 'script sources_full', 'time': 0.5203440189361572, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5173425674438477, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5019664764404297, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5571236610412598, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5583288669586182, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5506081581115723, 'success': True, 'errors': []}, {'name': 'script apt-key', 'time': 0.6535778045654297, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5831058025360107, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_pipelining_disable', 'time': 9.323270559310913, 'stages': [{'name': 'boot instance', 'time': 5.798842430114746, 'success': True, 'errors': []}, {'name': 'script 90cloud-init-pipelining', 'time': 0.5285773277282715, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5511329174041748, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.541438102722168, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.533160924911499, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5509190559387207, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.4253218173980713, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.39380788803100586, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/apt_pipelining_os', 'time': 9.523340702056885, 'stages': [{'name': 'boot instance', 'time': 5.82807469367981, 'success': True, 'errors': []}, {'name': 'script 90cloud-init-pipelining', 'time': 0.45684123039245605, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5237195491790771, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5515487194061279, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.44193553924560547, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5643784999847412, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5729000568389893, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5838727951049805, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/bootcmd', 'time': 9.44809365272522, 'stages': [{'name': 'boot instance', 'time': 5.706562519073486, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5086073875427246, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5336802005767822, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.543351411819458, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5438332557678223, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.547999382019043, 'success': True, 'errors': []}, {'name': 'script hosts', 'time': 0.5073699951171875, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5566089153289795, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/byobu', 'time': 10.818652153015137, 'stages': [{'name': 'boot instance', 'time': 6.616809844970703, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.523876428604126, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5557913780212402, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5007119178771973, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.38736391067504883, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.42594385147094727, 'success': True, 'errors': []}, {'name': 'script byobu_profile_enabled', 'time': 0.38416385650634766, 'success': True, 'errors': []}, {'name': 'script byobu_installed', 'time': 0.4756004810333252, 'success': True, 'errors': []}, {'name': 'script byobu_launch_exists', 'time': 0.38324451446533203, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5650660991668701, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/ca_certs', 'time': 10.0162672996521, 'stages': [{'name': 'boot instance', 'time': 5.8622777462005615, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5029458999633789, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5157561302185059, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5330736637115479, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5287129878997803, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5328199863433838, 'success': True, 'errors': []}, {'name': 'script cert', 'time': 0.5364537239074707, 'success': True, 'errors': []}, {'name': 'script cert_count', 'time': 0.5386035442352295, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.4655463695526123, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/debug_disable', 'time': 8.65178370475769, 'stages': [{'name': 'boot instance', 'time': 5.880139112472534, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5206727981567383, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.4776430130004883, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.38010144233703613, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.4753570556640625, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.38161635398864746, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5362093448638916, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/debug_enable', 'time': 8.701308727264404, 'stages': [{'name': 'boot instance', 'time': 5.6450018882751465, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.46622610092163086, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.48985910415649414, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5004496574401855, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5258791446685791, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5325994491577148, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5412414073944092, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/final_message', 'time': 10.274410009384155, 'stages': [{'name': 'boot instance', 'time': 7.391276121139526, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.512507438659668, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.548346996307373, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.4581634998321533, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.42635416984558105, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.42153382301330566, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5161700248718262, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/keys_to_console', 'time': 10.5833899974823, 'stages': [{'name': 'boot instance', 'time': 6.792995929718018, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5368804931640625, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5413484573364258, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5643792152404785, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5054183006286621, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5252056121826172, 'success': True, 'errors': []}, {'name': 'script syslog', 'time': 0.5533742904663086, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5637073516845703, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {}, {'name': 'collect for test: modules/locale', 'time': 10.472387313842773, 'stages': [{'name': 'boot instance', 'time': 5.718942165374756, 'success': True, 'errors': []}, {'name': 'script locale_default', 'time': 0.4882948398590088, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5033135414123535, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5351226329803467, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5225512981414795, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5330483913421631, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5663626194000244, 'success': True, 'errors': []}, {'name': 'script locale_gen', 'time': 0.5238299369812012, 'success': True, 'errors': []}, {'name': 'script locale_a', 'time': 0.5268566608428955, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5539743900299072, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/lxd_bridge', 'time': 12.218966960906982, 'stages': [{'name': 'boot instance', 'time': 7.6934850215911865, 'success': True, 'errors': []}, {'name': 'script lxc-bridge', 'time': 0.5222902297973633, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.4889528751373291, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.599940299987793, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.4376704692840576, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.3808462619781494, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5085601806640625, 'success': True, 'errors': []}, {'name': 'script lxc', 'time': 0.5180268287658691, 'success': True, 'errors': []}, {'name': 'script lxd', 'time': 0.5385539531707764, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5305507183074951, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/lxd_dir', 'time': 10.529605388641357, 'stages': [{'name': 'boot instance', 'time': 6.797074556350708, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.42281341552734375, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.416095495223999, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.39766764640808105, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.425994873046875, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.47006940841674805, 'success': True, 'errors': []}, {'name': 'script lxc', 'time': 0.5124223232269287, 'success': True, 'errors': []}, {'name': 'script lxd', 'time': 0.5547876358032227, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5326011180877686, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/ntp', 'time': 37.82491707801819, 'stages': [{'name': 'boot instance', 'time': 33.19488048553467, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.4827303886413574, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5230107307434082, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.4815514087677002, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.541764497756958, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5383608341217041, 'success': True, 'errors': []}, {'name': 'script ntp_conf_pool_list', 'time': 0.5527522563934326, 'success': True, 'errors': []}, {'name': 'script ntp_conf_dist_empty', 'time': 0.5200560092926025, 'success': True, 'errors': []}, {'name': 'script ntp_installed', 'time': 0.5287978649139404, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.4609076976776123, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/ntp_pools', 'time': 38.70993447303772, 'stages': [{'name': 'boot instance', 'time': 33.3940007686615, 'success': True, 'errors': []}, {'name': 'script ntp_conf_dist_pools', 'time': 0.51519775390625, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.5577285289764404, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5241217613220215, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5513148307800293, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5479860305786133, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5430824756622314, 'success': True, 'errors': []}, {'name': 'script ntp_conf_pools', 'time': 0.5112643241882324, 'success': True, 'errors': []}, {'name': 'script ntpq_servers', 'time': 0.544511079788208, 'success': True, 'errors': []}, {'name': 'script ntp_installed_pools', 'time': 0.5072948932647705, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.5133147239685059, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/ntp_servers', 'time': 36.71214699745178, 'stages': [{'name': 'boot instance', 'time': 29.050633668899536, 'success': True, 'errors': []}, {'name': 'script ntp_conf_dist_servers', 'time': 0.5101680755615234, 'success': True, 'errors': []}, {'name': 'script ntp_installed_servers', 'time': 0.5203537940979004, 'success': True, 'errors': []}, {'name': 'script ntp_conf_servers', 'time': 0.5337238311767578, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.4747040271759033, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.5387814044952393, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5668082237243652, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.5138938426971436, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.5628581047058105, 'success': True, 'errors': []}, {'name': 'script ntpq_servers', 'time': 2.9621670246124268, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.47797155380249023, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/package_update_upgrade_install', 'time': 38.91372609138489, 'stages': [{'name': 'boot instance', 'time': 34.82662510871887, 'success': True, 'errors': []}, {'name': 'script apt_history_cmdline', 'time': 0.42528700828552246, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.48159146308898926, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.4769442081451416, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.5347261428833008, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.45180296897888184, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.45340585708618164, 'success': True, 'errors': []}, {'name': 'script dpkg_htop', 'time': 0.39176034927368164, 'success': True, 'errors': []}, {'name': 'script dpkg_tree', 'time': 0.38769960403442383, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.4838101863861084, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/runcmd', 'time': 8.57387638092041, 'stages': [{'name': 'boot instance', 'time': 5.61043381690979, 'success': True, 'errors': []}, {'name': 'script run_cmd', 'time': 0.3964872360229492, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.40624499320983887, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.39833879470825195, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.44779038429260254, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.4352138042449951, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.47483086585998535, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.4044947624206543, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {}, {}, {'name': 'collect for test: modules/seed_random_data', 'time': 8.652398347854614, 'stages': [{'name': 'boot instance', 'time': 5.688768148422241, 'success': True, 'errors': []}, {'name': 'script seed_data', 'time': 0.40880489349365234, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.43107128143310547, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.40953540802001953, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.41347742080688477, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.4244058132171631, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.40498876571655273, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.47130727767944336, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/set_hostname', 'time': 20.50326156616211, 'stages': [{'name': 'boot instance', 'time': 6.741986274719238, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.40572333335876465, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.40798473358154297, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.4424152374267578, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.4209446907043457, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.42339134216308594, 'success': True, 'errors': []}, {'name': 'script hosts', 'time': 0.4389016628265381, 'success': True, 'errors': []}, {'name': 'script fqdn', 'time': 10.424714088439941, 'success': True, 'errors': []}, {'name': 'script hostname', 'time': 0.41182875633239746, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.38532543182373047, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/set_hostname_fqdn', 'time': 10.436992168426514, 'stages': [{'name': 'boot instance', 'time': 6.896907567977905, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.3933253288269043, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.3939642906188965, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.38405847549438477, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.38605737686157227, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.4041903018951416, 'success': True, 'errors': []}, {'name': 'script hosts', 'time': 0.39457178115844727, 'success': True, 'errors': []}, {'name': 'script fqdn', 'time': 0.3967611789703369, 'success': True, 'errors': []}, {'name': 'script hostname', 'time': 0.40030765533447266, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.3868064880371094, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/set_password', 'time': 9.054141759872437, 'stages': [{'name': 'boot instance', 'time': 5.77005934715271, 'success': True, 'errors': []}, {'name': 'script sshd_config', 'time': 0.41927647590637207, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.4234318733215332, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.4346616268157959, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.3966786861419678, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.3932921886444092, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.4109823703765869, 'success': True, 'errors': []}, {'name': 'script shadow', 'time': 0.38912391662597656, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.4165985584259033, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/set_password_expire', 'time': 10.890035390853882, 'stages': [{'name': 'boot instance', 'time': 7.583811044692993, 'success': True, 'errors': []}, {'name': 'script sshd_config', 'time': 0.392106294631958, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.41350626945495605, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.4283277988433838, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.41827988624572754, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.42733073234558105, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.41836047172546387, 'success': True, 'errors': []}, {'name': 'script shadow', 'time': 0.3992500305175781, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.40901947021484375, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/set_password_list', 'time': 9.799514532089233, 'stages': [{'name': 'boot instance', 'time': 6.580336809158325, 'success': True, 'errors': []}, {'name': 'script sshd_config', 'time': 0.41589927673339844, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.3942759037017822, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.3983898162841797, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.4003891944885254, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.3897233009338379, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.4088113307952881, 'success': True, 'errors': []}, {'name': 'script shadow', 'time': 0.4036548137664795, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.40799570083618164, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/set_password_list_string', 'time': 8.952404975891113, 'stages': [{'name': 'boot instance', 'time': 5.7985756397247314, 'success': True, 'errors': []}, {'name': 'script sshd_config', 'time': 0.3931403160095215, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.3929915428161621, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.38785552978515625, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.393932580947876, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.39916205406188965, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.396381139755249, 'success': True, 'errors': []}, {'name': 'script shadow', 'time': 0.40099167823791504, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.3893401622772217, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/snappy', 'time': 8.35527753829956, 'stages': [{'name': 'boot instance', 'time': 5.512372016906738, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.39407896995544434, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.4112124443054199, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.4173886775970459, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.39313340187072754, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.4071006774902344, 'success': True, 'errors': []}, {'name': 'script snapd', 'time': 0.41573619842529297, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.4042229652404785, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/ssh_auth_key_fingerprints_disable', 'time': 9.497441291809082, 'stages': [{'name': 'boot instance', 'time': 6.781619310379028, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.3901987075805664, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.3829655647277832, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.3845071792602539, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.39003944396972656, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.39177918434143066, 'success': True, 'errors': []}, {'name': 'script syslog', 'time': 0.3904995918273926, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.3858025074005127, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/ssh_auth_key_fingerprints_enable', 'time': 8.68905258178711, 'stages': [{'name': 'boot instance', 'time': 5.954922199249268, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.39365339279174805, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.39076828956604004, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.39182424545288086, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.40046238899230957, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.3865981101989746, 'success': True, 'errors': []}, {'name': 'script syslog', 'time': 0.38711118698120117, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.38368797302246094, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/ssh_import_id', 'time': 10.835411787033081, 'stages': [{'name': 'boot instance', 'time': 8.018713474273682, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.4254951477050781, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.40653276443481445, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.42368578910827637, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.4030005931854248, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.3859670162200928, 'success': True, 'errors': []}, {'name': 'script auth_keys_ubuntu', 'time': 0.38571667671203613, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.3862648010253906, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/ssh_keys_generate', 'time': 12.33869218826294, 'stages': [{'name': 'boot instance', 'time': 5.796930551528931, 'success': True, 'errors': []}, {'name': 'script dsa_public', 'time': 0.4078242778778076, 'success': True, 'errors': []}, {'name': 'script ecdsa_private', 'time': 0.38434553146362305, 'success': True, 'errors': []}, {'name': 'script rsa_public', 'time': 0.4024238586425781, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.40851378440856934, 'success': True, 'errors': []}, {'name': 'script ed25519_private', 'time': 0.41658639907836914, 'success': True, 'errors': []}, {'name': 'script auth_keys_root', 'time': 0.40889430046081543, 'success': True, 'errors': []}, {'name': 'script rsa_private', 'time': 0.4082787036895752, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.4156472682952881, 'success': True, 'errors': []}, {'name': 'script ecdsa_public', 'time': 0.40016698837280273, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.4079751968383789, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.40699052810668945, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.4171125888824463, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.41313695907592773, 'success': True, 'errors': []}, {'name': 'script dsa_private', 'time': 0.40609145164489746, 'success': True, 'errors': []}, {'name': 'script auth_keys_ubuntu', 'time': 0.4285757541656494, 'success': True, 'errors': []}, {'name': 'script ed25519_public', 'time': 0.40912675857543945, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {}, {'name': 'collect for test: modules/timezone', 'time': 9.281309366226196, 'stages': [{'name': 'boot instance', 'time': 6.504347801208496, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.3870713710784912, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.3890964984893799, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.38982272148132324, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.3916323184967041, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.4083235263824463, 'success': True, 'errors': []}, {'name': 'script timezone', 'time': 0.3988950252532959, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.41208839416503906, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/user_groups', 'time': 10.769750118255615, 'stages': [{'name': 'boot instance', 'time': 5.947415828704834, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.3913862705230713, 'success': True, 'errors': []}, {'name': 'script group_ubuntu', 'time': 0.3967702388763428, 'success': True, 'errors': []}, {'name': 'script user_barfoo', 'time': 0.40505290031433105, 'success': True, 'errors': []}, {'name': 'script user_ubuntu', 'time': 0.3916323184967041, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.4069383144378662, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.42438244819641113, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.3999032974243164, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.3951146602630615, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.39687156677246094, 'success': True, 'errors': []}, {'name': 'script group_cloud_users', 'time': 0.4093625545501709, 'success': True, 'errors': []}, {'name': 'script user_foobar', 'time': 0.4053976535797119, 'success': True, 'errors': []}, {'name': 'script user_cloudy', 'time': 0.3994748592376709, 'success': True, 'errors': []}], 'success': True, 'errors': []}, {'name': 'collect for test: modules/write_files', 'time': 10.54063105583191, 'stages': [{'name': 'boot instance', 'time': 6.545660018920898, 'success': True, 'errors': []}, {'name': 'script cloud-init-output.log', 'time': 0.40924978256225586, 'success': True, 'errors': []}, {'name': 'script cloud-init.log', 'time': 0.3881361484527588, 'success': True, 'errors': []}, {'name': 'script instance-id', 'time': 0.4166855812072754, 'success': True, 'errors': []}, {'name': 'script status.json', 'time': 0.402982234954834, 'success': True, 'errors': []}, {'name': 'script result.json', 'time': 0.3977484703063965, 'success': True, 'errors': []}, {'name': 'script file_text', 'time': 0.4001469612121582, 'success': True, 'errors': []}, {'name': 'script file_binary', 'time': 0.4126322269439697, 'success': True, 'errors': []}, {'name': 'script file_b64', 'time': 0.3861045837402344, 'success': True, 'errors': []}, {'name': 'script file_gzip', 'time': 0.38269495964050293, 'success': True, 'errors': []}, {'name': 'script cloud-init-version', 'time': 0.39855265617370605, 'success': True, 'errors': []}], 'success': True, 'errors': []}], 'success': True, 'errors': []}], 'success': True, 'errors': []}], 'success': True, 'errors': []}], 'success': True, 'errors': []}
2017-06-28 13:03:10,203 - tests.cloud_tests - DEBUG - found test data: {'lxd': {'xenial': ['main/command_output_simple', 'bugs/lp1628337', 'modules/apt_pipelining_disable', 'modules/bootcmd', 'modules/set_password_list_string', 'modules/ntp_servers', 'modules/timezone', 'modules/apt_configure_sources_keyserver', 'modules/debug_enable', 'modules/keys_to_console', 'modules/apt_configure_conf', 'modules/seed_random_data', 'modules/write_files', 'modules/runcmd', 'modules/apt_pipelining_os', 'modules/ssh_auth_key_fingerprints_enable', 'modules/byobu', 'modules/set_hostname_fqdn', 'modules/set_password', 'modules/set_hostname', 'modules/ssh_keys_generate', 'modules/apt_configure_primary', 'modules/set_password_expire', 'modules/lxd_bridge', 'modules/user_groups', 'modules/apt_configure_sources_list', 'modules/apt_configure_sources_key', 'modules/ca_certs', 'modules/locale', 'modules/apt_configure_proxy', 'modules/final_message', 'modules/package_update_upgrade_install', 'modules/apt_configure_security', 'modules/apt_configure_sources_ppa', 'modules/debug_disable', 'modules/apt_configure_disable_suites', 'modules/ssh_import_id', 'modules/ntp_pools', 'modules/set_password_list', 'modules/ssh_auth_key_fingerprints_disable', 'modules/lxd_dir', 'modules/ntp', 'modules/snappy']}}
2017-06-28 13:03:10,203 - tests.cloud_tests - INFO - test: platform='lxd', os='xenial' verifying test data
2017-06-28 13:03:10,203 - tests.cloud_tests - DEBUG - verifying test data for main/command_output_simple
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_output_file (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.001s
OK
2017-06-28 13:03:10,210 - tests.cloud_tests - DEBUG - verifying test data for bugs/lp1628337
test_fetch_indices (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,216 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_pipelining_disable
test_disable_pipelining (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,226 - tests.cloud_tests - DEBUG - verifying test data for modules/bootcmd
test_bootcmd_host (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,229 - tests.cloud_tests - DEBUG - verifying test data for modules/set_password_list_string
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_shadow_expected_users (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_shadow_passwords (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_sshd_config (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 4 tests in 0.002s
OK
2017-06-28 13:03:10,235 - tests.cloud_tests - DEBUG - verifying test data for modules/ntp_servers
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_dist_entries (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_entries (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_installed (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntpq_servers (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 5 tests in 0.001s
OK
2017-06-28 13:03:10,240 - tests.cloud_tests - DEBUG - verifying test data for modules/timezone
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_timezone (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,243 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_sources_keyserver
test_apt_key_list (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_source_list (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,247 - tests.cloud_tests - DEBUG - verifying test data for modules/debug_enable
test_debug_enable (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,251 - tests.cloud_tests - DEBUG - verifying test data for modules/keys_to_console
test_excluded_keys (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_expected_keys (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,256 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_conf
test_apt_conf_assumeyes (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_apt_conf_fixbroken (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,259 - tests.cloud_tests - DEBUG - verifying test data for modules/seed_random_data
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_random_seed_data (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,262 - tests.cloud_tests - DEBUG - verifying test data for modules/write_files
test_b64 (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_binary (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_gzip (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_text (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 5 tests in 0.000s
OK
2017-06-28 13:03:10,267 - tests.cloud_tests - DEBUG - verifying test data for modules/runcmd
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_run_cmd (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,270 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_pipelining_os
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_os_pipelining (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,273 - tests.cloud_tests - DEBUG - verifying test data for modules/ssh_auth_key_fingerprints_enable
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_syslog (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,277 - tests.cloud_tests - DEBUG - verifying test data for modules/byobu
test_byobu_installed (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_byobu_launch_exists (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_byobu_profile_enabled (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 4 tests in 0.000s
OK
2017-06-28 13:03:10,281 - tests.cloud_tests - DEBUG - verifying test data for modules/set_hostname_fqdn
test_hostname (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_hostname_fqdn (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_hosts (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 4 tests in 0.000s
OK
2017-06-28 13:03:10,285 - tests.cloud_tests - DEBUG - verifying test data for modules/set_password
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_shadow (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_sshd_config (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,290 - tests.cloud_tests - DEBUG - verifying test data for modules/set_hostname
test_hostname (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,295 - tests.cloud_tests - DEBUG - verifying test data for modules/ssh_keys_generate
test_dsa_private (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_dsa_public (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ecdsa_private (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ecdsa_public (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ed25519_private (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ed25519_public (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_rsa_private (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_rsa_public (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ubuntu_authorized_keys (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 10 tests in 0.000s
OK
2017-06-28 13:03:10,300 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_primary
test_gatech_sources (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ubuntu_sources (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,304 - tests.cloud_tests - DEBUG - verifying test data for modules/set_password_expire
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_shadow (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_sshd_config (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,308 - tests.cloud_tests - DEBUG - verifying test data for modules/lxd_bridge
test_bridge (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_lxc (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_lxd (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 4 tests in 0.000s
OK
2017-06-28 13:03:10,311 - tests.cloud_tests - DEBUG - verifying test data for modules/user_groups
test_group_cloud_users (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_group_ubuntu (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_user_barfoo (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_user_cloudy (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_user_foobar (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_user_ubuntu (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 7 tests in 0.001s
OK
2017-06-28 13:03:10,317 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_sources_list
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_sources_list (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.001s
OK
2017-06-28 13:03:10,323 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_sources_key
test_apt_key_list (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_source_list (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,328 - tests.cloud_tests - DEBUG - verifying test data for modules/ca_certs
test_cert_count (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_cert_installed (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,334 - tests.cloud_tests - DEBUG - verifying test data for modules/locale
test_locale (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_locale_a (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_locale_gen (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 4 tests in 0.000s
OK
2017-06-28 13:03:10,337 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_proxy
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_proxy_config (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,340 - tests.cloud_tests - DEBUG - verifying test data for modules/final_message
test_final_message_string (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_final_message_subs (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.001s
OK
2017-06-28 13:03:10,344 - tests.cloud_tests - DEBUG - verifying test data for modules/package_update_upgrade_install
test_apt_history (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_cloud_init_output (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_installed_htop (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_installed_tree (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 5 tests in 0.000s
OK
2017-06-28 13:03:10,348 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_security
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_security_mirror (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,352 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_sources_ppa
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ppa (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ppa_key (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,358 - tests.cloud_tests - DEBUG - verifying test data for modules/debug_disable
test_debug_disable (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,361 - tests.cloud_tests - DEBUG - verifying test data for modules/apt_configure_disable_suites
test_empty_sourcelist (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,365 - tests.cloud_tests - DEBUG - verifying test data for modules/ssh_import_id
test_authorized_keys (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,368 - tests.cloud_tests - DEBUG - verifying test data for modules/ntp_pools
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_dist_entries (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_entires (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_installed (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntpq_servers (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 5 tests in 0.001s
OK
2017-06-28 13:03:10,373 - tests.cloud_tests - DEBUG - verifying test data for modules/set_password_list
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_shadow_expected_users (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_shadow_passwords (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_sshd_config (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 4 tests in 0.003s
OK
2017-06-28 13:03:10,380 - tests.cloud_tests - DEBUG - verifying test data for modules/ssh_auth_key_fingerprints_disable
test_cloud_init_log (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_syslog (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,383 - tests.cloud_tests - DEBUG - verifying test data for modules/lxd_dir
test_lxc (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_lxd (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
2017-06-28 13:03:10,387 - tests.cloud_tests - DEBUG - verifying test data for modules/ntp
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_dist_entries (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_entires (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_ntp_installed (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 4 tests in 0.000s
OK
2017-06-28 13:03:10,393 - tests.cloud_tests - DEBUG - verifying test data for modules/snappy
test_no_stages_errors (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
test_snappy_version (tests.cloud_tests.testcases.get_suite.<locals>.tmp) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK
2017-06-28 13:03:10,396 - tests.cloud_tests - INFO - test: platform='lxd', os='xenial' passed all tests
2017-06-28 13:03:10,396 - tests.cloud_tests - DEBUG - verify results: {'lxd': {'xenial': {'modules/apt_configure_disable_suites': {'passed': True, 'failures': []}, 'modules/debug_disable': {'passed': True, 'failures': []}, 'modules/write_files': {'passed': True, 'failures': []}, 'modules/set_hostname': {'passed': True, 'failures': []}, 'modules/set_hostname_fqdn': {'passed': True, 'failures': []}, 'modules/ssh_auth_key_fingerprints_disable': {'passed': True, 'failures': []}, 'modules/set_password': {'passed': True, 'failures': []}, 'modules/ntp_servers': {'passed': True, 'failures': []}, 'modules/user_groups': {'passed': True, 'failures': []}, 'modules/package_update_upgrade_install': {'passed': True, 'failures': []}, 'modules/byobu': {'passed': True, 'failures': []}, 'modules/set_password_list_string': {'passed': True, 'failures': []}, 'modules/debug_enable': {'passed': True, 'failures': []}, 'modules/apt_configure_conf': {'passed': True, 'failures': []}, 'modules/ntp': {'passed': True, 'failures': []}, 'bugs/lp1628337': {'passed': True, 'failures': []}, 'modules/ssh_import_id': {'passed': True, 'failures': []}, 'modules/apt_configure_proxy': {'passed': True, 'failures': []}, 'modules/lxd_dir': {'passed': True, 'failures': []}, 'modules/set_password_list': {'passed': True, 'failures': []}, 'modules/apt_pipelining_os': {'passed': True, 'failures': []}, 'modules/ssh_auth_key_fingerprints_enable': {'passed': True, 'failures': []}, 'modules/set_password_expire': {'passed': True, 'failures': []}, 'modules/apt_pipelining_disable': {'passed': True, 'failures': []}, 'modules/locale': {'passed': True, 'failures': []}, 'modules/ntp_pools': {'passed': True, 'failures': []}, 'modules/runcmd': {'passed': True, 'failures': []}, 'modules/ca_certs': {'passed': True, 'failures': []}, 'modules/timezone': {'passed': True, 'failures': []}, 'modules/bootcmd': {'passed': True, 'failures': []}, 'modules/lxd_bridge': {'passed': True, 'failures': []}, 'modules/ssh_keys_generate': {'passed': True, 'failures': []}, 'main/command_output_simple': {'passed': True, 'failures': []}, 'modules/final_message': {'passed': True, 'failures': []}, 'modules/apt_configure_primary': {'passed': True, 'failures': []}, 'modules/keys_to_console': {'passed': True, 'failures': []}, 'modules/apt_configure_security': {'passed': True, 'failures': []}, 'modules/snappy': {'passed': True, 'failures': []}, 'modules/apt_configure_sources_key': {'passed': True, 'failures': []}, 'modules/apt_configure_sources_ppa': {'passed': True, 'failures': []}, 'modules/apt_configure_sources_keyserver': {'passed': True, 'failures': []}, 'modules/seed_random_data': {'passed': True, 'failures': []}, 'modules/apt_configure_sources_list': {'passed': True, 'failures': []}}}}
|