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 | 2016-09-08 19:31:04,139 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init-local' at Thu, 08 Sep 2016 19:31:04 +0000. Up 4.38 seconds.
2016-09-08 19:31:04,259 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2016-09-08 19:31:04,260 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2016-09-08 19:31:04,260 - cloud-init[DEBUG]: Not purging instance link, manual cleaning enabled
2016-09-08 19:31:04,260 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2016-09-08 19:31:04,260 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2016-09-08 19:31:04,260 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2016-09-08 19:31:04,261 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-09-08 19:31:04,261 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-09-08 19:31:04,262 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-09-08 19:31:04,262 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-09-08 19:31:04,262 - __init__.py[DEBUG]: Looking for for data source in: ['MAAS'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2016-09-08 19:31:04,262 - importer.py[DEBUG]: Looking for modules ['DataSourceMAAS', 'cloudinit.sources.DataSourceMAAS'] that have attributes ['get_datasource_list']
2016-09-08 19:31:04,262 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceMAAS' due to: No module named DataSourceMAAS
2016-09-08 19:31:04,310 - importer.py[DEBUG]: Found DataSourceMAAS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceMAAS']
2016-09-08 19:31:04,310 - __init__.py[DEBUG]: Searching for data source in: []
2016-09-08 19:31:04,310 - cloud-init[DEBUG]: No local datasource found
2016-09-08 19:31:04,324 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2016-09-08 19:31:04,324 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2016-09-08 19:31:04,324 - util.py[DEBUG]: cloud-init mode 'init' took 0.318 seconds (0.32)
2016-09-08 19:31:07,343 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init' at Thu, 08 Sep 2016 19:31:07 +0000. Up 7.65 seconds.
2016-09-08 19:31:07,345 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2016-09-08 19:31:07,345 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2016-09-08 19:31:07,345 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:07,362 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:07,394 - cloud-init[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2016-09-08 19:31:07,394 - util.py[DEBUG]: Reading from /var/lib/cloud/data/no-net (quiet=False)
2016-09-08 19:31:07,394 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2016-09-08 19:31:07,394 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2016-09-08 19:31:07,395 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-09-08 19:31:07,395 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-09-08 19:31:07,438 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-09-08 19:31:07,439 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-09-08 19:31:07,439 - __init__.py[DEBUG]: Looking for for data source in: ['MAAS'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2016-09-08 19:31:07,439 - importer.py[DEBUG]: Looking for modules ['DataSourceMAAS', 'cloudinit.sources.DataSourceMAAS'] that have attributes ['get_datasource_list']
2016-09-08 19:31:07,439 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceMAAS' due to: No module named DataSourceMAAS
2016-09-08 19:31:07,444 - importer.py[DEBUG]: Found DataSourceMAAS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceMAAS']
2016-09-08 19:31:07,444 - __init__.py[DEBUG]: Searching for data source in: ['DataSourceMAAS']
2016-09-08 19:31:07,444 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceMAAS.DataSourceMAAS'>
2016-09-08 19:31:07,444 - url_helper.py[DEBUG]: [0/1] open 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/instance-id' with {'url': 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/instance-id', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="66334455", oauth_timestamp="1473363067", oauth_consumer_key="c6xR9wXwQFRe3VyVJC", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hsw7vyuBvyn3YJbHBw", oauth_signature="%267sKRK5suBEspxRstXrmdBknqjJUwgeVs"'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2016-09-08 19:31:07,640 - url_helper.py[DEBUG]: Read from http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/instance-id (200, 41b) after 1 attempts
2016-09-08 19:31:07,640 - DataSourceMAAS.py[DEBUG]: Using metadata source: 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/instance-id'
2016-09-08 19:31:07,640 - url_helper.py[DEBUG]: [0/1] open 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/local-hostname' with {'url': 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/local-hostname', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="20692229", oauth_timestamp="1473363067", oauth_consumer_key="c6xR9wXwQFRe3VyVJC", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hsw7vyuBvyn3YJbHBw", oauth_signature="%267sKRK5suBEspxRstXrmdBknqjJUwgeVs"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2016-09-08 19:31:07,712 - url_helper.py[DEBUG]: Read from http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/local-hostname (200, 10b) after 1 attempts
2016-09-08 19:31:07,712 - url_helper.py[DEBUG]: [0/1] open 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/instance-id' with {'url': 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/instance-id', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="57514643", oauth_timestamp="1473363067", oauth_consumer_key="c6xR9wXwQFRe3VyVJC", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hsw7vyuBvyn3YJbHBw", oauth_signature="%267sKRK5suBEspxRstXrmdBknqjJUwgeVs"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2016-09-08 19:31:07,737 - url_helper.py[DEBUG]: Read from http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/instance-id (200, 41b) after 1 attempts
2016-09-08 19:31:07,737 - url_helper.py[DEBUG]: [0/1] open 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/public-keys' with {'url': 'http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/public-keys', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="24052540", oauth_timestamp="1473363067", oauth_consumer_key="c6xR9wXwQFRe3VyVJC", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hsw7vyuBvyn3YJbHBw", oauth_signature="%267sKRK5suBEspxRstXrmdBknqjJUwgeVs"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2016-09-08 19:31:07,758 - url_helper.py[DEBUG]: Read from http://10.1.10.14/MAAS/metadata//2012-03-01/meta-data/public-keys (200, 409b) after 1 attempts
2016-09-08 19:31:07,758 - url_helper.py[DEBUG]: [0/1] open 'http://10.1.10.14/MAAS/metadata//2012-03-01/user-data' with {'url': 'http://10.1.10.14/MAAS/metadata//2012-03-01/user-data', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="89415174", oauth_timestamp="1473363067", oauth_consumer_key="c6xR9wXwQFRe3VyVJC", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hsw7vyuBvyn3YJbHBw", oauth_signature="%267sKRK5suBEspxRstXrmdBknqjJUwgeVs"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2016-09-08 19:31:07,830 - url_helper.py[DEBUG]: Read from http://10.1.10.14/MAAS/metadata//2012-03-01/user-data (200, 7396b) after 1 attempts
2016-09-08 19:31:07,830 - stages.py[INFO]: Loaded datasource DataSourceMAAS - DataSourceMAAS [http://10.1.10.14/MAAS/metadata/]
2016-09-08 19:31:07,831 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2016-09-08 19:31:07,831 - util.py[DEBUG]: Read 93 bytes from /proc/cmdline
2016-09-08 19:31:07,831 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2016-09-08 19:31:07,831 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2016-09-08 19:31:07,831 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,839 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/curtin-disable-cloudinit-networking.cfg (quiet=False)
2016-09-08 19:31:07,839 - util.py[DEBUG]: Read 28 bytes from /etc/cloud/cloud.cfg.d/curtin-disable-cloudinit-networking.cfg
2016-09-08 19:31:07,839 - util.py[DEBUG]: Attempting to load yaml from string of length 28 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,839 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg (quiet=False)
2016-09-08 19:31:07,839 - util.py[DEBUG]: Read 307 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg
2016-09-08 19:31:07,839 - util.py[DEBUG]: Attempting to load yaml from string of length 307 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,840 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg (quiet=False)
2016-09-08 19:31:07,840 - util.py[DEBUG]: Read 998 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg
2016-09-08 19:31:07,840 - util.py[DEBUG]: Attempting to load yaml from string of length 998 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,889 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2016-09-08 19:31:07,889 - util.py[DEBUG]: Read 81 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2016-09-08 19:31:07,889 - util.py[DEBUG]: Attempting to load yaml from string of length 81 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,890 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2016-09-08 19:31:07,890 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2016-09-08 19:31:07,890 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,892 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,892 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,892 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,892 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,892 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,892 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,892 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,892 - __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'
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,893 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,893 - __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'
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,893 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,893 - __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'
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,893 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,893 - __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'
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,893 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,894 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,894 - __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'
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,894 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,894 - __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'
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,894 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,894 - __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'
2016-09-08 19:31:07,894 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,894 - __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'
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,894 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,894 - __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'
2016-09-08 19:31:07,894 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,895 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,895 - __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'
2016-09-08 19:31:07,895 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,895 - __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'
2016-09-08 19:31:07,895 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,895 - __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'
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,895 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,895 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,895 - __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'
2016-09-08 19:31:07,895 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2016-09-08 19:31:07,895 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650'
2016-09-08 19:31:07,903 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/datasource (quiet=False)
2016-09-08 19:31:07,903 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/datasource - wb: [420] 66 bytes
2016-09-08 19:31:07,903 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 66 bytes
2016-09-08 19:31:07,903 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2016-09-08 19:31:07,903 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 42 bytes
2016-09-08 19:31:07,903 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 42 bytes
2016-09-08 19:31:07,903 - cloud-init[DEBUG]: init will now be targeting instance id: node-a53740d0-6fb0-11e6-ba5c-000c291ae650
2016-09-08 19:31:07,904 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2016-09-08 19:31:07,904 - util.py[DEBUG]: Read 93 bytes from /proc/cmdline
2016-09-08 19:31:07,904 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2016-09-08 19:31:07,904 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2016-09-08 19:31:07,904 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,911 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/curtin-disable-cloudinit-networking.cfg (quiet=False)
2016-09-08 19:31:07,911 - util.py[DEBUG]: Read 28 bytes from /etc/cloud/cloud.cfg.d/curtin-disable-cloudinit-networking.cfg
2016-09-08 19:31:07,911 - util.py[DEBUG]: Attempting to load yaml from string of length 28 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,912 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg (quiet=False)
2016-09-08 19:31:07,912 - util.py[DEBUG]: Read 307 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg
2016-09-08 19:31:07,912 - util.py[DEBUG]: Attempting to load yaml from string of length 307 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,913 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg (quiet=False)
2016-09-08 19:31:07,913 - util.py[DEBUG]: Read 998 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg
2016-09-08 19:31:07,913 - util.py[DEBUG]: Attempting to load yaml from string of length 998 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,917 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2016-09-08 19:31:07,918 - util.py[DEBUG]: Read 81 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2016-09-08 19:31:07,918 - util.py[DEBUG]: Attempting to load yaml from string of length 81 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,918 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2016-09-08 19:31:07,918 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2016-09-08 19:31:07,918 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,920 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,920 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,921 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,921 - __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'
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,921 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,921 - __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'
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,921 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,921 - __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'
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,921 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,922 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,922 - __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'
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,922 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,922 - __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'
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,922 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,922 - __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'
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,922 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,922 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,922 - __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'
2016-09-08 19:31:07,922 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,922 - __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'
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,923 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,923 - __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'
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,923 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,923 - __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'
2016-09-08 19:31:07,923 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,923 - __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'
2016-09-08 19:31:07,923 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,923 - __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'
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,923 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,923 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,924 - __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'
2016-09-08 19:31:07,924 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 27957 bytes
2016-09-08 19:31:07,925 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/user-data.txt - wb: [384] 7396 bytes
2016-09-08 19:31:07,925 - util.py[DEBUG]: Attempting to load yaml from string of length 21794 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,975 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/user-data.txt.i - wb: [384] 22136 bytes
2016-09-08 19:31:07,975 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/vendor-data.txt - wb: [384] 4 bytes
2016-09-08 19:31:07,975 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/vendor-data.txt.i - wb: [384] 345 bytes
2016-09-08 19:31:07,976 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-09-08 19:31:07,976 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-09-08 19:31:07,976 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-09-08 19:31:07,976 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-09-08 19:31:07,976 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/consume_data - wb: [420] 19 bytes
2016-09-08 19:31:07,976 - helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/consume_data'>)
2016-09-08 19:31:07,977 - stages.py[DEBUG]: Added default handler for set(['text/cloud-config-jsonp', 'text/cloud-config']) from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2016-09-08 19:31:07,977 - stages.py[DEBUG]: Added default handler for set(['text/x-shellscript']) from ShellScriptPartHandler: [['text/x-shellscript']]
2016-09-08 19:31:07,977 - stages.py[DEBUG]: Added default handler for set(['text/cloud-boothook']) from BootHookPartHandler: [['text/cloud-boothook']]
2016-09-08 19:31:07,977 - stages.py[DEBUG]: Added default handler for set(['text/upstart-job']) from UpstartJobPartHandler: [['text/upstart-job']]
2016-09-08 19:31:07,977 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2016-09-08 19:31:07,977 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2016-09-08 19:31:07,977 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2016-09-08 19:31:07,977 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2016-09-08 19:31:07,977 - __init__.py[DEBUG]: {'Content-Type': 'text/cloud-config', 'Content-Disposition': 'attachment; filename="part-001"', 'MIME-Version': '1.0'}
2016-09-08 19:31:07,977 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (text/cloud-config, part-001, 3) with frequency once-per-instance
2016-09-08 19:31:07,977 - util.py[DEBUG]: Attempting to load yaml from string of length 21794 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:07,995 - cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
2016-09-08 19:31:07,995 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:07,995 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:07,995 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:07,995 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:07,995 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:07,995 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:07,996 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:07,996 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-09-08 19:31:07,996 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2016-09-08 19:31:07,996 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2016-09-08 19:31:07,996 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2016-09-08 19:31:08,016 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/cloud-config.txt - wb: [384] 23297 bytes
2016-09-08 19:31:08,016 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2016-09-08 19:31:08,016 - stages.py[DEBUG]: no vendordata from datasource
2016-09-08 19:31:08,016 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2016-09-08 19:31:08,016 - util.py[DEBUG]: Read 93 bytes from /proc/cmdline
2016-09-08 19:31:08,017 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2016-09-08 19:31:08,017 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2016-09-08 19:31:08,017 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:08,024 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/curtin-disable-cloudinit-networking.cfg (quiet=False)
2016-09-08 19:31:08,024 - util.py[DEBUG]: Read 28 bytes from /etc/cloud/cloud.cfg.d/curtin-disable-cloudinit-networking.cfg
2016-09-08 19:31:08,024 - util.py[DEBUG]: Attempting to load yaml from string of length 28 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:08,025 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg (quiet=False)
2016-09-08 19:31:08,025 - util.py[DEBUG]: Read 307 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg
2016-09-08 19:31:08,025 - util.py[DEBUG]: Attempting to load yaml from string of length 307 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:08,039 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg (quiet=False)
2016-09-08 19:31:08,039 - util.py[DEBUG]: Read 998 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg
2016-09-08 19:31:08,039 - util.py[DEBUG]: Attempting to load yaml from string of length 998 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:08,042 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2016-09-08 19:31:08,042 - util.py[DEBUG]: Read 81 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2016-09-08 19:31:08,042 - util.py[DEBUG]: Attempting to load yaml from string of length 81 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:08,043 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2016-09-08 19:31:08,043 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2016-09-08 19:31:08,043 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,045 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,045 - __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'
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,045 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,046 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,046 - __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'
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,046 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,046 - __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'
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,046 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,046 - __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'
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,046 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,046 - __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'
2016-09-08 19:31:08,046 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,047 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,047 - __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'
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,047 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,047 - __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'
2016-09-08 19:31:08,047 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,047 - __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'
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,047 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,047 - __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'
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,047 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,048 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,048 - __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'
2016-09-08 19:31:08,048 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,048 - __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'
2016-09-08 19:31:08,048 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,048 - __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'
2016-09-08 19:31:08,048 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2016-09-08 19:31:08,048 - util.py[DEBUG]: Read 23297 bytes from /var/lib/cloud/instance/cloud-config.txt
2016-09-08 19:31:08,048 - util.py[DEBUG]: Attempting to load yaml from string of length 23297 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:08,072 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,072 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,072 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,072 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,072 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,072 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,072 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,072 - __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'
2016-09-08 19:31:08,072 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,073 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,073 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,073 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,073 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,073 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,073 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,073 - __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'
2016-09-08 19:31:08,073 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,073 - __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'
2016-09-08 19:31:08,073 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2016-09-08 19:31:08,073 - util.py[DEBUG]: Read 23297 bytes from /var/lib/cloud/instance/cloud-config.txt
2016-09-08 19:31:08,073 - util.py[DEBUG]: Attempting to load yaml from string of length 23297 with allowed root types (<type 'dict'>,)
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,097 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,097 - __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'
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:08,097 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:08,097 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,097 - __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'
2016-09-08 19:31:08,097 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:08,097 - __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'
2016-09-08 19:31:08,099 - importer.py[DEBUG]: Looking for modules ['cc_migrator', 'cloudinit.config.cc_migrator'] that have attributes ['handle']
2016-09-08 19:31:08,099 - importer.py[DEBUG]: Failed at attempted import of 'cc_migrator' due to: No module named cc_migrator
2016-09-08 19:31:08,115 - importer.py[DEBUG]: Found cc_migrator with attributes ['handle'] in ['cloudinit.config.cc_migrator']
2016-09-08 19:31:08,115 - importer.py[DEBUG]: Looking for modules ['cc_seed_random', 'cloudinit.config.cc_seed_random'] that have attributes ['handle']
2016-09-08 19:31:08,115 - importer.py[DEBUG]: Failed at attempted import of 'cc_seed_random' due to: No module named cc_seed_random
2016-09-08 19:31:08,115 - importer.py[DEBUG]: Found cc_seed_random with attributes ['handle'] in ['cloudinit.config.cc_seed_random']
2016-09-08 19:31:08,115 - importer.py[DEBUG]: Looking for modules ['cc_bootcmd', 'cloudinit.config.cc_bootcmd'] that have attributes ['handle']
2016-09-08 19:31:08,115 - importer.py[DEBUG]: Failed at attempted import of 'cc_bootcmd' due to: No module named cc_bootcmd
2016-09-08 19:31:08,123 - importer.py[DEBUG]: Found cc_bootcmd with attributes ['handle'] in ['cloudinit.config.cc_bootcmd']
2016-09-08 19:31:08,123 - importer.py[DEBUG]: Looking for modules ['cc_write_files', 'cloudinit.config.cc_write_files'] that have attributes ['handle']
2016-09-08 19:31:08,123 - importer.py[DEBUG]: Failed at attempted import of 'cc_write_files' due to: No module named cc_write_files
2016-09-08 19:31:08,144 - importer.py[DEBUG]: Found cc_write_files with attributes ['handle'] in ['cloudinit.config.cc_write_files']
2016-09-08 19:31:08,144 - importer.py[DEBUG]: Looking for modules ['cc_growpart', 'cloudinit.config.cc_growpart'] that have attributes ['handle']
2016-09-08 19:31:08,144 - importer.py[DEBUG]: Failed at attempted import of 'cc_growpart' due to: No module named cc_growpart
2016-09-08 19:31:08,145 - importer.py[DEBUG]: Found cc_growpart with attributes ['handle'] in ['cloudinit.config.cc_growpart']
2016-09-08 19:31:08,145 - importer.py[DEBUG]: Looking for modules ['cc_resizefs', 'cloudinit.config.cc_resizefs'] that have attributes ['handle']
2016-09-08 19:31:08,145 - importer.py[DEBUG]: Failed at attempted import of 'cc_resizefs' due to: No module named cc_resizefs
2016-09-08 19:31:08,145 - importer.py[DEBUG]: Found cc_resizefs with attributes ['handle'] in ['cloudinit.config.cc_resizefs']
2016-09-08 19:31:08,145 - importer.py[DEBUG]: Looking for modules ['cc_set_hostname', 'cloudinit.config.cc_set_hostname'] that have attributes ['handle']
2016-09-08 19:31:08,145 - importer.py[DEBUG]: Failed at attempted import of 'cc_set_hostname' due to: No module named cc_set_hostname
2016-09-08 19:31:08,146 - importer.py[DEBUG]: Found cc_set_hostname with attributes ['handle'] in ['cloudinit.config.cc_set_hostname']
2016-09-08 19:31:08,146 - importer.py[DEBUG]: Looking for modules ['cc_update_hostname', 'cloudinit.config.cc_update_hostname'] that have attributes ['handle']
2016-09-08 19:31:08,146 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_hostname' due to: No module named cc_update_hostname
2016-09-08 19:31:08,147 - importer.py[DEBUG]: Found cc_update_hostname with attributes ['handle'] in ['cloudinit.config.cc_update_hostname']
2016-09-08 19:31:08,147 - importer.py[DEBUG]: Looking for modules ['cc_update_etc_hosts', 'cloudinit.config.cc_update_etc_hosts'] that have attributes ['handle']
2016-09-08 19:31:08,147 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_etc_hosts' due to: No module named cc_update_etc_hosts
2016-09-08 19:31:08,148 - importer.py[DEBUG]: Found cc_update_etc_hosts with attributes ['handle'] in ['cloudinit.config.cc_update_etc_hosts']
2016-09-08 19:31:08,148 - importer.py[DEBUG]: Looking for modules ['cc_ca_certs', 'cloudinit.config.cc_ca_certs'] that have attributes ['handle']
2016-09-08 19:31:08,148 - importer.py[DEBUG]: Failed at attempted import of 'cc_ca_certs' due to: No module named cc_ca_certs
2016-09-08 19:31:08,149 - importer.py[DEBUG]: Found cc_ca_certs with attributes ['handle'] in ['cloudinit.config.cc_ca_certs']
2016-09-08 19:31:08,149 - importer.py[DEBUG]: Looking for modules ['cc_rsyslog', 'cloudinit.config.cc_rsyslog'] that have attributes ['handle']
2016-09-08 19:31:08,149 - importer.py[DEBUG]: Failed at attempted import of 'cc_rsyslog' due to: No module named cc_rsyslog
2016-09-08 19:31:08,149 - importer.py[DEBUG]: Found cc_rsyslog with attributes ['handle'] in ['cloudinit.config.cc_rsyslog']
2016-09-08 19:31:08,149 - importer.py[DEBUG]: Looking for modules ['cc_users_groups', 'cloudinit.config.cc_users_groups'] that have attributes ['handle']
2016-09-08 19:31:08,150 - importer.py[DEBUG]: Failed at attempted import of 'cc_users_groups' due to: No module named cc_users_groups
2016-09-08 19:31:08,150 - importer.py[DEBUG]: Found cc_users_groups with attributes ['handle'] in ['cloudinit.config.cc_users_groups']
2016-09-08 19:31:08,150 - importer.py[DEBUG]: Looking for modules ['cc_ssh', 'cloudinit.config.cc_ssh'] that have attributes ['handle']
2016-09-08 19:31:08,150 - importer.py[DEBUG]: Failed at attempted import of 'cc_ssh' due to: No module named cc_ssh
2016-09-08 19:31:08,151 - importer.py[DEBUG]: Found cc_ssh with attributes ['handle'] in ['cloudinit.config.cc_ssh']
2016-09-08 19:31:08,151 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-09-08 19:31:08,151 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-09-08 19:31:08,151 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-09-08 19:31:08,151 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-09-08 19:31:08,152 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7f10b4ad5350>)
2016-09-08 19:31:08,152 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2016-09-08 19:31:08,152 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_seed_random - wb: [420] 19 bytes
2016-09-08 19:31:08,153 - helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_seed_random'>)
2016-09-08 19:31:08,153 - util.py[DEBUG]: Running command ['pollinate', '-q'] with allowed return codes [0] (shell=False, capture=False)
2016-09-08 19:31:09,061 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7f10b4ad5b90>)
2016-09-08 19:31:09,062 - util.py[DEBUG]: Created temporary file /tmp/tmpBpGj_F.sh
2016-09-08 19:31:09,062 - util.py[DEBUG]: Shellified 2 commands.
2016-09-08 19:31:09,062 - util.py[DEBUG]: Running command ['/bin/sh', '/tmp/tmpBpGj_F.sh'] with allowed return codes [0] (shell=False, capture=False)
2016-09-08 19:31:09,170 - util.py[DEBUG]: Attempting to remove /tmp/tmpBpGj_F.sh
2016-09-08 19:31:09,170 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_write_files - wb: [420] 19 bytes
2016-09-08 19:31:09,171 - helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_write_files'>)
2016-09-08 19:31:09,171 - cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
2016-09-08 19:31:09,171 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7f10b4ad5950>)
2016-09-08 19:31:09,171 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg. Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
2016-09-08 19:31:09,171 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:09,200 - util.py[DEBUG]: Reading from /proc/768/mountinfo (quiet=False)
2016-09-08 19:31:09,200 - util.py[DEBUG]: Read 1018 bytes from /proc/768/mountinfo
2016-09-08 19:31:09,200 - util.py[DEBUG]: Reading from /sys/class/block/sda1/partition (quiet=False)
2016-09-08 19:31:09,201 - util.py[DEBUG]: Read 2 bytes from /sys/class/block/sda1/partition
2016-09-08 19:31:09,201 - util.py[DEBUG]: Reading from /sys/devices/pci0000:00/0000:00:10.0/host32/target32:0:0/32:0:0:0/block/sda/dev (quiet=False)
2016-09-08 19:31:09,201 - util.py[DEBUG]: Read 4 bytes from /sys/devices/pci0000:00/0000:00:10.0/host32/target32:0:0/32:0:0:0/block/sda/dev
2016-09-08 19:31:09,201 - util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/sda', '1'] with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:09,291 - util.py[DEBUG]: resize_devices took 0.091 seconds
2016-09-08 19:31:09,291 - cc_growpart.py[DEBUG]: '/' NOCHANGE: no change necessary (/dev/sda, 1)
2016-09-08 19:31:09,291 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7f10b4ad5cd0>)
2016-09-08 19:31:09,291 - util.py[DEBUG]: Reading from /proc/768/mountinfo (quiet=False)
2016-09-08 19:31:09,291 - util.py[DEBUG]: Read 1018 bytes from /proc/768/mountinfo
2016-09-08 19:31:09,292 - cc_resizefs.py[DEBUG]: resize_info: dev=/dev/sda1 mnt_point=/ path=/
2016-09-08 19:31:09,292 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:09,318 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:09,366 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2016-09-08 19:31:09,366 - util.py[DEBUG]: Read 142 bytes from /proc/1/environ
2016-09-08 19:31:09,366 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2016-09-08 19:31:09,366 - util.py[DEBUG]: Read 793 bytes from /proc/self/status
2016-09-08 19:31:09,366 - cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/sda1
2016-09-08 19:31:09,367 - util.py[DEBUG]: Running command ('resize2fs', '/dev/sda1') with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:09,427 - util.py[DEBUG]: Resizing took 0.060 seconds
2016-09-08 19:31:09,427 - cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
2016-09-08 19:31:09,427 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_set_hostname - wb: [420] 19 bytes
2016-09-08 19:31:09,428 - helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_set_hostname'>)
2016-09-08 19:31:09,428 - cc_set_hostname.py[DEBUG]: Setting the hostname to node2.maas (node2)
2016-09-08 19:31:09,428 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2016-09-08 19:31:09,428 - util.py[DEBUG]: Read 7 bytes from /etc/hostname
2016-09-08 19:31:09,428 - util.py[DEBUG]: Writing to /etc/hostname - wb: [420] 6 bytes
2016-09-08 19:31:09,428 - __init__.py[DEBUG]: Non-persistently setting the system hostname to node2
2016-09-08 19:31:09,428 - util.py[DEBUG]: Running command ['hostname', 'node2'] with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:09,432 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7f10b4acad90>)
2016-09-08 19:31:09,432 - cc_update_hostname.py[DEBUG]: Updating hostname to node2.maas (node2)
2016-09-08 19:31:09,432 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2016-09-08 19:31:09,432 - util.py[DEBUG]: Read 6 bytes from /etc/hostname
2016-09-08 19:31:09,432 - __init__.py[DEBUG]: Attempting to update hostname to node2 in 1 files
2016-09-08 19:31:09,432 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2016-09-08 19:31:09,432 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [420] 6 bytes
2016-09-08 19:31:09,433 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7f10b4acaad0>)
2016-09-08 19:31:09,433 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2016-09-08 19:31:09,433 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_ca_certs - wb: [420] 19 bytes
2016-09-08 19:31:09,433 - helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_ca_certs'>)
2016-09-08 19:31:09,433 - cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
2016-09-08 19:31:09,434 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_rsyslog - wb: [420] 19 bytes
2016-09-08 19:31:09,434 - helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_rsyslog'>)
2016-09-08 19:31:09,434 - cc_rsyslog.py[DEBUG]: Skipping module named rsyslog, no 'rsyslog' key in configuration
2016-09-08 19:31:09,434 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_users_groups - wb: [420] 19 bytes
2016-09-08 19:31:09,434 - helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_users_groups'>)
2016-09-08 19:31:09,434 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:09,434 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:09,434 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:09,434 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:09,434 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:09,434 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:09,435 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:09,435 - __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'
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:09,435 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:09,435 - __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'
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:09,435 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:09,435 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:09,435 - __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'
2016-09-08 19:31:09,435 - __init__.py[DEBUG]: Adding user ubuntu
2016-09-08 19:31:09,435 - 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']
2016-09-08 19:31:09,911 - util.py[DEBUG]: Running command ['passwd', '-l', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
2016-09-08 19:31:10,004 - util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
2016-09-08 19:31:10,018 - util.py[DEBUG]: Read 745 bytes from /etc/sudoers
2016-09-08 19:31:10,019 - util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - wb: [288] 123 bytes
2016-09-08 19:31:10,019 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_ssh - wb: [420] 19 bytes
2016-09-08 19:31:10,019 - helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_ssh'>)
2016-09-08 19:31:10,020 - 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)
2016-09-08 19:31:10,154 - 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)
2016-09-08 19:31:10,241 - 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)
2016-09-08 19:31:10,244 - 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)
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:10,248 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:10,248 - __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'
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:10,248 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:10,248 - __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'
2016-09-08 19:31:10,248 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-09-08 19:31:10,249 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-09-08 19:31:10,249 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-09-08 19:31:10,249 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-09-08 19:31:10,249 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-09-08 19:31:10,249 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-09-08 19:31:10,249 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-09-08 19:31:10,249 - __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'
2016-09-08 19:31:10,249 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh to 1000:1000
2016-09-08 19:31:10,249 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2016-09-08 19:31:10,249 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2016-09-08 19:31:10,250 - util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [384] 1629 bytes
2016-09-08 19:31:10,250 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1000:1000
2016-09-08 19:31:10,274 - util.py[DEBUG]: Changing the ownership of /root/.ssh to 0:0
2016-09-08 19:31:10,274 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2016-09-08 19:31:10,274 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2016-09-08 19:31:10,275 - util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [384] 2249 bytes
2016-09-08 19:31:10,275 - util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
2016-09-08 19:31:10,275 - cloud-init[DEBUG]: Ran 13 modules with 0 failures
2016-09-08 19:31:10,275 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2016-09-08 19:31:10,276 - util.py[DEBUG]: Read 11 bytes from /proc/uptime
2016-09-08 19:31:10,276 - util.py[DEBUG]: cloud-init mode 'init' took 3.057 seconds (3.05)
Sep 8 19:31:11 node2 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:config' at Thu, 08 Sep 2016 19:31:11 +0000. Up 11.78 seconds.
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_emit_upstart', 'cloudinit.config.cc_emit_upstart'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_emit_upstart' due to: No module named cc_emit_upstart
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_emit_upstart with attributes ['handle'] in ['cloudinit.config.cc_emit_upstart']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_disk_setup', 'cloudinit.config.cc_disk_setup'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_disk_setup' due to: No module named cc_disk_setup
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_disk_setup with attributes ['handle'] in ['cloudinit.config.cc_disk_setup']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_mounts', 'cloudinit.config.cc_mounts'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_mounts' due to: No module named cc_mounts
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_mounts with attributes ['handle'] in ['cloudinit.config.cc_mounts']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_ssh_import_id', 'cloudinit.config.cc_ssh_import_id'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_import_id' due to: No module named cc_ssh_import_id
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_ssh_import_id with attributes ['handle'] in ['cloudinit.config.cc_ssh_import_id']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_locale', 'cloudinit.config.cc_locale'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_locale' due to: No module named cc_locale
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_locale with attributes ['handle'] in ['cloudinit.config.cc_locale']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_set_passwords', 'cloudinit.config.cc_set_passwords'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_set_passwords' due to: No module named cc_set_passwords
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_set_passwords with attributes ['handle'] in ['cloudinit.config.cc_set_passwords']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_grub_dpkg', 'cloudinit.config.cc_grub_dpkg'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_grub_dpkg' due to: No module named cc_grub_dpkg
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_grub_dpkg with attributes ['handle'] in ['cloudinit.config.cc_grub_dpkg']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_pipelining', 'cloudinit.config.cc_apt_pipelining'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_pipelining' due to: No module named cc_apt_pipelining
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_pipelining with attributes ['handle'] in ['cloudinit.config.cc_apt_pipelining']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_configure', 'cloudinit.config.cc_apt_configure'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_configure' due to: No module named cc_apt_configure
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_configure with attributes ['handle'] in ['cloudinit.config.cc_apt_configure']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_package_update_upgrade_install', 'cloudinit.config.cc_package_update_upgrade_install'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_package_update_upgrade_install' due to: No module named cc_package_update_upgrade_install
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_package_update_upgrade_install with attributes ['handle'] in ['cloudinit.config.cc_package_update_upgrade_install']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_landscape', 'cloudinit.config.cc_landscape'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_landscape' due to: No module named cc_landscape
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_landscape with attributes ['handle'] in ['cloudinit.config.cc_landscape']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_timezone', 'cloudinit.config.cc_timezone'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_timezone' due to: No module named cc_timezone
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_timezone with attributes ['handle'] in ['cloudinit.config.cc_timezone']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_puppet', 'cloudinit.config.cc_puppet'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_puppet' due to: No module named cc_puppet
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_puppet with attributes ['handle'] in ['cloudinit.config.cc_puppet']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_chef', 'cloudinit.config.cc_chef'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_chef' due to: No module named cc_chef
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_chef with attributes ['handle'] in ['cloudinit.config.cc_chef']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_salt_minion', 'cloudinit.config.cc_salt_minion'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_salt_minion' due to: No module named cc_salt_minion
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_salt_minion with attributes ['handle'] in ['cloudinit.config.cc_salt_minion']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_mcollective', 'cloudinit.config.cc_mcollective'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_mcollective' due to: No module named cc_mcollective
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_mcollective with attributes ['handle'] in ['cloudinit.config.cc_mcollective']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_disable_ec2_metadata', 'cloudinit.config.cc_disable_ec2_metadata'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_disable_ec2_metadata' due to: No module named cc_disable_ec2_metadata
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_disable_ec2_metadata with attributes ['handle'] in ['cloudinit.config.cc_disable_ec2_metadata']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_runcmd', 'cloudinit.config.cc_runcmd'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_runcmd' due to: No module named cc_runcmd
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_runcmd with attributes ['handle'] in ['cloudinit.config.cc_runcmd']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_byobu', 'cloudinit.config.cc_byobu'] that have attributes ['handle']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_byobu' due to: No module named cc_byobu
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_byobu with attributes ['handle'] in ['cloudinit.config.cc_byobu']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
Sep 8 19:31:11 node2 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 8 19:31:11 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7fe9e457d210>)
Sep 8 19:31:11 node2 [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)
Sep 8 19:31:11 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_disk_setup - wb: [420] 19 bytes
Sep 8 19:31:11 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-disk_setup using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_disk_setup'>)
Sep 8 19:31:11 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_mounts - wb: [420] 19 bytes
Sep 8 19:31:11 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-mounts using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_mounts'>)
Sep 8 19:31:11 node2 [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of ephemeral0
Sep 8 19:31:11 node2 [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount ephemeral0
Sep 8 19:31:11 node2 [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of swap
Sep 8 19:31:11 node2 [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount swap
Sep 8 19:31:11 node2 [CLOUDINIT] cc_mounts.py[DEBUG]: No modifications to fstab needed.
Sep 8 19:31:11 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_ssh_import_id - wb: [420] 20 bytes
Sep 8 19:31:11 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_ssh_import_id'>)
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Sep 8 19:31:11 node2 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Sep 8 19:31:11 node2 [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'
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Sep 8 19:31:11 node2 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Sep 8 19:31:11 node2 [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'
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Sep 8 19:31:11 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Sep 8 19:31:11 node2 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Sep 8 19:31:11 node2 [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'
Sep 8 19:31:11 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_locale - wb: [420] 20 bytes
Sep 8 19:31:11 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_locale'>)
Sep 8 19:31:11 node2 [CLOUDINIT] cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
Sep 8 19:31:11 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['locale-gen', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['update-locale', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/default/locale - wb: [420] 87 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_set_passwords - wb: [420] 20 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_set_passwords'>)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_grub_dpkg - wb: [420] 20 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_grub_dpkg'>)
Sep 8 19:31:13 node2 [CLOUDINIT] cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/sda','false'
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_apt_pipelining - wb: [420] 20 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_apt_pipelining'>)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [420] 80 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_apt_configure - wb: [420] 20 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_apt_configure'>)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['lsb_release', '-cs'] with allowed return codes [0] (shell=False, capture=True)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Sep 8 19:31:13 node2 [CLOUDINIT] __init__.py[DEBUG]: filtered distro mirror info: {'security': 'http://archive.ubuntu.com/ubuntu', 'primary': 'http://archive.ubuntu.com/ubuntu'}
Sep 8 19:31:13 node2 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Mirror info: {'security': 'http://archive.ubuntu.com/ubuntu', 'primary': 'http://archive.ubuntu.com/ubuntu', 'mirror': 'http://archive.ubuntu.com/ubuntu'}
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/95cloud-init-proxy - wb: [420] 48 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_package_update_upgrade_install - wb: [420] 20 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_package_update_upgrade_install'>)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/update_sources - wb: [420] 20 bytes
Sep 8 19:31:13 node2 [CLOUDINIT] helpers.py[DEBUG]: Running update-sources using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/update_sources'>)
Sep 8 19:31:13 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['eatmydata', 'apt-get', '--option=Dpkg::Options::=--force-confold', '--option=Dpkg::options::=--force-unsafe-io', '--assume-yes', '--quiet', 'update'] with allowed return codes [0] (shell=False, capture=False)
Sep 8 19:23:41 node2 [CLOUDINIT] util.py[DEBUG]: apt-update [eatmydata apt-get --option=Dpkg::Options::=--force-confold --option=Dpkg::options::=--force-unsafe-io --assume-yes --quiet update] took -452.600 seconds
Sep 8 19:23:41 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['eatmydata', 'apt-get', '--option=Dpkg::Options::=--force-confold', '--option=Dpkg::options::=--force-unsafe-io', '--assume-yes', '--quiet', 'dist-upgrade'] with allowed return codes [0] (shell=False, capture=False)
Sep 8 19:24:12 node2 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'single' at Thu, 08 Sep 2016 19:24:12 +0000. Up 51.36 seconds.
Sep 8 19:24:12 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_pipelining', 'cloudinit.config.cc_apt_pipelining'] that have attributes ['handle']
Sep 8 19:24:12 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_pipelining' due to: No module named cc_apt_pipelining
Sep 8 19:24:12 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_pipelining with attributes ['handle'] in ['cloudinit.config.cc_apt_pipelining']
Sep 8 19:24:12 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
Sep 8 19:24:12 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
Sep 8 19:24:12 node2 [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
Sep 8 19:24:12 node2 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 8 19:24:12 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_apt_pipelining.once - wb: [420] 21 bytes
Sep 8 19:24:12 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/sem/config_apt_pipelining.once'>)
Sep 8 19:24:12 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [420] 80 bytes
Sep 8 19:24:12 node2 [CLOUDINIT] cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
Sep 8 19:24:12 node2 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 8 19:24:12 node2 [CLOUDINIT] util.py[DEBUG]: Read 11 bytes from /proc/uptime
Sep 8 19:24:12 node2 [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'single' took 0.123 seconds (0.13)
Sep 8 19:24:23 node2 [CLOUDINIT] util.py[DEBUG]: apt-upgrade [eatmydata apt-get --option=Dpkg::Options::=--force-confold --option=Dpkg::options::=--force-unsafe-io --assume-yes --quiet dist-upgrade] took 42.684 seconds
Sep 8 19:24:23 node2 [CLOUDINIT] helpers.py[DEBUG]: update-sources already ran (freq=once-per-instance)
Sep 8 19:24:23 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['eatmydata', 'apt-get', '--option=Dpkg::Options::=--force-confold', '--option=Dpkg::options::=--force-unsafe-io', '--assume-yes', '--quiet', 'install', 'bridge-utils', 'curl', 'cpu-checker', 'bridge-utils', 'rsyslog-gnutls', 'cloud-utils', 'cloud-image-utils', 'tmux'] with allowed return codes [0] (shell=False, capture=False)
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: apt-install [eatmydata apt-get --option=Dpkg::Options::=--force-confold --option=Dpkg::options::=--force-unsafe-io --assume-yes --quiet install bridge-utils curl cpu-checker bridge-utils rsyslog-gnutls cloud-utils cloud-image-utils tmux] took 2.820 seconds
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_landscape - wb: [420] 20 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_landscape'>)
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_timezone - wb: [420] 20 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_timezone'>)
Sep 8 19:24:26 node2 [CLOUDINIT] cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_puppet - wb: [420] 20 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_puppet'>)
Sep 8 19:24:26 node2 [CLOUDINIT] cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_chef - wb: [420] 20 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_chef'>)
Sep 8 19:24:26 node2 [CLOUDINIT] cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_salt_minion - wb: [420] 20 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_salt_minion'>)
Sep 8 19:24:26 node2 [CLOUDINIT] cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_mcollective - wb: [420] 20 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_mcollective'>)
Sep 8 19:24:26 node2 [CLOUDINIT] cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7fe9e4552710>)
Sep 8 19:24:26 node2 [CLOUDINIT] cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_runcmd - wb: [420] 20 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_runcmd'>)
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Shellified 30 commands.
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/scripts/runcmd - wb: [448] 5611 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_byobu - wb: [420] 20 bytes
Sep 8 19:24:26 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_byobu'>)
Sep 8 19:24:26 node2 [CLOUDINIT] cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
Sep 8 19:24:26 node2 [CLOUDINIT] cloud-init[DEBUG]: Ran 19 modules with 0 failures
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: Read 11 bytes from /proc/uptime
Sep 8 19:24:26 node2 [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took -404.452 seconds (53.80)
Sep 8 19:24:27 node2 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:final' at Thu, 08 Sep 2016 19:24:26 +0000. Up 65.54 seconds.
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_rightscale_userdata', 'cloudinit.config.cc_rightscale_userdata'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_rightscale_userdata' due to: No module named cc_rightscale_userdata
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_rightscale_userdata with attributes ['handle'] in ['cloudinit.config.cc_rightscale_userdata']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_vendor', 'cloudinit.config.cc_scripts_vendor'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_vendor' due to: No module named cc_scripts_vendor
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_vendor with attributes ['handle'] in ['cloudinit.config.cc_scripts_vendor']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_once', 'cloudinit.config.cc_scripts_per_once'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_once' due to: No module named cc_scripts_per_once
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_once with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_once']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_boot', 'cloudinit.config.cc_scripts_per_boot'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_boot' due to: No module named cc_scripts_per_boot
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_boot with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_boot']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_instance', 'cloudinit.config.cc_scripts_per_instance'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_instance' due to: No module named cc_scripts_per_instance
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_instance with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_instance']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_user', 'cloudinit.config.cc_scripts_user'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_user' due to: No module named cc_scripts_user
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_user with attributes ['handle'] in ['cloudinit.config.cc_scripts_user']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_ssh_authkey_fingerprints', 'cloudinit.config.cc_ssh_authkey_fingerprints'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_authkey_fingerprints' due to: No module named cc_ssh_authkey_fingerprints
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_ssh_authkey_fingerprints with attributes ['handle'] in ['cloudinit.config.cc_ssh_authkey_fingerprints']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_keys_to_console', 'cloudinit.config.cc_keys_to_console'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_keys_to_console' due to: No module named cc_keys_to_console
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_keys_to_console with attributes ['handle'] in ['cloudinit.config.cc_keys_to_console']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_phone_home', 'cloudinit.config.cc_phone_home'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_phone_home' due to: No module named cc_phone_home
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_phone_home with attributes ['handle'] in ['cloudinit.config.cc_phone_home']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_final_message', 'cloudinit.config.cc_final_message'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_final_message' due to: No module named cc_final_message
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_final_message with attributes ['handle'] in ['cloudinit.config.cc_final_message']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_power_state_change', 'cloudinit.config.cc_power_state_change'] that have attributes ['handle']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_power_state_change' due to: No module named cc_power_state_change
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found cc_power_state_change with attributes ['handle'] in ['cloudinit.config.cc_power_state_change']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
Sep 8 19:24:27 node2 [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
Sep 8 19:24:27 node2 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 8 19:24:27 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_rightscale_userdata - wb: [420] 21 bytes
Sep 8 19:24:27 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_rightscale_userdata'>)
Sep 8 19:24:27 node2 [CLOUDINIT] cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
Sep 8 19:24:27 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_scripts_vendor - wb: [420] 21 bytes
Sep 8 19:24:27 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_scripts_vendor'>)
Sep 8 19:24:27 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [420] 21 bytes
Sep 8 19:24:27 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
Sep 8 19:24:27 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f9b5b3b7850>)
Sep 8 19:24:27 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_scripts_per_instance - wb: [420] 21 bytes
Sep 8 19:24:27 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_scripts_per_instance'>)
Sep 8 19:24:27 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_scripts_user - wb: [420] 21 bytes
Sep 8 19:24:27 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_scripts_user'>)
Sep 8 19:24:27 node2 [CLOUDINIT] util.py[DEBUG]: Running command ['/var/lib/cloud/instance/scripts/runcmd'] with allowed return codes [0] (shell=False, capture=False)
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_ssh_authkey_fingerprints - wb: [420] 21 bytes
Sep 8 19:24:36 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_ssh_authkey_fingerprints'>)
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Sep 8 19:24:36 node2 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Sep 8 19:24:36 node2 [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'
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Sep 8 19:24:36 node2 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Sep 8 19:24:36 node2 [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'
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Sep 8 19:24:36 node2 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Sep 8 19:24:36 node2 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Sep 8 19:24:36 node2 [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'
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Read 1629 bytes from /home/ubuntu/.ssh/authorized_keys
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_keys_to_console - wb: [420] 21 bytes
Sep 8 19:24:36 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_keys_to_console'>)
Sep 8 19:24:36 node2 [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)
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_phone_home - wb: [420] 21 bytes
Sep 8 19:24:36 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_phone_home'>)
Sep 8 19:24:36 node2 [CLOUDINIT] cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
Sep 8 19:24:36 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f9b5b32b290>)
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Read 11 bytes from /proc/uptime
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 finished at Thu, 08 Sep 2016 19:24:36 +0000. Datasource DataSourceMAAS [http://10.1.10.14/MAAS/metadata/]. Up 74.98 seconds
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 51 bytes
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_power_state_change - wb: [420] 21 bytes
Sep 8 19:24:36 node2 [CLOUDINIT] helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/node-a53740d0-6fb0-11e6-ba5c-000c291ae650/sem/config_power_state_change'>)
Sep 8 19:24:36 node2 [CLOUDINIT] cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
Sep 8 19:24:36 node2 [CLOUDINIT] cloud-init[DEBUG]: Ran 11 modules with 0 failures
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: Read 11 bytes from /proc/uptime
Sep 8 19:24:36 node2 [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 9.468 seconds (9.47)
|