Ubuntu Pastebin

Paste from cloud-init at Thu, 19 Feb 2015 16:39:32 +0000

Download as text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
ng 'init-local' at Thu, 19 Feb 2015 14:36:15 +0000. Up 7.39 seconds.
2015-02-19 14:36:15,578 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2015-02-19 14:36:15,578 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2015-02-19 14:36:15,578 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2015-02-19 14:36:15,578 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2015-02-19 14:36:15,578 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2015-02-19 14:36:15,579 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2015-02-19 14:36:15,579 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2015-02-19 14:36:15,579 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2015-02-19 14:36:15,610 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2015-02-19 14:36:15,610 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2015-02-19 14:36:15,610 - __init__.py[DEBUG]: Looking for for data source in: ['MAAS'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2015-02-19 14:36:15,610 - importer.py[DEBUG]: Looking for modules ['DataSourceMAAS', 'cloudinit.sources.DataSourceMAAS'] that have attributes ['get_datasource_list']
2015-02-19 14:36:15,610 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceMAAS' due to: No module named DataSourceMAAS
2015-02-19 14:36:15,658 - importer.py[DEBUG]: Found DataSourceMAAS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceMAAS']
2015-02-19 14:36:15,658 - __init__.py[DEBUG]: Searching for data source in: []
2015-02-19 14:36:15,658 - cloud-init[DEBUG]: No local datasource found
2015-02-19 14:36:15,682 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2015-02-19 14:36:15,683 - util.py[DEBUG]: Read 11 bytes from /proc/uptime
2015-02-19 14:36:15,683 - util.py[DEBUG]: cloud-init mode 'init' took 0.271 seconds (0.27)
2015-02-19 14:36:24,072 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init' at Thu, 19 Feb 2015 14:36:24 +0000. Up 16.02 seconds.
2015-02-19 14:36:24,073 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2015-02-19 14:36:24,073 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2015-02-19 14:36:24,073 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:24,077 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:24,106 - cloud-init[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2015-02-19 14:36:24,106 - util.py[DEBUG]: Reading from /var/lib/cloud/data/no-net (quiet=False)
2015-02-19 14:36:24,107 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2015-02-19 14:36:24,107 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2015-02-19 14:36:24,108 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2015-02-19 14:36:24,108 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2015-02-19 14:36:24,109 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2015-02-19 14:36:24,109 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2015-02-19 14:36:24,109 - __init__.py[DEBUG]: Looking for for data source in: ['MAAS'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2015-02-19 14:36:24,109 - importer.py[DEBUG]: Looking for modules ['DataSourceMAAS', 'cloudinit.sources.DataSourceMAAS'] that have attributes ['get_datasource_list']
2015-02-19 14:36:24,109 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceMAAS' due to: No module named DataSourceMAAS
2015-02-19 14:36:24,110 - importer.py[DEBUG]: Found DataSourceMAAS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceMAAS']
2015-02-19 14:36:24,110 - __init__.py[DEBUG]: Searching for data source in: ['DataSourceMAAS']
2015-02-19 14:36:24,111 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceMAAS.DataSourceMAAS'>
2015-02-19 14:36:24,111 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/instance-id' with {'url': 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/instance-id', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="61959794", oauth_timestamp="1424356584", oauth_consumer_key="t3CgvdhASSWHPKGE8y", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="TjBzyRqaBMDPgnVnSF", oauth_signature="%26KR9q5FLTrrhF6M8ASTYun5V5wV8ytHKQ"'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2015-02-19 14:36:24,252 - url_helper.py[DEBUG]: Read from http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/instance-id (200, 41b) after 1 attempts
2015-02-19 14:36:24,252 - DataSourceMAAS.py[DEBUG]: Using metadata source: 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/instance-id'
2015-02-19 14:36:24,252 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/local-hostname' with {'url': 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/local-hostname', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="11469359", oauth_timestamp="1424356584", oauth_consumer_key="t3CgvdhASSWHPKGE8y", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="TjBzyRqaBMDPgnVnSF", oauth_signature="%26KR9q5FLTrrhF6M8ASTYun5V5wV8ytHKQ"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2015-02-19 14:36:24,302 - url_helper.py[DEBUG]: Read from http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/local-hostname (200, 10b) after 1 attempts
2015-02-19 14:36:24,302 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/instance-id' with {'url': 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/instance-id', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="91986103", oauth_timestamp="1424356584", oauth_consumer_key="t3CgvdhASSWHPKGE8y", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="TjBzyRqaBMDPgnVnSF", oauth_signature="%26KR9q5FLTrrhF6M8ASTYun5V5wV8ytHKQ"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2015-02-19 14:36:24,344 - url_helper.py[DEBUG]: Read from http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/instance-id (200, 41b) after 1 attempts
2015-02-19 14:36:24,344 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/public-keys' with {'url': 'http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/public-keys', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="23420646", oauth_timestamp="1424356584", oauth_consumer_key="t3CgvdhASSWHPKGE8y", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="TjBzyRqaBMDPgnVnSF", oauth_signature="%26KR9q5FLTrrhF6M8ASTYun5V5wV8ytHKQ"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2015-02-19 14:36:24,393 - url_helper.py[DEBUG]: Read from http://192.168.8.90/MAAS/metadata//2012-03-01/meta-data/public-keys (200, 390b) after 1 attempts
2015-02-19 14:36:24,394 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.8.90/MAAS/metadata//2012-03-01/user-data' with {'url': 'http://192.168.8.90/MAAS/metadata//2012-03-01/user-data', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="09903438", oauth_timestamp="1424356584", oauth_consumer_key="t3CgvdhASSWHPKGE8y", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="TjBzyRqaBMDPgnVnSF", oauth_signature="%26KR9q5FLTrrhF6M8ASTYun5V5wV8ytHKQ"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2015-02-19 14:36:24,444 - url_helper.py[DEBUG]: Read from http://192.168.8.90/MAAS/metadata//2012-03-01/user-data (200, 1058b) after 1 attempts
2015-02-19 14:36:24,444 - stages.py[INFO]: Loaded datasource DataSourceMAAS - DataSourceMAAS [http://192.168.8.90/MAAS/metadata/]
2015-02-19 14:36:24,444 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2015-02-19 14:36:24,444 - util.py[DEBUG]: Read 99 bytes from /proc/cmdline
2015-02-19 14:36:24,444 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2015-02-19 14:36:24,444 - util.py[DEBUG]: Read 2895 bytes from /etc/cloud/cloud.cfg
2015-02-19 14:36:24,444 - util.py[DEBUG]: Attempting to load yaml from string of length 2895 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,454 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg (quiet=False)
2015-02-19 14:36:24,454 - util.py[DEBUG]: Read 309 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg
2015-02-19 14:36:24,454 - util.py[DEBUG]: Attempting to load yaml from string of length 309 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,455 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg (quiet=False)
2015-02-19 14:36:24,455 - util.py[DEBUG]: Read 152 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg
2015-02-19 14:36:24,455 - util.py[DEBUG]: Attempting to load yaml from string of length 152 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,456 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2015-02-19 14:36:24,456 - util.py[DEBUG]: Read 81 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2015-02-19 14:36:24,456 - util.py[DEBUG]: Attempting to load yaml from string of length 81 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,456 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2015-02-19 14:36:24,456 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2015-02-19 14:36:24,456 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,459 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,459 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,459 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,459 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,459 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,459 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,459 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,459 - __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'
2015-02-19 14:36:24,459 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,459 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,460 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,460 - __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'
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,460 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,460 - __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'
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,460 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,460 - __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'
2015-02-19 14:36:24,460 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,461 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,461 - __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'
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,461 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,461 - __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'
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,461 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,461 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,462 - __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'
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,462 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,462 - __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'
2015-02-19 14:36:24,462 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,462 - __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'
2015-02-19 14:36:24,462 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,462 - __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'
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,462 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,462 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,462 - __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'
2015-02-19 14:36:24,463 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2015-02-19 14:36:24,463 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1'
2015-02-19 14:36:24,463 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/datasource (quiet=False)
2015-02-19 14:36:24,463 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/datasource - wb: [420] 68 bytes
2015-02-19 14:36:24,463 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 68 bytes
2015-02-19 14:36:24,464 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2015-02-19 14:36:24,464 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 42 bytes
2015-02-19 14:36:24,464 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 42 bytes
2015-02-19 14:36:24,464 - cloud-init[DEBUG]: init will now be targeting instance id: node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1
2015-02-19 14:36:24,464 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2015-02-19 14:36:24,464 - util.py[DEBUG]: Read 99 bytes from /proc/cmdline
2015-02-19 14:36:24,464 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2015-02-19 14:36:24,464 - util.py[DEBUG]: Read 2895 bytes from /etc/cloud/cloud.cfg
2015-02-19 14:36:24,464 - util.py[DEBUG]: Attempting to load yaml from string of length 2895 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,473 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg (quiet=False)
2015-02-19 14:36:24,474 - util.py[DEBUG]: Read 309 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg
2015-02-19 14:36:24,474 - util.py[DEBUG]: Attempting to load yaml from string of length 309 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,475 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg (quiet=False)
2015-02-19 14:36:24,475 - util.py[DEBUG]: Read 152 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg
2015-02-19 14:36:24,475 - util.py[DEBUG]: Attempting to load yaml from string of length 152 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,475 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2015-02-19 14:36:24,475 - util.py[DEBUG]: Read 81 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2015-02-19 14:36:24,475 - util.py[DEBUG]: Attempting to load yaml from string of length 81 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,476 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2015-02-19 14:36:24,476 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2015-02-19 14:36:24,476 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,479 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,479 - __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'
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,479 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,479 - __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'
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,479 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,480 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,480 - __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'
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,480 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,480 - __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'
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,480 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,480 - __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'
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,480 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,481 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,481 - __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'
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,481 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,481 - __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'
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,481 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,481 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,481 - __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'
2015-02-19 14:36:24,481 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,481 - __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'
2015-02-19 14:36:24,482 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,482 - __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'
2015-02-19 14:36:24,482 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,482 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,482 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,482 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,482 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,482 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,482 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,482 - __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'
2015-02-19 14:36:24,483 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 9165 bytes
2015-02-19 14:36:24,483 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/user-data.txt - wb: [384] 1058 bytes
2015-02-19 14:36:24,483 - util.py[DEBUG]: Attempting to load yaml from string of length 1578 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,504 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/user-data.txt.i - wb: [384] 1920 bytes
2015-02-19 14:36:24,505 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/vendor-data.txt - wb: [384] 4 bytes
2015-02-19 14:36:24,505 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/vendor-data.txt.i - wb: [384] 345 bytes
2015-02-19 14:36:24,506 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2015-02-19 14:36:24,506 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2015-02-19 14:36:24,506 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2015-02-19 14:36:24,506 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2015-02-19 14:36:24,506 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/consume_data - wb: [420] 19 bytes
2015-02-19 14:36:24,506 - helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/consume_data'>)
2015-02-19 14:36:24,507 - stages.py[DEBUG]: Added default handler for set(['text/cloud-config-jsonp', 'text/cloud-config']) from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2015-02-19 14:36:24,507 - stages.py[DEBUG]: Added default handler for set(['text/x-shellscript']) from ShellScriptPartHandler: [['text/x-shellscript']]
2015-02-19 14:36:24,507 - stages.py[DEBUG]: Added default handler for set(['text/cloud-boothook']) from BootHookPartHandler: [['text/cloud-boothook']]
2015-02-19 14:36:24,507 - stages.py[DEBUG]: Added default handler for set(['text/upstart-job']) from UpstartJobPartHandler: [['text/upstart-job']]
2015-02-19 14:36:24,507 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2015-02-19 14:36:24,507 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2015-02-19 14:36:24,507 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2015-02-19 14:36:24,507 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2015-02-19 14:36:24,507 - __init__.py[DEBUG]: {'Content-Type': 'text/cloud-config', 'Content-Disposition': 'attachment; filename="part-001"', 'MIME-Version': '1.0'}
2015-02-19 14:36:24,507 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (text/cloud-config, part-001, 3) with frequency once-per-instance
2015-02-19 14:36:24,507 - util.py[DEBUG]: Attempting to load yaml from string of length 1578 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,510 - cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
2015-02-19 14:36:24,510 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,510 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,510 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,510 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,510 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,510 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,511 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,511 - __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'
2015-02-19 14:36:24,511 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2015-02-19 14:36:24,511 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2015-02-19 14:36:24,511 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2015-02-19 14:36:24,513 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/cloud-config.txt - wb: [384] 1635 bytes
2015-02-19 14:36:24,514 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2015-02-19 14:36:24,514 - stages.py[DEBUG]: no vendordata from datasource
2015-02-19 14:36:24,514 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2015-02-19 14:36:24,514 - util.py[DEBUG]: Read 99 bytes from /proc/cmdline
2015-02-19 14:36:24,514 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2015-02-19 14:36:24,514 - util.py[DEBUG]: Read 2895 bytes from /etc/cloud/cloud.cfg
2015-02-19 14:36:24,514 - util.py[DEBUG]: Attempting to load yaml from string of length 2895 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,523 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg (quiet=False)
2015-02-19 14:36:24,523 - util.py[DEBUG]: Read 309 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg
2015-02-19 14:36:24,523 - util.py[DEBUG]: Attempting to load yaml from string of length 309 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,524 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg (quiet=False)
2015-02-19 14:36:24,524 - util.py[DEBUG]: Read 152 bytes from /etc/cloud/cloud.cfg.d/90_dpkg_local_cloud_config.cfg
2015-02-19 14:36:24,524 - util.py[DEBUG]: Attempting to load yaml from string of length 152 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,525 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2015-02-19 14:36:24,525 - util.py[DEBUG]: Read 81 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2015-02-19 14:36:24,525 - util.py[DEBUG]: Attempting to load yaml from string of length 81 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,525 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2015-02-19 14:36:24,525 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2015-02-19 14:36:24,525 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,528 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,528 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,528 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,528 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,528 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,528 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,529 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,529 - __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'
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,529 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,529 - __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'
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,529 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,529 - __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'
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,529 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,530 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,530 - __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'
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,530 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,530 - __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'
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,530 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,530 - __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'
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,530 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,531 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,531 - __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'
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,531 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,531 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,531 - __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'
2015-02-19 14:36:24,531 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,531 - __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'
2015-02-19 14:36:24,531 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,531 - __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'
2015-02-19 14:36:24,531 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2015-02-19 14:36:24,531 - util.py[DEBUG]: Read 1635 bytes from /var/lib/cloud/instance/cloud-config.txt
2015-02-19 14:36:24,531 - util.py[DEBUG]: Attempting to load yaml from string of length 1635 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,534 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,534 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,534 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,534 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,535 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,535 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,535 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,535 - __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'
2015-02-19 14:36:24,535 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,535 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,535 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,535 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,535 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,535 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,535 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,535 - __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'
2015-02-19 14:36:24,535 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,535 - __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'
2015-02-19 14:36:24,536 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2015-02-19 14:36:24,536 - util.py[DEBUG]: Read 1635 bytes from /var/lib/cloud/instance/cloud-config.txt
2015-02-19 14:36:24,536 - util.py[DEBUG]: Attempting to load yaml from string of length 1635 with allowed root types (<type 'dict'>,)
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,539 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,539 - __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'
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,539 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,539 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,539 - __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'
2015-02-19 14:36:24,539 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,539 - __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'
2015-02-19 14:36:24,541 - importer.py[DEBUG]: Looking for modules ['cc_migrator', 'cloudinit.config.cc_migrator'] that have attributes ['handle']
2015-02-19 14:36:24,542 - importer.py[DEBUG]: Failed at attempted import of 'cc_migrator' due to: No module named cc_migrator
2015-02-19 14:36:24,569 - importer.py[DEBUG]: Found cc_migrator with attributes ['handle'] in ['cloudinit.config.cc_migrator']
2015-02-19 14:36:24,569 - importer.py[DEBUG]: Looking for modules ['cc_seed_random', 'cloudinit.config.cc_seed_random'] that have attributes ['handle']
2015-02-19 14:36:24,569 - importer.py[DEBUG]: Failed at attempted import of 'cc_seed_random' due to: No module named cc_seed_random
2015-02-19 14:36:24,574 - importer.py[DEBUG]: Found cc_seed_random with attributes ['handle'] in ['cloudinit.config.cc_seed_random']
2015-02-19 14:36:24,574 - importer.py[DEBUG]: Looking for modules ['cc_bootcmd', 'cloudinit.config.cc_bootcmd'] that have attributes ['handle']
2015-02-19 14:36:24,574 - importer.py[DEBUG]: Failed at attempted import of 'cc_bootcmd' due to: No module named cc_bootcmd
2015-02-19 14:36:24,579 - importer.py[DEBUG]: Found cc_bootcmd with attributes ['handle'] in ['cloudinit.config.cc_bootcmd']
2015-02-19 14:36:24,579 - importer.py[DEBUG]: Looking for modules ['cc_write_files', 'cloudinit.config.cc_write_files'] that have attributes ['handle']
2015-02-19 14:36:24,579 - importer.py[DEBUG]: Failed at attempted import of 'cc_write_files' due to: No module named cc_write_files
2015-02-19 14:36:24,579 - importer.py[DEBUG]: Found cc_write_files with attributes ['handle'] in ['cloudinit.config.cc_write_files']
2015-02-19 14:36:24,580 - importer.py[DEBUG]: Looking for modules ['cc_growpart', 'cloudinit.config.cc_growpart'] that have attributes ['handle']
2015-02-19 14:36:24,580 - importer.py[DEBUG]: Failed at attempted import of 'cc_growpart' due to: No module named cc_growpart
2015-02-19 14:36:24,581 - importer.py[DEBUG]: Found cc_growpart with attributes ['handle'] in ['cloudinit.config.cc_growpart']
2015-02-19 14:36:24,581 - importer.py[DEBUG]: Looking for modules ['cc_resizefs', 'cloudinit.config.cc_resizefs'] that have attributes ['handle']
2015-02-19 14:36:24,581 - importer.py[DEBUG]: Failed at attempted import of 'cc_resizefs' due to: No module named cc_resizefs
2015-02-19 14:36:24,582 - importer.py[DEBUG]: Found cc_resizefs with attributes ['handle'] in ['cloudinit.config.cc_resizefs']
2015-02-19 14:36:24,582 - importer.py[DEBUG]: Looking for modules ['cc_set_hostname', 'cloudinit.config.cc_set_hostname'] that have attributes ['handle']
2015-02-19 14:36:24,582 - importer.py[DEBUG]: Failed at attempted import of 'cc_set_hostname' due to: No module named cc_set_hostname
2015-02-19 14:36:24,583 - importer.py[DEBUG]: Found cc_set_hostname with attributes ['handle'] in ['cloudinit.config.cc_set_hostname']
2015-02-19 14:36:24,583 - importer.py[DEBUG]: Looking for modules ['cc_update_hostname', 'cloudinit.config.cc_update_hostname'] that have attributes ['handle']
2015-02-19 14:36:24,583 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_hostname' due to: No module named cc_update_hostname
2015-02-19 14:36:24,588 - importer.py[DEBUG]: Found cc_update_hostname with attributes ['handle'] in ['cloudinit.config.cc_update_hostname']
2015-02-19 14:36:24,589 - importer.py[DEBUG]: Looking for modules ['cc_update_etc_hosts', 'cloudinit.config.cc_update_etc_hosts'] that have attributes ['handle']
2015-02-19 14:36:24,589 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_etc_hosts' due to: No module named cc_update_etc_hosts
2015-02-19 14:36:24,589 - importer.py[DEBUG]: Found cc_update_etc_hosts with attributes ['handle'] in ['cloudinit.config.cc_update_etc_hosts']
2015-02-19 14:36:24,589 - importer.py[DEBUG]: Looking for modules ['cc_ca_certs', 'cloudinit.config.cc_ca_certs'] that have attributes ['handle']
2015-02-19 14:36:24,589 - importer.py[DEBUG]: Failed at attempted import of 'cc_ca_certs' due to: No module named cc_ca_certs
2015-02-19 14:36:24,590 - importer.py[DEBUG]: Found cc_ca_certs with attributes ['handle'] in ['cloudinit.config.cc_ca_certs']
2015-02-19 14:36:24,590 - importer.py[DEBUG]: Looking for modules ['cc_rsyslog', 'cloudinit.config.cc_rsyslog'] that have attributes ['handle']
2015-02-19 14:36:24,590 - importer.py[DEBUG]: Failed at attempted import of 'cc_rsyslog' due to: No module named cc_rsyslog
2015-02-19 14:36:24,590 - importer.py[DEBUG]: Found cc_rsyslog with attributes ['handle'] in ['cloudinit.config.cc_rsyslog']
2015-02-19 14:36:24,590 - importer.py[DEBUG]: Looking for modules ['cc_users_groups', 'cloudinit.config.cc_users_groups'] that have attributes ['handle']
2015-02-19 14:36:24,590 - importer.py[DEBUG]: Failed at attempted import of 'cc_users_groups' due to: No module named cc_users_groups
2015-02-19 14:36:24,591 - importer.py[DEBUG]: Found cc_users_groups with attributes ['handle'] in ['cloudinit.config.cc_users_groups']
2015-02-19 14:36:24,591 - importer.py[DEBUG]: Looking for modules ['cc_ssh', 'cloudinit.config.cc_ssh'] that have attributes ['handle']
2015-02-19 14:36:24,591 - importer.py[DEBUG]: Failed at attempted import of 'cc_ssh' due to: No module named cc_ssh
2015-02-19 14:36:24,591 - importer.py[DEBUG]: Found cc_ssh with attributes ['handle'] in ['cloudinit.config.cc_ssh']
2015-02-19 14:36:24,591 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2015-02-19 14:36:24,591 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2015-02-19 14:36:24,591 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2015-02-19 14:36:24,592 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2015-02-19 14:36:24,592 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7f227aebdad0>)
2015-02-19 14:36:24,592 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2015-02-19 14:36:24,593 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_seed_random - wb: [420] 19 bytes
2015-02-19 14:36:24,593 - helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_seed_random'>)
2015-02-19 14:36:24,593 - cc_seed_random.py[DEBUG]: command 'pollinate' not found for seed_command
2015-02-19 14:36:24,593 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7f227aebd910>)
2015-02-19 14:36:24,593 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2015-02-19 14:36:24,593 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_write_files - wb: [420] 19 bytes
2015-02-19 14:36:24,594 - helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_write_files'>)
2015-02-19 14:36:24,594 - cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
2015-02-19 14:36:24,594 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7f227aebd0d0>)
2015-02-19 14:36:24,594 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg.  Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
2015-02-19 14:36:24,594 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:24,607 - util.py[DEBUG]: Reading from /proc/726/mountinfo (quiet=False)
2015-02-19 14:36:24,607 - util.py[DEBUG]: Read 1083 bytes from /proc/726/mountinfo
2015-02-19 14:36:24,607 - util.py[DEBUG]: Reading from /sys/class/block/sda1/partition (quiet=False)
2015-02-19 14:36:24,607 - util.py[DEBUG]: Read 2 bytes from /sys/class/block/sda1/partition
2015-02-19 14:36:24,607 - util.py[DEBUG]: Reading from /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sda/dev (quiet=False)
2015-02-19 14:36:24,607 - util.py[DEBUG]: Read 4 bytes from /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sda/dev
2015-02-19 14:36:24,607 - util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/sda', '1'] with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:24,726 - util.py[DEBUG]: resize_devices took 0.120 seconds
2015-02-19 14:36:24,726 - cc_growpart.py[DEBUG]: '/' NOCHANGE: no change necessary (/dev/sda, 1)
2015-02-19 14:36:24,727 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7f227aebd910>)
2015-02-19 14:36:24,727 - util.py[DEBUG]: Reading from /proc/726/mountinfo (quiet=False)
2015-02-19 14:36:24,727 - util.py[DEBUG]: Read 1083 bytes from /proc/726/mountinfo
2015-02-19 14:36:24,727 - cc_resizefs.py[DEBUG]: resize_info: dev=/dev/disk/by-uuid/6f56bba1-dc2e-4c76-af9e-2eed0aa26102 mnt_point=/ path=/
2015-02-19 14:36:24,727 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:24,766 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:24,829 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2015-02-19 14:36:24,830 - util.py[DEBUG]: Read 142 bytes from /proc/1/environ
2015-02-19 14:36:24,830 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2015-02-19 14:36:24,830 - util.py[DEBUG]: Read 775 bytes from /proc/self/status
2015-02-19 14:36:24,830 - cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/disk/by-uuid/6f56bba1-dc2e-4c76-af9e-2eed0aa26102
2015-02-19 14:36:24,830 - util.py[DEBUG]: Running command ('resize2fs', '/dev/disk/by-uuid/6f56bba1-dc2e-4c76-af9e-2eed0aa26102') with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:24,863 - util.py[DEBUG]: Resizing took 0.033 seconds
2015-02-19 14:36:24,863 - cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
2015-02-19 14:36:24,864 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_set_hostname - wb: [420] 19 bytes
2015-02-19 14:36:24,864 - helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_set_hostname'>)
2015-02-19 14:36:24,864 - cc_set_hostname.py[DEBUG]: Setting the hostname to Test3.maas (Test3)
2015-02-19 14:36:24,864 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2015-02-19 14:36:24,864 - util.py[DEBUG]: Read 13 bytes from /etc/hostname
2015-02-19 14:36:24,864 - util.py[DEBUG]: Writing to /etc/hostname - wb: [420] 6 bytes
2015-02-19 14:36:24,864 - __init__.py[DEBUG]: Non-persistently setting the system hostname to Test3
2015-02-19 14:36:24,865 - util.py[DEBUG]: Running command ['hostname', 'Test3'] with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:24,866 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7f227aecf490>)
2015-02-19 14:36:24,867 - cc_update_hostname.py[DEBUG]: Updating hostname to Test3.maas (Test3)
2015-02-19 14:36:24,867 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2015-02-19 14:36:24,867 - util.py[DEBUG]: Read 6 bytes from /etc/hostname
2015-02-19 14:36:24,867 - __init__.py[DEBUG]: Attempting to update hostname to Test3 in 1 files
2015-02-19 14:36:24,867 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2015-02-19 14:36:24,867 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [420] 6 bytes
2015-02-19 14:36:24,867 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7f227aecf510>)
2015-02-19 14:36:24,867 - cc_update_etc_hosts.py[DEBUG]: Managing localhost in /etc/hosts
2015-02-19 14:36:24,867 - util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
2015-02-19 14:36:24,868 - util.py[DEBUG]: Read 210 bytes from /etc/hosts
2015-02-19 14:36:24,868 - util.py[DEBUG]: Writing to /etc/hosts - wb: [420] 234 bytes
2015-02-19 14:36:24,868 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_ca_certs - wb: [420] 19 bytes
2015-02-19 14:36:24,868 - helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_ca_certs'>)
2015-02-19 14:36:24,868 - cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
2015-02-19 14:36:24,869 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_rsyslog - wb: [420] 19 bytes
2015-02-19 14:36:24,869 - helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_rsyslog'>)
2015-02-19 14:36:24,869 - cc_rsyslog.py[DEBUG]: Skipping module named rsyslog, no 'rsyslog' key in configuration
2015-02-19 14:36:24,869 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_users_groups - wb: [420] 19 bytes
2015-02-19 14:36:24,869 - helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_users_groups'>)
2015-02-19 14:36:24,869 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,869 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,869 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,869 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,870 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,870 - __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'
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,870 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,870 - __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'
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:24,870 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:24,870 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:24,870 - __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'
2015-02-19 14:36:24,871 - __init__.py[INFO]: User ubuntu already exists, skipping.
2015-02-19 14:36:24,871 - util.py[DEBUG]: Running command ['passwd', '-l', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
2015-02-19 14:36:25,143 - util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
2015-02-19 14:36:25,157 - util.py[DEBUG]: Read 745 bytes from /etc/sudoers
2015-02-19 14:36:25,171 - util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - wb: [288] 123 bytes
2015-02-19 14:36:25,172 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_ssh - wb: [420] 19 bytes
2015-02-19 14:36:25,172 - helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_ssh'>)
2015-02-19 14:36:25,173 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ecdsa_key.pub
2015-02-19 14:36:25,173 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ed25519_key.pub
2015-02-19 14:36:25,173 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_rsa_key
2015-02-19 14:36:25,173 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_dsa_key
2015-02-19 14:36:25,173 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_rsa_key.pub
2015-02-19 14:36:25,173 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ed25519_key
2015-02-19 14:36:25,173 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_dsa_key.pub
2015-02-19 14:36:25,173 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ecdsa_key
2015-02-19 14:36:25,173 - 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=False)
2015-02-19 14:36:25,278 - 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=False)
2015-02-19 14:36:25,316 - 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=False)
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:25,324 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:25,324 - __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'
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:25,324 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:25,324 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:25,325 - __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'
2015-02-19 14:36:25,325 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-02-19 14:36:25,325 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-02-19 14:36:25,325 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-02-19 14:36:25,325 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-02-19 14:36:25,325 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-02-19 14:36:25,325 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-02-19 14:36:25,325 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-02-19 14:36:25,325 - __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'
2015-02-19 14:36:25,341 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh to 1000:1000
2015-02-19 14:36:25,341 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2015-02-19 14:36:25,351 - util.py[DEBUG]: Read 2541 bytes from /etc/ssh/sshd_config
2015-02-19 14:36:25,352 - util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [384] 1189 bytes
2015-02-19 14:36:25,352 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1000:1000
2015-02-19 14:36:25,361 - util.py[DEBUG]: Changing the ownership of /root/.ssh to 0:0
2015-02-19 14:36:25,361 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2015-02-19 14:36:25,361 - util.py[DEBUG]: Read 2541 bytes from /etc/ssh/sshd_config
2015-02-19 14:36:25,361 - util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [384] 1654 bytes
2015-02-19 14:36:25,361 - util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
2015-02-19 14:36:25,362 - cloud-init[DEBUG]: Ran 13 modules with 0 failures
2015-02-19 14:36:25,362 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2015-02-19 14:36:25,362 - util.py[DEBUG]: Read 12 bytes from /proc/uptime
2015-02-19 14:36:25,362 - util.py[DEBUG]: cloud-init mode 'init' took 1.319 seconds (1.32)
Feb 19 14:36:26 Test3 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:config' at Thu, 19 Feb 2015 14:36:26 +0000. Up 18.07 seconds.
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_emit_upstart', 'cloudinit.config.cc_emit_upstart'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_emit_upstart' due to: No module named cc_emit_upstart
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_emit_upstart with attributes ['handle'] in ['cloudinit.config.cc_emit_upstart']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_disk_setup', 'cloudinit.config.cc_disk_setup'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_disk_setup' due to: No module named cc_disk_setup
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_disk_setup with attributes ['handle'] in ['cloudinit.config.cc_disk_setup']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_mounts', 'cloudinit.config.cc_mounts'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_mounts' due to: No module named cc_mounts
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_mounts with attributes ['handle'] in ['cloudinit.config.cc_mounts']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_ssh_import_id', 'cloudinit.config.cc_ssh_import_id'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_import_id' due to: No module named cc_ssh_import_id
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_ssh_import_id with attributes ['handle'] in ['cloudinit.config.cc_ssh_import_id']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_locale', 'cloudinit.config.cc_locale'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_locale' due to: No module named cc_locale
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_locale with attributes ['handle'] in ['cloudinit.config.cc_locale']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_set_passwords', 'cloudinit.config.cc_set_passwords'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_set_passwords' due to: No module named cc_set_passwords
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_set_passwords with attributes ['handle'] in ['cloudinit.config.cc_set_passwords']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_grub_dpkg', 'cloudinit.config.cc_grub_dpkg'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_grub_dpkg' due to: No module named cc_grub_dpkg
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_grub_dpkg with attributes ['handle'] in ['cloudinit.config.cc_grub_dpkg']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_pipelining', 'cloudinit.config.cc_apt_pipelining'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_pipelining' due to: No module named cc_apt_pipelining
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_pipelining with attributes ['handle'] in ['cloudinit.config.cc_apt_pipelining']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_configure', 'cloudinit.config.cc_apt_configure'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_configure' due to: No module named cc_apt_configure
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_configure with attributes ['handle'] in ['cloudinit.config.cc_apt_configure']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_package_update_upgrade_install', 'cloudinit.config.cc_package_update_upgrade_install'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_package_update_upgrade_install' due to: No module named cc_package_update_upgrade_install
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_package_update_upgrade_install with attributes ['handle'] in ['cloudinit.config.cc_package_update_upgrade_install']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_landscape', 'cloudinit.config.cc_landscape'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_landscape' due to: No module named cc_landscape
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_landscape with attributes ['handle'] in ['cloudinit.config.cc_landscape']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_timezone', 'cloudinit.config.cc_timezone'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_timezone' due to: No module named cc_timezone
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_timezone with attributes ['handle'] in ['cloudinit.config.cc_timezone']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_puppet', 'cloudinit.config.cc_puppet'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_puppet' due to: No module named cc_puppet
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_puppet with attributes ['handle'] in ['cloudinit.config.cc_puppet']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_chef', 'cloudinit.config.cc_chef'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_chef' due to: No module named cc_chef
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_chef with attributes ['handle'] in ['cloudinit.config.cc_chef']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_salt_minion', 'cloudinit.config.cc_salt_minion'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_salt_minion' due to: No module named cc_salt_minion
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_salt_minion with attributes ['handle'] in ['cloudinit.config.cc_salt_minion']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_mcollective', 'cloudinit.config.cc_mcollective'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_mcollective' due to: No module named cc_mcollective
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_mcollective with attributes ['handle'] in ['cloudinit.config.cc_mcollective']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_disable_ec2_metadata', 'cloudinit.config.cc_disable_ec2_metadata'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_disable_ec2_metadata' due to: No module named cc_disable_ec2_metadata
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_disable_ec2_metadata with attributes ['handle'] in ['cloudinit.config.cc_disable_ec2_metadata']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_runcmd', 'cloudinit.config.cc_runcmd'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_runcmd' due to: No module named cc_runcmd
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_runcmd with attributes ['handle'] in ['cloudinit.config.cc_runcmd']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_byobu', 'cloudinit.config.cc_byobu'] that have attributes ['handle']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_byobu' due to: No module named cc_byobu
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_byobu with attributes ['handle'] in ['cloudinit.config.cc_byobu']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
Feb 19 14:36:26 Test3 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Feb 19 14:36:26 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7fadd11d1ed0>)
Feb 19 14:36:26 Test3 [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)
Feb 19 14:36:26 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_disk_setup - wb: [420] 19 bytes
Feb 19 14:36:26 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-disk_setup using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_disk_setup'>)
Feb 19 14:36:26 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_mounts - wb: [420] 19 bytes
Feb 19 14:36:26 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-mounts using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_mounts'>)
Feb 19 14:36:26 Test3 [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of ephemeral0
Feb 19 14:36:26 Test3 [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount ephemeral0
Feb 19 14:36:26 Test3 [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of swap
Feb 19 14:36:26 Test3 [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount swap
Feb 19 14:36:26 Test3 [CLOUDINIT] cc_mounts.py[DEBUG]: No modifications to fstab needed.
Feb 19 14:36:26 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_ssh_import_id - wb: [420] 19 bytes
Feb 19 14:36:26 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_ssh_import_id'>)
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Feb 19 14:36:26 Test3 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Feb 19 14:36:26 Test3 [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'
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Feb 19 14:36:26 Test3 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Feb 19 14:36:26 Test3 [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'
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Feb 19 14:36:26 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Feb 19 14:36:26 Test3 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Feb 19 14:36:26 Test3 [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'
Feb 19 14:36:26 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_locale - wb: [420] 19 bytes
Feb 19 14:36:26 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_locale'>)
Feb 19 14:36:26 Test3 [CLOUDINIT] cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
Feb 19 14:36:26 Test3 [CLOUDINIT] util.py[DEBUG]: Running command ['locale-gen', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Feb 19 14:36:27 Test3 [CLOUDINIT] util.py[DEBUG]: Running command ['update-locale', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Feb 19 14:36:27 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/default/locale - wb: [420] 87 bytes
Feb 19 14:36:27 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_set_passwords - wb: [420] 19 bytes
Feb 19 14:36:27 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_set_passwords'>)
Feb 19 14:36:27 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_grub_dpkg - wb: [420] 19 bytes
Feb 19 14:36:27 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_grub_dpkg'>)
Feb 19 14:36:27 Test3 [CLOUDINIT] cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/sda','false'
Feb 19 14:36:27 Test3 [CLOUDINIT] util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
Feb 19 14:36:28 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_apt_pipelining - wb: [420] 19 bytes
Feb 19 14:36:28 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_apt_pipelining'>)
Feb 19 14:36:28 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [420] 80 bytes
Feb 19 14:36:28 Test3 [CLOUDINIT] cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
Feb 19 14:36:28 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_apt_configure - wb: [420] 19 bytes
Feb 19 14:36:28 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_apt_configure'>)
Feb 19 14:36:28 Test3 [CLOUDINIT] util.py[DEBUG]: Running command ['lsb_release', '-cs'] with allowed return codes [0] (shell=False, capture=True)
Feb 19 14:36:28 Test3 [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Feb 19 14:36:28 Test3 [CLOUDINIT] __init__.py[DEBUG]: filtered distro mirror info: {'security': 'http://security.ubuntu.com/ubuntu', 'primary': 'http://archive.ubuntu.com/ubuntu'}
Feb 19 14:36:28 Test3 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Mirror info: {'security': 'http://security.ubuntu.com/ubuntu', 'primary': 'http://archive.ubuntu.com/ubuntu', 'mirror': 'http://archive.ubuntu.com/ubuntu'}
Feb 19 14:36:28 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_package_update_upgrade_install - wb: [420] 19 bytes
Feb 19 14:36:28 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_package_update_upgrade_install'>)
Feb 19 14:36:28 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/update_sources - wb: [420] 19 bytes
Feb 19 14:36:28 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running update-sources using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/update_sources'>)
Feb 19 14:36:28 Test3 [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)
Feb 19 14:36:47 Test3 [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 18.520 seconds
Feb 19 14:36:47 Test3 [CLOUDINIT] helpers.py[DEBUG]: update-sources already ran (freq=once-per-instance)
Feb 19 14:36:47 Test3 [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'] with allowed return codes [0] (shell=False, capture=False)
Feb 19 14:36:50 Test3 [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] took 3.304 seconds
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_landscape - wb: [420] 19 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_landscape'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_timezone - wb: [420] 19 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_timezone'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_puppet - wb: [420] 19 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_puppet'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_chef - wb: [420] 19 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_chef'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_salt_minion - wb: [420] 19 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_salt_minion'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_mcollective - wb: [420] 19 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_mcollective'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7fadd11ca690>)
Feb 19 14:36:50 Test3 [CLOUDINIT] cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_runcmd - wb: [420] 19 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_runcmd'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Shellified 8 commands.
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/scripts/runcmd - wb: [448] 581 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_byobu - wb: [420] 19 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_byobu'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
Feb 19 14:36:50 Test3 [CLOUDINIT] cloud-init[DEBUG]: Ran 19 modules with 0 failures
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Read 13 bytes from /proc/uptime
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 24.261 seconds (24.26)
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:final' at Thu, 19 Feb 2015 14:36:50 +0000. Up 42.45 seconds.
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_rightscale_userdata', 'cloudinit.config.cc_rightscale_userdata'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_rightscale_userdata' due to: No module named cc_rightscale_userdata
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_rightscale_userdata with attributes ['handle'] in ['cloudinit.config.cc_rightscale_userdata']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_vendor', 'cloudinit.config.cc_scripts_vendor'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_vendor' due to: No module named cc_scripts_vendor
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_vendor with attributes ['handle'] in ['cloudinit.config.cc_scripts_vendor']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_once', 'cloudinit.config.cc_scripts_per_once'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_once' due to: No module named cc_scripts_per_once
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_once with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_once']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_boot', 'cloudinit.config.cc_scripts_per_boot'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_boot' due to: No module named cc_scripts_per_boot
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_boot with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_boot']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_instance', 'cloudinit.config.cc_scripts_per_instance'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_instance' due to: No module named cc_scripts_per_instance
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_instance with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_instance']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_user', 'cloudinit.config.cc_scripts_user'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_user' due to: No module named cc_scripts_user
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_user with attributes ['handle'] in ['cloudinit.config.cc_scripts_user']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_ssh_authkey_fingerprints', 'cloudinit.config.cc_ssh_authkey_fingerprints'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_authkey_fingerprints' due to: No module named cc_ssh_authkey_fingerprints
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_ssh_authkey_fingerprints with attributes ['handle'] in ['cloudinit.config.cc_ssh_authkey_fingerprints']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_keys_to_console', 'cloudinit.config.cc_keys_to_console'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_keys_to_console' due to: No module named cc_keys_to_console
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_keys_to_console with attributes ['handle'] in ['cloudinit.config.cc_keys_to_console']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_phone_home', 'cloudinit.config.cc_phone_home'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_phone_home' due to: No module named cc_phone_home
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_phone_home with attributes ['handle'] in ['cloudinit.config.cc_phone_home']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_final_message', 'cloudinit.config.cc_final_message'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_final_message' due to: No module named cc_final_message
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_final_message with attributes ['handle'] in ['cloudinit.config.cc_final_message']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_power_state_change', 'cloudinit.config.cc_power_state_change'] that have attributes ['handle']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_power_state_change' due to: No module named cc_power_state_change
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found cc_power_state_change with attributes ['handle'] in ['cloudinit.config.cc_power_state_change']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
Feb 19 14:36:50 Test3 [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
Feb 19 14:36:50 Test3 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_rightscale_userdata - wb: [420] 20 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_rightscale_userdata'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_scripts_vendor - wb: [420] 20 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_scripts_vendor'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [420] 20 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f972670f150>)
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_scripts_per_instance - wb: [420] 20 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_scripts_per_instance'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_scripts_user - wb: [420] 20 bytes
Feb 19 14:36:50 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_scripts_user'>)
Feb 19 14:36:50 Test3 [CLOUDINIT] util.py[DEBUG]: Running command ['/var/lib/cloud/instance/scripts/runcmd'] with allowed return codes [0] (shell=False, capture=False)
Feb 19 14:41:51 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_ssh_authkey_fingerprints - wb: [420] 19 bytes
Feb 19 14:41:51 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_ssh_authkey_fingerprints'>)
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Feb 19 14:41:51 Test3 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Feb 19 14:41:51 Test3 [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'
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Feb 19 14:41:51 Test3 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Feb 19 14:41:51 Test3 [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'
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Feb 19 14:41:51 Test3 [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Feb 19 14:41:51 Test3 [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Feb 19 14:41:51 Test3 [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'
Feb 19 14:41:51 Test3 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
Feb 19 14:41:51 Test3 [CLOUDINIT] util.py[DEBUG]: Read 2541 bytes from /etc/ssh/sshd_config
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Read 1189 bytes from /home/ubuntu/.ssh/authorized_keys
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_keys_to_console - wb: [420] 20 bytes
Feb 19 14:41:52 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_keys_to_console'>)
Feb 19 14:41:52 Test3 [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)
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_phone_home - wb: [420] 20 bytes
Feb 19 14:41:52 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_phone_home'>)
Feb 19 14:41:52 Test3 [CLOUDINIT] cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
Feb 19 14:41:52 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f97266c1d90>)
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /proc/uptime
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 finished at Thu, 19 Feb 2015 14:41:52 +0000. Datasource DataSourceMAAS [http://192.168.8.90/MAAS/metadata/].  Up 344.04 seconds
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 52 bytes
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_power_state_change - wb: [420] 20 bytes
Feb 19 14:41:52 Test3 [CLOUDINIT] helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/node-7a02d2a2-b2d4-11e4-bd06-7054d245f6b1/sem/config_power_state_change'>)
Feb 19 14:41:52 Test3 [CLOUDINIT] cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
Feb 19 14:41:52 Test3 [CLOUDINIT] cloud-init[DEBUG]: Ran 11 modules with 0 failures
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /proc/uptime
Feb 19 14:41:52 Test3 [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 301.602 seconds (301.60)
Download as text