Ubuntu Pastebin

Paste from Iam at Wed, 31 May 2017 18:51:17 +0000

Download as text
  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
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
2017-05-31 18:06:56,557 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init-local' at Wed, 31 May 2017 18:06:56 +0000. Up 32.02 seconds.
2017-05-31 18:06:56,560 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2017-05-31 18:06:56,560 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2017-05-31 18:06:56,560 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2017-05-31 18:06:56,561 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-05-31 18:06:56,561 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2017-05-31 18:06:56,561 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-05-31 18:06:56,562 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2017-05-31 18:06:56,562 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2017-05-31 18:06:56,579 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2017-05-31 18:06:56,579 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-05-31 18:06:56,580 - __init__.py[DEBUG]: Looking for for data source in: ['Ec2', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2017-05-31 18:06:56,580 - importer.py[DEBUG]: Looking for modules ['DataSourceEc2', 'cloudinit.sources.DataSourceEc2'] that have attributes ['get_datasource_list']
2017-05-31 18:06:56,580 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceEc2' due to: No module named DataSourceEc2
2017-05-31 18:06:56,602 - importer.py[DEBUG]: Found DataSourceEc2 with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceEc2']
2017-05-31 18:06:56,602 - importer.py[DEBUG]: Looking for modules ['DataSourceNone', 'cloudinit.sources.DataSourceNone'] that have attributes ['get_datasource_list']
2017-05-31 18:06:56,603 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceNone' due to: No module named DataSourceNone
2017-05-31 18:06:56,608 - importer.py[DEBUG]: Found DataSourceNone with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceNone']
2017-05-31 18:06:56,609 - __init__.py[DEBUG]: Searching for data source in: []
2017-05-31 18:06:56,609 - cloud-init[DEBUG]: No local datasource found
2017-05-31 18:06:56,609 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-05-31 18:06:56,609 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2017-05-31 18:06:56,609 - util.py[DEBUG]: cloud-init mode 'init' took 0.175 seconds (0.18)
2017-05-31 18:06:59,040 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init' at Wed, 31 May 2017 18:06:59 +0000. Up 34.58 seconds.
2017-05-31 18:06:59,041 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2017-05-31 18:06:59,042 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2017-05-31 18:06:59,042 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:06:59,046 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:06:59,053 - cloud-init[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2017-05-31 18:06:59,053 - util.py[DEBUG]: Reading from /var/lib/cloud/data/no-net (quiet=False)
2017-05-31 18:06:59,053 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-05-31 18:06:59,053 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-05-31 18:06:59,054 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2017-05-31 18:06:59,054 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2017-05-31 18:06:59,055 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2017-05-31 18:06:59,055 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-05-31 18:06:59,055 - __init__.py[DEBUG]: Looking for for data source in: ['Ec2', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2017-05-31 18:06:59,055 - importer.py[DEBUG]: Looking for modules ['DataSourceEc2', 'cloudinit.sources.DataSourceEc2'] that have attributes ['get_datasource_list']
2017-05-31 18:06:59,055 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceEc2' due to: No module named DataSourceEc2
2017-05-31 18:06:59,056 - importer.py[DEBUG]: Found DataSourceEc2 with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceEc2']
2017-05-31 18:06:59,056 - importer.py[DEBUG]: Looking for modules ['DataSourceNone', 'cloudinit.sources.DataSourceNone'] that have attributes ['get_datasource_list']
2017-05-31 18:06:59,056 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceNone' due to: No module named DataSourceNone
2017-05-31 18:06:59,056 - importer.py[DEBUG]: Found DataSourceNone with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceNone']
2017-05-31 18:06:59,057 - __init__.py[DEBUG]: Searching for data source in: ['DataSourceEc2', 'DataSourceNone']
2017-05-31 18:06:59,057 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceEc2.DataSourceEc2'>
2017-05-31 18:06:59,057 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/ec2/meta-data (quiet=False)
2017-05-31 18:06:59,057 - DataSourceEc2.py[DEBUG]: Removed the following from metadata urls: ['http://instance-data.:8773']
2017-05-31 18:06:59,058 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:06:59,186 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:06:59,187 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [0/120s]: bad status code [500]
2017-05-31 18:06:59,187 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-05-31 18:07:00,188 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:00,204 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:00,204 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [1/120s]: bad status code [500]
2017-05-31 18:07:00,204 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-05-31 18:07:01,206 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:01,222 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:01,222 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [2/120s]: bad status code [500]
2017-05-31 18:07:01,222 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-05-31 18:07:02,224 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:02,245 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:02,246 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [3/120s]: bad status code [500]
2017-05-31 18:07:02,246 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-05-31 18:07:03,247 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:03,261 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:03,261 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [4/120s]: bad status code [500]
2017-05-31 18:07:03,262 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-05-31 18:07:04,263 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:04,379 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:04,379 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [5/120s]: bad status code [500]
2017-05-31 18:07:04,379 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-05-31 18:07:06,382 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:06,399 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:06,399 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [7/120s]: bad status code [500]
2017-05-31 18:07:06,400 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-05-31 18:07:08,402 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:08,414 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:08,414 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [9/120s]: bad status code [500]
2017-05-31 18:07:08,414 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-05-31 18:07:10,417 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:10,533 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:10,533 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [11/120s]: bad status code [500]
2017-05-31 18:07:10,533 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-05-31 18:07:12,536 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:12,550 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:12,550 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [13/120s]: bad status code [500]
2017-05-31 18:07:12,550 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-05-31 18:07:14,553 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:14,571 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:14,571 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [15/120s]: bad status code [500]
2017-05-31 18:07:14,571 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-05-31 18:07:17,575 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:17,685 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:17,685 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [18/120s]: bad status code [500]
2017-05-31 18:07:17,685 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-05-31 18:07:20,689 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:20,704 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:20,704 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [21/120s]: bad status code [500]
2017-05-31 18:07:20,704 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-05-31 18:07:23,708 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:23,805 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:23,805 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [24/120s]: bad status code [500]
2017-05-31 18:07:23,806 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-05-31 18:07:26,809 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:26,823 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:26,824 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [27/120s]: bad status code [500]
2017-05-31 18:07:26,824 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-05-31 18:07:29,827 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:29,937 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:29,937 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [30/120s]: bad status code [500]
2017-05-31 18:07:29,938 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-05-31 18:07:33,942 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:33,960 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:33,960 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [34/120s]: bad status code [500]
2017-05-31 18:07:33,960 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-05-31 18:07:37,964 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:38,055 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:38,055 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [38/120s]: bad status code [500]
2017-05-31 18:07:38,056 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-05-31 18:07:42,060 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:42,074 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:42,074 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [43/120s]: bad status code [500]
2017-05-31 18:07:42,075 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-05-31 18:07:46,079 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:46,187 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:46,188 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [47/120s]: bad status code [500]
2017-05-31 18:07:46,188 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-05-31 18:07:50,192 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:50,217 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:50,217 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [51/120s]: bad status code [500]
2017-05-31 18:07:50,217 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-05-31 18:07:55,223 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:07:55,329 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:07:55,329 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [56/120s]: bad status code [500]
2017-05-31 18:07:55,329 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-05-31 18:08:00,335 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:08:00,457 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:00,457 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [61/120s]: bad status code [500]
2017-05-31 18:08:00,457 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-05-31 18:08:05,462 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2017-05-31 18:08:05,588 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:05,588 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [66/120s]: bad status code [500]
2017-05-31 18:08:05,588 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-05-31 18:08:10,594 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 48.0} configuration
2017-05-31 18:08:10,721 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:10,721 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [71/120s]: bad status code [500]
2017-05-31 18:08:10,721 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-05-31 18:08:15,726 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 43.0} configuration
2017-05-31 18:08:15,824 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:15,825 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [76/120s]: bad status code [500]
2017-05-31 18:08:15,825 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-05-31 18:08:21,831 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 37.0} configuration
2017-05-31 18:08:21,938 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:21,939 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [82/120s]: bad status code [500]
2017-05-31 18:08:21,939 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-05-31 18:08:27,945 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 31.0} configuration
2017-05-31 18:08:28,041 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:28,041 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [88/120s]: bad status code [500]
2017-05-31 18:08:28,041 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-05-31 18:08:34,047 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 25.0} configuration
2017-05-31 18:08:34,137 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:34,137 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [95/120s]: bad status code [500]
2017-05-31 18:08:34,137 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-05-31 18:08:40,144 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 18.0} configuration
2017-05-31 18:08:40,288 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:40,288 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [101/120s]: bad status code [500]
2017-05-31 18:08:40,288 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-05-31 18:08:46,295 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 12.0} configuration
2017-05-31 18:08:46,425 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:46,425 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [107/120s]: bad status code [500]
2017-05-31 18:08:46,426 - url_helper.py[DEBUG]: Please wait 7 seconds while we wait to try again
2017-05-31 18:08:53,433 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.5'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 5.0} configuration
2017-05-31 18:08:53,562 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (500, 207b) after 1 attempts
2017-05-31 18:08:53,562 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [114/120s]: bad status code [500]
2017-05-31 18:08:53,562 - url_helper.py[DEBUG]: Please wait 7 seconds while we wait to try again
2017-05-31 18:09:00,569 - DataSourceEc2.py[CRITICAL]: Giving up on md from ['http://169.254.169.254/2009-04-04/meta-data/instance-id'] after 121 seconds
2017-05-31 18:09:00,569 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNone.DataSourceNone'>
2017-05-31 18:09:00,570 - stages.py[INFO]: Loaded datasource DataSourceNone - DataSourceNone
2017-05-31 18:09:00,570 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2017-05-31 18:09:00,570 - util.py[DEBUG]: Read 127 bytes from /proc/cmdline
2017-05-31 18:09:00,570 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-05-31 18:09:00,571 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2017-05-31 18:09:00,571 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,585 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/92-ec2-datasource.cfg (quiet=False)
2017-05-31 18:09:00,585 - util.py[DEBUG]: Read 60 bytes from /etc/cloud/cloud.cfg.d/92-ec2-datasource.cfg
2017-05-31 18:09:00,585 - util.py[DEBUG]: Attempting to load yaml from string of length 60 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,586 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91-dib-cloud-init-datasources.cfg (quiet=False)
2017-05-31 18:09:00,586 - util.py[DEBUG]: Read 32 bytes from /etc/cloud/cloud.cfg.d/91-dib-cloud-init-datasources.cfg
2017-05-31 18:09:00,586 - util.py[DEBUG]: Attempting to load yaml from string of length 32 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,587 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-05-31 18:09:00,587 - util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-05-31 18:09:00,587 - util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,589 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-05-31 18:09:00,589 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-05-31 18:09:00,589 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,594 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,594 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,594 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,595 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,595 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,595 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,595 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,595 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,596 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,596 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,596 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,596 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,596 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,597 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,597 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,597 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,597 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,598 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,598 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,598 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,598 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,598 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,598 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,598 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,598 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,598 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,598 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,598 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,598 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,598 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,599 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,599 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,599 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,599 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,599 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,599 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,599 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,599 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,599 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-05-31 18:09:00,600 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/iid-datasource-none'
2017-05-31 18:09:00,600 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/iid-datasource-none/datasource (quiet=False)
2017-05-31 18:09:00,600 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/datasource - wb: [420] 31 bytes
2017-05-31 18:09:00,601 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 31 bytes
2017-05-31 18:09:00,601 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2017-05-31 18:09:00,601 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 20 bytes
2017-05-31 18:09:00,601 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 20 bytes
2017-05-31 18:09:00,601 - cloud-init[DEBUG]: init will now be targeting instance id: iid-datasource-none
2017-05-31 18:09:00,602 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2017-05-31 18:09:00,602 - util.py[DEBUG]: Read 127 bytes from /proc/cmdline
2017-05-31 18:09:00,602 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-05-31 18:09:00,602 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2017-05-31 18:09:00,602 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,616 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/92-ec2-datasource.cfg (quiet=False)
2017-05-31 18:09:00,616 - util.py[DEBUG]: Read 60 bytes from /etc/cloud/cloud.cfg.d/92-ec2-datasource.cfg
2017-05-31 18:09:00,616 - util.py[DEBUG]: Attempting to load yaml from string of length 60 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,617 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91-dib-cloud-init-datasources.cfg (quiet=False)
2017-05-31 18:09:00,617 - util.py[DEBUG]: Read 32 bytes from /etc/cloud/cloud.cfg.d/91-dib-cloud-init-datasources.cfg
2017-05-31 18:09:00,617 - util.py[DEBUG]: Attempting to load yaml from string of length 32 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,618 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-05-31 18:09:00,618 - util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-05-31 18:09:00,618 - util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,620 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-05-31 18:09:00,620 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-05-31 18:09:00,620 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,624 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,625 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,625 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,625 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,625 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,626 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,626 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,626 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,626 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,627 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,627 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,627 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,627 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,627 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,628 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,628 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,628 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,628 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,628 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,629 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,629 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,629 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,629 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,629 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,629 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,629 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,629 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,629 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,629 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,629 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,629 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,629 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,630 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,630 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,630 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,630 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,630 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,630 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,631 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 5205 bytes
2017-05-31 18:09:00,631 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/user-data.txt - wb: [384] 0 bytes
2017-05-31 18:09:00,638 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/user-data.txt.i - wb: [384] 345 bytes
2017-05-31 18:09:00,639 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/vendor-data.txt - wb: [384] 4 bytes
2017-05-31 18:09:00,640 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/vendor-data.txt.i - wb: [384] 345 bytes
2017-05-31 18:09:00,640 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2017-05-31 18:09:00,641 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2017-05-31 18:09:00,641 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2017-05-31 18:09:00,641 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-05-31 18:09:00,641 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/consume_data - wb: [420] 19 bytes
2017-05-31 18:09:00,641 - helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/consume_data'>)
2017-05-31 18:09:00,642 - stages.py[DEBUG]: Added default handler for set(['text/cloud-config-jsonp', 'text/cloud-config']) from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2017-05-31 18:09:00,642 - stages.py[DEBUG]: Added default handler for set(['text/x-shellscript']) from ShellScriptPartHandler: [['text/x-shellscript']]
2017-05-31 18:09:00,642 - stages.py[DEBUG]: Added default handler for set(['text/cloud-boothook']) from BootHookPartHandler: [['text/cloud-boothook']]
2017-05-31 18:09:00,642 - stages.py[DEBUG]: Added default handler for set(['text/upstart-job']) from UpstartJobPartHandler: [['text/upstart-job']]
2017-05-31 18:09:00,642 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2017-05-31 18:09:00,642 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2017-05-31 18:09:00,642 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2017-05-31 18:09:00,642 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2017-05-31 18:09:00,643 - __init__.py[DEBUG]: {'Content-Type': 'text/x-not-multipart', 'Content-Disposition': 'attachment; filename="part-001"', 'MIME-Version': '1.0'}
2017-05-31 18:09:00,643 - __init__.py[DEBUG]: Empty payload of type text/x-not-multipart
2017-05-31 18:09:00,643 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2017-05-31 18:09:00,643 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2017-05-31 18:09:00,643 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2017-05-31 18:09:00,643 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/cloud-config.txt - wb: [384] 0 bytes
2017-05-31 18:09:00,643 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2017-05-31 18:09:00,643 - stages.py[DEBUG]: no vendordata from datasource
2017-05-31 18:09:00,644 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2017-05-31 18:09:00,644 - util.py[DEBUG]: Read 127 bytes from /proc/cmdline
2017-05-31 18:09:00,644 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-05-31 18:09:00,644 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2017-05-31 18:09:00,644 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,658 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/92-ec2-datasource.cfg (quiet=False)
2017-05-31 18:09:00,658 - util.py[DEBUG]: Read 60 bytes from /etc/cloud/cloud.cfg.d/92-ec2-datasource.cfg
2017-05-31 18:09:00,658 - util.py[DEBUG]: Attempting to load yaml from string of length 60 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,659 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91-dib-cloud-init-datasources.cfg (quiet=False)
2017-05-31 18:09:00,659 - util.py[DEBUG]: Read 32 bytes from /etc/cloud/cloud.cfg.d/91-dib-cloud-init-datasources.cfg
2017-05-31 18:09:00,659 - util.py[DEBUG]: Attempting to load yaml from string of length 32 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,660 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-05-31 18:09:00,660 - util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-05-31 18:09:00,660 - util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,662 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-05-31 18:09:00,662 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-05-31 18:09:00,662 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,666 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,666 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,667 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,667 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,667 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,667 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,668 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,668 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,668 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,668 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,669 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,669 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,669 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,669 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,669 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,670 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,670 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,670 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,670 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,670 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,671 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,671 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,671 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,671 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,671 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,671 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,671 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,671 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,671 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,671 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,671 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,671 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-05-31 18:09:00,671 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-05-31 18:09:00,671 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,672 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-05-31 18:09:00,672 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,672 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,672 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,672 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,672 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,672 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,672 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,672 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,673 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-05-31 18:09:00,673 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-05-31 18:09:00,673 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<type 'dict'>,)
2017-05-31 18:09:00,673 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-05-31 18:09:00,673 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:00,673 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:00,673 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:00,674 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:00,674 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:00,674 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:00,674 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:00,674 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:00,677 - importer.py[DEBUG]: Looking for modules ['cc_migrator', 'cloudinit.config.cc_migrator'] that have attributes ['handle']
2017-05-31 18:09:00,677 - importer.py[DEBUG]: Failed at attempted import of 'cc_migrator' due to: No module named cc_migrator
2017-05-31 18:09:00,682 - importer.py[DEBUG]: Found cc_migrator with attributes ['handle'] in ['cloudinit.config.cc_migrator']
2017-05-31 18:09:00,682 - importer.py[DEBUG]: Looking for modules ['cc_seed_random', 'cloudinit.config.cc_seed_random'] that have attributes ['handle']
2017-05-31 18:09:00,682 - importer.py[DEBUG]: Failed at attempted import of 'cc_seed_random' due to: No module named cc_seed_random
2017-05-31 18:09:00,685 - importer.py[DEBUG]: Found cc_seed_random with attributes ['handle'] in ['cloudinit.config.cc_seed_random']
2017-05-31 18:09:00,685 - importer.py[DEBUG]: Looking for modules ['cc_bootcmd', 'cloudinit.config.cc_bootcmd'] that have attributes ['handle']
2017-05-31 18:09:00,685 - importer.py[DEBUG]: Failed at attempted import of 'cc_bootcmd' due to: No module named cc_bootcmd
2017-05-31 18:09:00,687 - importer.py[DEBUG]: Found cc_bootcmd with attributes ['handle'] in ['cloudinit.config.cc_bootcmd']
2017-05-31 18:09:00,687 - importer.py[DEBUG]: Looking for modules ['cc_write_files', 'cloudinit.config.cc_write_files'] that have attributes ['handle']
2017-05-31 18:09:00,687 - importer.py[DEBUG]: Failed at attempted import of 'cc_write_files' due to: No module named cc_write_files
2017-05-31 18:09:00,688 - importer.py[DEBUG]: Found cc_write_files with attributes ['handle'] in ['cloudinit.config.cc_write_files']
2017-05-31 18:09:00,688 - importer.py[DEBUG]: Looking for modules ['cc_growpart', 'cloudinit.config.cc_growpart'] that have attributes ['handle']
2017-05-31 18:09:00,688 - importer.py[DEBUG]: Failed at attempted import of 'cc_growpart' due to: No module named cc_growpart
2017-05-31 18:09:00,689 - importer.py[DEBUG]: Found cc_growpart with attributes ['handle'] in ['cloudinit.config.cc_growpart']
2017-05-31 18:09:00,689 - importer.py[DEBUG]: Looking for modules ['cc_resizefs', 'cloudinit.config.cc_resizefs'] that have attributes ['handle']
2017-05-31 18:09:00,689 - importer.py[DEBUG]: Failed at attempted import of 'cc_resizefs' due to: No module named cc_resizefs
2017-05-31 18:09:00,689 - importer.py[DEBUG]: Found cc_resizefs with attributes ['handle'] in ['cloudinit.config.cc_resizefs']
2017-05-31 18:09:00,690 - importer.py[DEBUG]: Looking for modules ['cc_set_hostname', 'cloudinit.config.cc_set_hostname'] that have attributes ['handle']
2017-05-31 18:09:00,690 - importer.py[DEBUG]: Failed at attempted import of 'cc_set_hostname' due to: No module named cc_set_hostname
2017-05-31 18:09:00,690 - importer.py[DEBUG]: Found cc_set_hostname with attributes ['handle'] in ['cloudinit.config.cc_set_hostname']
2017-05-31 18:09:00,690 - importer.py[DEBUG]: Looking for modules ['cc_update_hostname', 'cloudinit.config.cc_update_hostname'] that have attributes ['handle']
2017-05-31 18:09:00,690 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_hostname' due to: No module named cc_update_hostname
2017-05-31 18:09:00,691 - importer.py[DEBUG]: Found cc_update_hostname with attributes ['handle'] in ['cloudinit.config.cc_update_hostname']
2017-05-31 18:09:00,691 - importer.py[DEBUG]: Looking for modules ['cc_update_etc_hosts', 'cloudinit.config.cc_update_etc_hosts'] that have attributes ['handle']
2017-05-31 18:09:00,691 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_etc_hosts' due to: No module named cc_update_etc_hosts
2017-05-31 18:09:00,691 - importer.py[DEBUG]: Found cc_update_etc_hosts with attributes ['handle'] in ['cloudinit.config.cc_update_etc_hosts']
2017-05-31 18:09:00,691 - importer.py[DEBUG]: Looking for modules ['cc_ca_certs', 'cloudinit.config.cc_ca_certs'] that have attributes ['handle']
2017-05-31 18:09:00,692 - importer.py[DEBUG]: Failed at attempted import of 'cc_ca_certs' due to: No module named cc_ca_certs
2017-05-31 18:09:00,692 - importer.py[DEBUG]: Found cc_ca_certs with attributes ['handle'] in ['cloudinit.config.cc_ca_certs']
2017-05-31 18:09:00,692 - importer.py[DEBUG]: Looking for modules ['cc_rsyslog', 'cloudinit.config.cc_rsyslog'] that have attributes ['handle']
2017-05-31 18:09:00,692 - importer.py[DEBUG]: Failed at attempted import of 'cc_rsyslog' due to: No module named cc_rsyslog
2017-05-31 18:09:00,693 - importer.py[DEBUG]: Found cc_rsyslog with attributes ['handle'] in ['cloudinit.config.cc_rsyslog']
2017-05-31 18:09:00,693 - importer.py[DEBUG]: Looking for modules ['cc_users_groups', 'cloudinit.config.cc_users_groups'] that have attributes ['handle']
2017-05-31 18:09:00,693 - importer.py[DEBUG]: Failed at attempted import of 'cc_users_groups' due to: No module named cc_users_groups
2017-05-31 18:09:00,693 - importer.py[DEBUG]: Found cc_users_groups with attributes ['handle'] in ['cloudinit.config.cc_users_groups']
2017-05-31 18:09:00,693 - importer.py[DEBUG]: Looking for modules ['cc_ssh', 'cloudinit.config.cc_ssh'] that have attributes ['handle']
2017-05-31 18:09:00,693 - importer.py[DEBUG]: Failed at attempted import of 'cc_ssh' due to: No module named cc_ssh
2017-05-31 18:09:00,694 - importer.py[DEBUG]: Found cc_ssh with attributes ['handle'] in ['cloudinit.config.cc_ssh']
2017-05-31 18:09:00,694 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2017-05-31 18:09:00,694 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2017-05-31 18:09:00,694 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2017-05-31 18:09:00,695 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-05-31 18:09:00,695 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7f07d9672ad0>)
2017-05-31 18:09:00,695 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2017-05-31 18:09:00,696 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_seed_random - wb: [420] 18 bytes
2017-05-31 18:09:00,696 - helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_seed_random'>)
2017-05-31 18:09:00,696 - util.py[DEBUG]: Running command ['pollinate', '-q'] with allowed return codes [0] (shell=False, capture=False)
2017-05-31 18:09:01,114 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7f07d9672c50>)
2017-05-31 18:09:01,115 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2017-05-31 18:09:01,115 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_write_files - wb: [420] 19 bytes
2017-05-31 18:09:01,115 - helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_write_files'>)
2017-05-31 18:09:01,115 - cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
2017-05-31 18:09:01,116 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7f07d9672a50>)
2017-05-31 18:09:01,116 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg.  Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
2017-05-31 18:09:01,116 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,124 - util.py[DEBUG]: Reading from /proc/873/mountinfo (quiet=False)
2017-05-31 18:09:01,124 - util.py[DEBUG]: Read 1023 bytes from /proc/873/mountinfo
2017-05-31 18:09:01,124 - util.py[DEBUG]: Reading from /sys/class/block/sda1/partition (quiet=False)
2017-05-31 18:09:01,125 - util.py[DEBUG]: Read 2 bytes from /sys/class/block/sda1/partition
2017-05-31 18:09:01,125 - util.py[DEBUG]: Reading from /sys/devices/pci0000:00/0000:00:02.2/0000:03:00.0/host0/target0:0:0/0:0:0:0/block/sda/dev (quiet=False)
2017-05-31 18:09:01,125 - util.py[DEBUG]: Read 4 bytes from /sys/devices/pci0000:00/0000:00:02.2/0000:03:00.0/host0/target0:0:0/0:0:0:0/block/sda/dev
2017-05-31 18:09:01,125 - util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/sda', '1'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,150 - util.py[DEBUG]: Running command ['growpart', '/dev/sda', '1'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,172 - util.py[DEBUG]: resize_devices took 0.048 seconds
2017-05-31 18:09:01,172 - cc_growpart.py[INFO]: '/' resized: changed (/dev/sda, 1) from 1713438720 to 146776951296
2017-05-31 18:09:01,173 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7f07d9672f90>)
2017-05-31 18:09:01,173 - util.py[DEBUG]: Reading from /proc/873/mountinfo (quiet=False)
2017-05-31 18:09:01,173 - util.py[DEBUG]: Read 1023 bytes from /proc/873/mountinfo
2017-05-31 18:09:01,173 - cc_resizefs.py[DEBUG]: resize_info: dev=/dev/sda1 mnt_point=/ path=/
2017-05-31 18:09:01,173 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,181 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,209 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-05-31 18:09:01,209 - util.py[DEBUG]: Read 154 bytes from /proc/1/environ
2017-05-31 18:09:01,209 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-05-31 18:09:01,209 - util.py[DEBUG]: Read 797 bytes from /proc/self/status
2017-05-31 18:09:01,209 - cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/sda1
2017-05-31 18:09:01,209 - util.py[DEBUG]: Running command ('resize2fs', '/dev/sda1') with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,364 - util.py[DEBUG]: Resizing took 0.155 seconds
2017-05-31 18:09:01,364 - cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
2017-05-31 18:09:01,365 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_set_hostname - wb: [420] 19 bytes
2017-05-31 18:09:01,365 - helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_set_hostname'>)
2017-05-31 18:09:01,365 - util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
2017-05-31 18:09:01,365 - util.py[DEBUG]: Read 221 bytes from /etc/hosts
2017-05-31 18:09:01,365 - util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
2017-05-31 18:09:01,366 - util.py[DEBUG]: Read 221 bytes from /etc/hosts
2017-05-31 18:09:01,366 - cc_set_hostname.py[DEBUG]: Setting the hostname to ubuntu (ubuntu)
2017-05-31 18:09:01,366 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-05-31 18:09:01,366 - util.py[DEBUG]: Read 7 bytes from /etc/hostname
2017-05-31 18:09:01,366 - util.py[DEBUG]: Writing to /etc/hostname - wb: [420] 7 bytes
2017-05-31 18:09:01,366 - __init__.py[DEBUG]: Non-persistently setting the system hostname to ubuntu
2017-05-31 18:09:01,366 - util.py[DEBUG]: Running command ['hostname', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,369 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7f07d9b1a6d0>)
2017-05-31 18:09:01,369 - util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
2017-05-31 18:09:01,369 - util.py[DEBUG]: Read 221 bytes from /etc/hosts
2017-05-31 18:09:01,369 - util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
2017-05-31 18:09:01,369 - util.py[DEBUG]: Read 221 bytes from /etc/hosts
2017-05-31 18:09:01,369 - cc_update_hostname.py[DEBUG]: Updating hostname to ubuntu (ubuntu)
2017-05-31 18:09:01,370 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-05-31 18:09:01,370 - util.py[DEBUG]: Read 7 bytes from /etc/hostname
2017-05-31 18:09:01,370 - __init__.py[DEBUG]: Attempting to update hostname to ubuntu in 1 files
2017-05-31 18:09:01,370 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2017-05-31 18:09:01,370 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [420] 7 bytes
2017-05-31 18:09:01,370 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7f07d9b1a590>)
2017-05-31 18:09:01,371 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2017-05-31 18:09:01,371 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_ca_certs - wb: [420] 19 bytes
2017-05-31 18:09:01,371 - helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_ca_certs'>)
2017-05-31 18:09:01,371 - cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
2017-05-31 18:09:01,372 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_rsyslog - wb: [420] 19 bytes
2017-05-31 18:09:01,372 - helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_rsyslog'>)
2017-05-31 18:09:01,372 - cc_rsyslog.py[DEBUG]: Skipping module named rsyslog, no 'rsyslog' key in configuration
2017-05-31 18:09:01,372 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_users_groups - wb: [420] 19 bytes
2017-05-31 18:09:01,372 - helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_users_groups'>)
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:01,373 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:01,373 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:01,373 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:01,374 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:01,374 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:01,374 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:01,374 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:01,374 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:01,375 - __init__.py[DEBUG]: Adding user ubuntu
2017-05-31 18:09:01,375 - util.py[DEBUG]: Running hidden command to protect sensitive input/output logstring: ['useradd', 'ubuntu', '--shell', '/bin/bash', '--comment', 'Ubuntu', '--groups', 'adm,audio,cdrom,dialout,dip,floppy,netdev,plugdev,sudo,video', '-m']
2017-05-31 18:09:01,609 - util.py[DEBUG]: Running command ['passwd', '-l', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,673 - util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
2017-05-31 18:09:01,682 - util.py[DEBUG]: Read 755 bytes from /etc/sudoers
2017-05-31 18:09:01,691 - util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - wb: [288] 123 bytes
2017-05-31 18:09:01,692 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_ssh - wb: [420] 19 bytes
2017-05-31 18:09:01,692 - helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_ssh'>)
2017-05-31 18:09:01,701 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'rsa', '-N', '', '-f', '/etc/ssh/ssh_host_rsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:01,947 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'dsa', '-N', '', '-f', '/etc/ssh/ssh_host_dsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:02,132 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ecdsa', '-N', '', '-f', '/etc/ssh/ssh_host_ecdsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:02,136 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ed25519', '-N', '', '-f', '/etc/ssh/ssh_host_ed25519_key'] with allowed return codes [0] (shell=False, capture=True)
2017-05-31 18:09:02,141 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:02,141 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:02,141 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:02,142 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:02,142 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:02,142 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:02,142 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:02,143 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:02,143 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2017-05-31 18:09:02,143 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2017-05-31 18:09:02,143 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2017-05-31 18:09:02,143 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2017-05-31 18:09:02,143 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2017-05-31 18:09:02,143 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2017-05-31 18:09:02,143 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2017-05-31 18:09:02,143 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2017-05-31 18:09:02,144 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh to 1001:1001
2017-05-31 18:09:02,144 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-05-31 18:09:02,148 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2017-05-31 18:09:02,148 - util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [384] 0 bytes
2017-05-31 18:09:02,148 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1001:1001
2017-05-31 18:09:02,149 - util.py[DEBUG]: Changing the ownership of /root/.ssh to 0:0
2017-05-31 18:09:02,149 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-05-31 18:09:02,149 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2017-05-31 18:09:02,149 - util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [384] 0 bytes
2017-05-31 18:09:02,150 - util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
2017-05-31 18:09:02,150 - cloud-init[DEBUG]: Ran 13 modules with 0 failures
2017-05-31 18:09:02,150 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-05-31 18:09:02,150 - util.py[DEBUG]: Read 15 bytes from /proc/uptime
2017-05-31 18:09:02,151 - util.py[DEBUG]: cloud-init mode 'init' took 123.152 seconds (123.15)
May 31 18:09:02 ubuntu [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:config' at Wed, 31 May 2017 18:09:02 +0000. Up 158.15 seconds.
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_emit_upstart', 'cloudinit.config.cc_emit_upstart'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_emit_upstart' due to: No module named cc_emit_upstart
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_emit_upstart with attributes ['handle'] in ['cloudinit.config.cc_emit_upstart']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_disk_setup', 'cloudinit.config.cc_disk_setup'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_disk_setup' due to: No module named cc_disk_setup
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_disk_setup with attributes ['handle'] in ['cloudinit.config.cc_disk_setup']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_mounts', 'cloudinit.config.cc_mounts'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_mounts' due to: No module named cc_mounts
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_mounts with attributes ['handle'] in ['cloudinit.config.cc_mounts']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_ssh_import_id', 'cloudinit.config.cc_ssh_import_id'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_import_id' due to: No module named cc_ssh_import_id
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_ssh_import_id with attributes ['handle'] in ['cloudinit.config.cc_ssh_import_id']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_locale', 'cloudinit.config.cc_locale'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_locale' due to: No module named cc_locale
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_locale with attributes ['handle'] in ['cloudinit.config.cc_locale']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_set_passwords', 'cloudinit.config.cc_set_passwords'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_set_passwords' due to: No module named cc_set_passwords
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_set_passwords with attributes ['handle'] in ['cloudinit.config.cc_set_passwords']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_grub_dpkg', 'cloudinit.config.cc_grub_dpkg'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_grub_dpkg' due to: No module named cc_grub_dpkg
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_grub_dpkg with attributes ['handle'] in ['cloudinit.config.cc_grub_dpkg']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_pipelining', 'cloudinit.config.cc_apt_pipelining'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_pipelining' due to: No module named cc_apt_pipelining
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_pipelining with attributes ['handle'] in ['cloudinit.config.cc_apt_pipelining']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_configure', 'cloudinit.config.cc_apt_configure'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_configure' due to: No module named cc_apt_configure
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_configure with attributes ['handle'] in ['cloudinit.config.cc_apt_configure']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_package_update_upgrade_install', 'cloudinit.config.cc_package_update_upgrade_install'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_package_update_upgrade_install' due to: No module named cc_package_update_upgrade_install
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_package_update_upgrade_install with attributes ['handle'] in ['cloudinit.config.cc_package_update_upgrade_install']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_landscape', 'cloudinit.config.cc_landscape'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_landscape' due to: No module named cc_landscape
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_landscape with attributes ['handle'] in ['cloudinit.config.cc_landscape']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_timezone', 'cloudinit.config.cc_timezone'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_timezone' due to: No module named cc_timezone
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_timezone with attributes ['handle'] in ['cloudinit.config.cc_timezone']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_puppet', 'cloudinit.config.cc_puppet'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_puppet' due to: No module named cc_puppet
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_puppet with attributes ['handle'] in ['cloudinit.config.cc_puppet']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_chef', 'cloudinit.config.cc_chef'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_chef' due to: No module named cc_chef
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_chef with attributes ['handle'] in ['cloudinit.config.cc_chef']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_salt_minion', 'cloudinit.config.cc_salt_minion'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_salt_minion' due to: No module named cc_salt_minion
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_salt_minion with attributes ['handle'] in ['cloudinit.config.cc_salt_minion']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_mcollective', 'cloudinit.config.cc_mcollective'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_mcollective' due to: No module named cc_mcollective
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_mcollective with attributes ['handle'] in ['cloudinit.config.cc_mcollective']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_disable_ec2_metadata', 'cloudinit.config.cc_disable_ec2_metadata'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_disable_ec2_metadata' due to: No module named cc_disable_ec2_metadata
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_disable_ec2_metadata with attributes ['handle'] in ['cloudinit.config.cc_disable_ec2_metadata']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_runcmd', 'cloudinit.config.cc_runcmd'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_runcmd' due to: No module named cc_runcmd
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_runcmd with attributes ['handle'] in ['cloudinit.config.cc_runcmd']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_byobu', 'cloudinit.config.cc_byobu'] that have attributes ['handle']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_byobu' due to: No module named cc_byobu
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_byobu with attributes ['handle'] in ['cloudinit.config.cc_byobu']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
May 31 18:09:02 ubuntu [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
May 31 18:09:02 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7f13a4bb8590>)
May 31 18:09:02 ubuntu [CLOUDINIT] util.py[DEBUG]: Running command ['initctl', 'emit', 'cloud-config', 'CLOUD_CFG=/var/lib/cloud/instance/cloud-config.txt'] with allowed return codes [0] (shell=False, capture=True)
May 31 18:09:02 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_disk_setup - wb: [420] 19 bytes
May 31 18:09:02 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-disk_setup using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_disk_setup'>)
May 31 18:09:02 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_mounts - wb: [420] 19 bytes
May 31 18:09:02 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-mounts using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_mounts'>)
May 31 18:09:02 ubuntu [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of ephemeral0
May 31 18:09:02 ubuntu [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount ephemeral0
May 31 18:09:02 ubuntu [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of swap
May 31 18:09:02 ubuntu [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount swap
May 31 18:09:02 ubuntu [CLOUDINIT] cc_mounts.py[DEBUG]: No modifications to fstab needed.
May 31 18:09:02 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_ssh_import_id - wb: [420] 19 bytes
May 31 18:09:02 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_ssh_import_id'>)
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
May 31 18:09:02 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
May 31 18:09:02 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
May 31 18:09:02 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
May 31 18:09:02 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
May 31 18:09:02 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
May 31 18:09:02 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
May 31 18:09:02 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
May 31 18:09:02 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_locale - wb: [420] 20 bytes
May 31 18:09:02 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_locale'>)
May 31 18:09:02 ubuntu [CLOUDINIT] cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
May 31 18:09:02 ubuntu [CLOUDINIT] util.py[DEBUG]: Running command ['locale-gen', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
May 31 18:09:03 ubuntu [CLOUDINIT] util.py[DEBUG]: Running command ['update-locale', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
May 31 18:09:03 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /etc/default/locale - wb: [420] 87 bytes
May 31 18:09:03 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_set_passwords - wb: [420] 20 bytes
May 31 18:09:03 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_set_passwords'>)
May 31 18:09:03 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_grub_dpkg - wb: [420] 20 bytes
May 31 18:09:03 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_grub_dpkg'>)
May 31 18:09:03 ubuntu [CLOUDINIT] cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/sda','false'
May 31 18:09:03 ubuntu [CLOUDINIT] util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_apt_pipelining - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_apt_pipelining'>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [420] 80 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_apt_configure - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_apt_configure'>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Running command ['lsb_release', '-cs'] with allowed return codes [0] (shell=False, capture=True)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
May 31 18:09:04 ubuntu [CLOUDINIT] __init__.py[DEBUG]: filtered distro mirror info: {'security': 'http://security.ubuntu.com/ubuntu', 'primary': 'http://archive.ubuntu.com/ubuntu'}
May 31 18:09:04 ubuntu [CLOUDINIT] cc_apt_configure.py[DEBUG]: Mirror info: {'security': 'http://security.ubuntu.com/ubuntu', 'primary': 'http://archive.ubuntu.com/ubuntu', 'mirror': 'http://archive.ubuntu.com/ubuntu'}
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/templates/sources.list.ubuntu.tmpl (quiet=False)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Read 2800 bytes from /etc/cloud/templates/sources.list.ubuntu.tmpl
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/sources.list - wb: [420] 3197 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_package_update_upgrade_install - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_package_update_upgrade_install'>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_landscape - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_landscape'>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_timezone - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_timezone'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_puppet - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_puppet'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_chef - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_chef'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_salt_minion - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_salt_minion'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_mcollective - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_mcollective'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7f13a4bb8550>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_runcmd - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_runcmd'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_runcmd.py[DEBUG]: Skipping module named runcmd, no 'runcmd' key in configuration
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_byobu - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_byobu'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
May 31 18:09:04 ubuntu [CLOUDINIT] cloud-init[DEBUG]: Ran 19 modules with 0 failures
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /proc/uptime
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 1.805 seconds (1.81)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:final' at Wed, 31 May 2017 18:09:04 +0000. Up 160.14 seconds.
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_rightscale_userdata', 'cloudinit.config.cc_rightscale_userdata'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_rightscale_userdata' due to: No module named cc_rightscale_userdata
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_rightscale_userdata with attributes ['handle'] in ['cloudinit.config.cc_rightscale_userdata']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_vendor', 'cloudinit.config.cc_scripts_vendor'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_vendor' due to: No module named cc_scripts_vendor
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_vendor with attributes ['handle'] in ['cloudinit.config.cc_scripts_vendor']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_once', 'cloudinit.config.cc_scripts_per_once'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_once' due to: No module named cc_scripts_per_once
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_once with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_once']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_boot', 'cloudinit.config.cc_scripts_per_boot'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_boot' due to: No module named cc_scripts_per_boot
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_boot with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_boot']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_instance', 'cloudinit.config.cc_scripts_per_instance'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_instance' due to: No module named cc_scripts_per_instance
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_instance with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_instance']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_user', 'cloudinit.config.cc_scripts_user'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_user' due to: No module named cc_scripts_user
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_user with attributes ['handle'] in ['cloudinit.config.cc_scripts_user']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_ssh_authkey_fingerprints', 'cloudinit.config.cc_ssh_authkey_fingerprints'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_authkey_fingerprints' due to: No module named cc_ssh_authkey_fingerprints
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_ssh_authkey_fingerprints with attributes ['handle'] in ['cloudinit.config.cc_ssh_authkey_fingerprints']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_keys_to_console', 'cloudinit.config.cc_keys_to_console'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_keys_to_console' due to: No module named cc_keys_to_console
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_keys_to_console with attributes ['handle'] in ['cloudinit.config.cc_keys_to_console']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_phone_home', 'cloudinit.config.cc_phone_home'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_phone_home' due to: No module named cc_phone_home
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_phone_home with attributes ['handle'] in ['cloudinit.config.cc_phone_home']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_final_message', 'cloudinit.config.cc_final_message'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_final_message' due to: No module named cc_final_message
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_final_message with attributes ['handle'] in ['cloudinit.config.cc_final_message']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_power_state_change', 'cloudinit.config.cc_power_state_change'] that have attributes ['handle']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_power_state_change' due to: No module named cc_power_state_change
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found cc_power_state_change with attributes ['handle'] in ['cloudinit.config.cc_power_state_change']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
May 31 18:09:04 ubuntu [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_rightscale_userdata - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_rightscale_userdata'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_scripts_vendor - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_scripts_vendor'>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f735e059210>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_scripts_per_instance - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_scripts_per_instance'>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_scripts_user - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_scripts_user'>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_ssh_authkey_fingerprints - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_ssh_authkey_fingerprints'>)
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
May 31 18:09:04 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
May 31 18:09:04 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
May 31 18:09:04 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
May 31 18:09:04 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
May 31 18:09:04 ubuntu [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
May 31 18:09:04 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
May 31 18:09:04 ubuntu [CLOUDINIT] __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Read 0 bytes from /home/ubuntu/.ssh/authorized_keys
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_keys_to_console - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_keys_to_console'>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Running command ['/usr/lib/cloud-init/write-ssh-key-fingerprints', '', 'ssh-dss'] with allowed return codes [0] (shell=False, capture=True)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_phone_home - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_phone_home'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f735e044690>)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /proc/uptime
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 finished at Wed, 31 May 2017 18:09:04 +0000. Datasource DataSourceNone.  Up 160.26 seconds
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 52 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] cc_final_message.py[WARNING]: Used fallback datasource
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/iid-datasource-none/sem/config_power_state_change - wb: [420] 20 bytes
May 31 18:09:04 ubuntu [CLOUDINIT] helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/iid-datasource-none/sem/config_power_state_change'>)
May 31 18:09:04 ubuntu [CLOUDINIT] cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
May 31 18:09:04 ubuntu [CLOUDINIT] cloud-init[DEBUG]: Ran 11 modules with 0 failures
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /proc/uptime
May 31 18:09:04 ubuntu [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 0.125 seconds (0.12)
Download as text