Ubuntu Pastebin

Paste from ubuntu at Tue, 27 Oct 2015 16:49:50 +0000

Download as text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
2015-10-27 16:47:24,242 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init-local' at Tue, 27 Oct 2015 16:47:24 +0000. Up 19.26 seconds.
2015-10-27 16:47:24,248 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2015-10-27 16:47:24,249 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2015-10-27 16:47:24,249 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2015-10-27 16:47:24,249 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2015-10-27 16:47:24,250 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2015-10-27 16:47:24,250 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2015-10-27 16:47:24,252 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2015-10-27 16:47:24,253 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2015-10-27 16:47:24,257 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2015-10-27 16:47:24,257 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2015-10-27 16:47:24,257 - __init__.py[DEBUG]: Looking for for data source in: ['NoCloud', 'ConfigDrive', 'OpenNebula', 'Azure', 'AltCloud', 'OVF', 'MAAS', 'GCE', 'OpenStack', 'CloudSigma', 'Ec2', 'CloudStack', 'SmartOS', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2015-10-27 16:47:24,257 - importer.py[DEBUG]: Looking for modules ['DataSourceNoCloud', 'cloudinit.sources.DataSourceNoCloud'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,258 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceNoCloud' due to: No module named DataSourceNoCloud
2015-10-27 16:47:24,260 - importer.py[DEBUG]: Found DataSourceNoCloud with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceNoCloud']
2015-10-27 16:47:24,260 - importer.py[DEBUG]: Looking for modules ['DataSourceConfigDrive', 'cloudinit.sources.DataSourceConfigDrive'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,260 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceConfigDrive' due to: No module named DataSourceConfigDrive
2015-10-27 16:47:24,267 - importer.py[DEBUG]: Found DataSourceConfigDrive with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceConfigDrive']
2015-10-27 16:47:24,267 - importer.py[DEBUG]: Looking for modules ['DataSourceOpenNebula', 'cloudinit.sources.DataSourceOpenNebula'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,268 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceOpenNebula' due to: No module named DataSourceOpenNebula
2015-10-27 16:47:24,271 - importer.py[DEBUG]: Found DataSourceOpenNebula with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceOpenNebula']
2015-10-27 16:47:24,272 - importer.py[DEBUG]: Looking for modules ['DataSourceAzure', 'cloudinit.sources.DataSourceAzure'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,272 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceAzure' due to: No module named DataSourceAzure
2015-10-27 16:47:24,303 - importer.py[DEBUG]: Found DataSourceAzure with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceAzure']
2015-10-27 16:47:24,304 - importer.py[DEBUG]: Looking for modules ['DataSourceAltCloud', 'cloudinit.sources.DataSourceAltCloud'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,304 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceAltCloud' due to: No module named DataSourceAltCloud
2015-10-27 16:47:24,306 - importer.py[DEBUG]: Found DataSourceAltCloud with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceAltCloud']
2015-10-27 16:47:24,306 - importer.py[DEBUG]: Looking for modules ['DataSourceOVF', 'cloudinit.sources.DataSourceOVF'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,307 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceOVF' due to: No module named DataSourceOVF
2015-10-27 16:47:24,309 - importer.py[DEBUG]: Found DataSourceOVF with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceOVF']
2015-10-27 16:47:24,309 - importer.py[DEBUG]: Looking for modules ['DataSourceMAAS', 'cloudinit.sources.DataSourceMAAS'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,309 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceMAAS' due to: No module named DataSourceMAAS
2015-10-27 16:47:24,318 - importer.py[DEBUG]: Found DataSourceMAAS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceMAAS']
2015-10-27 16:47:24,319 - importer.py[DEBUG]: Looking for modules ['DataSourceGCE', 'cloudinit.sources.DataSourceGCE'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,319 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceGCE' due to: No module named DataSourceGCE
2015-10-27 16:47:24,321 - importer.py[DEBUG]: Found DataSourceGCE with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceGCE']
2015-10-27 16:47:24,321 - importer.py[DEBUG]: Looking for modules ['DataSourceOpenStack', 'cloudinit.sources.DataSourceOpenStack'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,322 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceOpenStack' due to: No module named DataSourceOpenStack
2015-10-27 16:47:24,324 - importer.py[DEBUG]: Found DataSourceOpenStack with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceOpenStack']
2015-10-27 16:47:24,324 - importer.py[DEBUG]: Looking for modules ['DataSourceCloudSigma', 'cloudinit.sources.DataSourceCloudSigma'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,324 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceCloudSigma' due to: No module named DataSourceCloudSigma
2015-10-27 16:47:24,340 - importer.py[DEBUG]: Found DataSourceCloudSigma with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceCloudSigma']
2015-10-27 16:47:24,340 - importer.py[DEBUG]: Looking for modules ['DataSourceEc2', 'cloudinit.sources.DataSourceEc2'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,340 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceEc2' due to: No module named DataSourceEc2
2015-10-27 16:47:24,342 - importer.py[DEBUG]: Found DataSourceEc2 with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceEc2']
2015-10-27 16:47:24,342 - importer.py[DEBUG]: Looking for modules ['DataSourceCloudStack', 'cloudinit.sources.DataSourceCloudStack'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,343 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceCloudStack' due to: No module named DataSourceCloudStack
2015-10-27 16:47:24,346 - importer.py[DEBUG]: Found DataSourceCloudStack with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceCloudStack']
2015-10-27 16:47:24,346 - importer.py[DEBUG]: Looking for modules ['DataSourceSmartOS', 'cloudinit.sources.DataSourceSmartOS'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,346 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceSmartOS' due to: No module named DataSourceSmartOS
2015-10-27 16:47:24,348 - importer.py[DEBUG]: Found DataSourceSmartOS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceSmartOS']
2015-10-27 16:47:24,348 - importer.py[DEBUG]: Looking for modules ['DataSourceNone', 'cloudinit.sources.DataSourceNone'] that have attributes ['get_datasource_list']
2015-10-27 16:47:24,349 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceNone' due to: No module named DataSourceNone
2015-10-27 16:47:24,350 - importer.py[DEBUG]: Found DataSourceNone with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceNone']
2015-10-27 16:47:24,351 - __init__.py[DEBUG]: Searching for data source in: ['DataSourceNoCloud', 'DataSourceConfigDrive', 'DataSourceOpenNebula', 'DataSourceOVF']
2015-10-27 16:47:24,351 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloud'>
2015-10-27 16:47:24,351 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2015-10-27 16:47:24,351 - util.py[DEBUG]: Read 655 bytes from /proc/cmdline
2015-10-27 16:47:24,352 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
2015-10-27 16:47:24,352 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
2015-10-27 16:47:24,352 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
2015-10-27 16:47:24,352 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,359 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,364 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,378 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,382 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,387 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceConfigDrive.DataSourceConfigDrive'>
2015-10-27 16:47:24,387 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,392 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,396 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,401 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,405 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=config-2', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,410 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOpenNebula.DataSourceOpenNebula'>
2015-10-27 16:47:24,410 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=CONTEXT', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,415 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=CDROM', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,420 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:24,424 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOVF.DataSourceOVF'>
2015-10-27 16:47:24,426 - util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
2015-10-27 16:47:24,426 - util.py[DEBUG]: Read 1126 bytes from /proc/mounts
2015-10-27 16:47:24,427 - util.py[DEBUG]: Fetched {'none': {'mountpoint': '/sys/fs/pstore', 'opts': 'rw,relatime', 'fstype': 'pstore'}, 'devpts': {'mountpoint': '/dev/pts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'fstype': 'devpts'}, 'sysfs': {'mountpoint': '/sys', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'sysfs'}, '/dev/disk/by-path/ip-192.168.10.27:3260-iscsi-iqn.2004-05.com.ubuntu:maas:ephemeral-ubuntu-amd64-generic-trusty-daily-lun-1': {'mountpoint': '/media/root-ro', 'opts': 'ro,relatime,data=ordered', 'fstype': 'ext4'}, 'udev': {'mountpoint': '/dev', 'opts': 'rw,relatime,size=16454536k,nr_inodes=4113634,mode=755', 'fstype': 'devtmpfs'}, 'tmpfs-root': {'mountpoint': '/media/root-rw', 'opts': 'rw,relatime', 'fstype': 'tmpfs'}, 'overlayroot': {'mountpoint': '/', 'opts': 'rw,relatime,lowerdir=/media/root-ro,upperdir=/media/root-rw//overlay', 'fstype': 'overlayfs'}, 'tmpfs': {'mountpoint': '/run', 'opts': 'rw,nosuid,noexec,relatime,size=3293628k,mode=755', 'fstype': 'tmpfs'}, 'proc': {'mountpoint': '/proc', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'proc'}, 'rootfs': {'mountpoint': '/', 'opts': 'rw', 'fstype': 'rootfs'}} mounts from proc
2015-10-27 16:47:24,428 - cloud-init[DEBUG]: No local datasource found
2015-10-27 16:47:24,429 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2015-10-27 16:47:24,429 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2015-10-27 16:47:24,429 - util.py[DEBUG]: cloud-init mode 'init' took 0.286 seconds (0.28)
2015-10-27 16:47:26,046 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init' at Tue, 27 Oct 2015 16:47:25 +0000. Up 21.07 seconds.
2015-10-27 16:47:26,050 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2015-10-27 16:47:26,051 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2015-10-27 16:47:26,051 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:26,061 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:26,070 - 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-10-27 16:47:26,070 - util.py[DEBUG]: Reading from /var/lib/cloud/data/no-net (quiet=False)
2015-10-27 16:47:26,070 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2015-10-27 16:47:26,071 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2015-10-27 16:47:26,074 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2015-10-27 16:47:26,074 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2015-10-27 16:47:26,075 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2015-10-27 16:47:26,076 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2015-10-27 16:47:26,076 - __init__.py[DEBUG]: Looking for for data source in: ['NoCloud', 'ConfigDrive', 'OpenNebula', 'Azure', 'AltCloud', 'OVF', 'MAAS', 'GCE', 'OpenStack', 'CloudSigma', 'Ec2', 'CloudStack', 'SmartOS', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2015-10-27 16:47:26,076 - importer.py[DEBUG]: Looking for modules ['DataSourceNoCloud', 'cloudinit.sources.DataSourceNoCloud'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,076 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceNoCloud' due to: No module named DataSourceNoCloud
2015-10-27 16:47:26,077 - importer.py[DEBUG]: Found DataSourceNoCloud with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceNoCloud']
2015-10-27 16:47:26,077 - importer.py[DEBUG]: Looking for modules ['DataSourceConfigDrive', 'cloudinit.sources.DataSourceConfigDrive'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,077 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceConfigDrive' due to: No module named DataSourceConfigDrive
2015-10-27 16:47:26,080 - importer.py[DEBUG]: Found DataSourceConfigDrive with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceConfigDrive']
2015-10-27 16:47:26,080 - importer.py[DEBUG]: Looking for modules ['DataSourceOpenNebula', 'cloudinit.sources.DataSourceOpenNebula'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,081 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceOpenNebula' due to: No module named DataSourceOpenNebula
2015-10-27 16:47:26,082 - importer.py[DEBUG]: Found DataSourceOpenNebula with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceOpenNebula']
2015-10-27 16:47:26,083 - importer.py[DEBUG]: Looking for modules ['DataSourceAzure', 'cloudinit.sources.DataSourceAzure'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,083 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceAzure' due to: No module named DataSourceAzure
2015-10-27 16:47:26,093 - importer.py[DEBUG]: Found DataSourceAzure with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceAzure']
2015-10-27 16:47:26,093 - importer.py[DEBUG]: Looking for modules ['DataSourceAltCloud', 'cloudinit.sources.DataSourceAltCloud'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,093 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceAltCloud' due to: No module named DataSourceAltCloud
2015-10-27 16:47:26,094 - importer.py[DEBUG]: Found DataSourceAltCloud with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceAltCloud']
2015-10-27 16:47:26,094 - importer.py[DEBUG]: Looking for modules ['DataSourceOVF', 'cloudinit.sources.DataSourceOVF'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,094 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceOVF' due to: No module named DataSourceOVF
2015-10-27 16:47:26,095 - importer.py[DEBUG]: Found DataSourceOVF with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceOVF']
2015-10-27 16:47:26,095 - importer.py[DEBUG]: Looking for modules ['DataSourceMAAS', 'cloudinit.sources.DataSourceMAAS'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,096 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceMAAS' due to: No module named DataSourceMAAS
2015-10-27 16:47:26,098 - importer.py[DEBUG]: Found DataSourceMAAS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceMAAS']
2015-10-27 16:47:26,098 - importer.py[DEBUG]: Looking for modules ['DataSourceGCE', 'cloudinit.sources.DataSourceGCE'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,099 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceGCE' due to: No module named DataSourceGCE
2015-10-27 16:47:26,099 - importer.py[DEBUG]: Found DataSourceGCE with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceGCE']
2015-10-27 16:47:26,100 - importer.py[DEBUG]: Looking for modules ['DataSourceOpenStack', 'cloudinit.sources.DataSourceOpenStack'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,100 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceOpenStack' due to: No module named DataSourceOpenStack
2015-10-27 16:47:26,101 - importer.py[DEBUG]: Found DataSourceOpenStack with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceOpenStack']
2015-10-27 16:47:26,101 - importer.py[DEBUG]: Looking for modules ['DataSourceCloudSigma', 'cloudinit.sources.DataSourceCloudSigma'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,101 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceCloudSigma' due to: No module named DataSourceCloudSigma
2015-10-27 16:47:26,105 - importer.py[DEBUG]: Found DataSourceCloudSigma with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceCloudSigma']
2015-10-27 16:47:26,105 - importer.py[DEBUG]: Looking for modules ['DataSourceEc2', 'cloudinit.sources.DataSourceEc2'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,105 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceEc2' due to: No module named DataSourceEc2
2015-10-27 16:47:26,106 - importer.py[DEBUG]: Found DataSourceEc2 with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceEc2']
2015-10-27 16:47:26,106 - importer.py[DEBUG]: Looking for modules ['DataSourceCloudStack', 'cloudinit.sources.DataSourceCloudStack'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,106 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceCloudStack' due to: No module named DataSourceCloudStack
2015-10-27 16:47:26,107 - importer.py[DEBUG]: Found DataSourceCloudStack with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceCloudStack']
2015-10-27 16:47:26,107 - importer.py[DEBUG]: Looking for modules ['DataSourceSmartOS', 'cloudinit.sources.DataSourceSmartOS'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,107 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceSmartOS' due to: No module named DataSourceSmartOS
2015-10-27 16:47:26,108 - importer.py[DEBUG]: Found DataSourceSmartOS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceSmartOS']
2015-10-27 16:47:26,108 - importer.py[DEBUG]: Looking for modules ['DataSourceNone', 'cloudinit.sources.DataSourceNone'] that have attributes ['get_datasource_list']
2015-10-27 16:47:26,108 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceNone' due to: No module named DataSourceNone
2015-10-27 16:47:26,109 - importer.py[DEBUG]: Found DataSourceNone with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceNone']
2015-10-27 16:47:26,109 - __init__.py[DEBUG]: Searching for data source in: ['DataSourceNoCloudNet', 'DataSourceConfigDriveNet', 'DataSourceOpenNebulaNet', 'DataSourceAzureNet', 'DataSourceAltCloud', 'DataSourceOVFNet', 'DataSourceMAAS', 'DataSourceGCE', 'DataSourceOpenStack', 'DataSourceCloudSigmaNet', 'DataSourceEc2', 'DataSourceCloudStack', 'DataSourceSmartOS', 'DataSourceNone']
2015-10-27 16:47:26,109 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloudNet'>
2015-10-27 16:47:26,110 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2015-10-27 16:47:26,110 - util.py[DEBUG]: Read 655 bytes from /proc/cmdline
2015-10-27 16:47:26,110 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
2015-10-27 16:47:26,110 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
2015-10-27 16:47:26,110 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
2015-10-27 16:47:26,110 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,114 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,119 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,124 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,129 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,133 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceConfigDrive.DataSourceConfigDriveNet'>
2015-10-27 16:47:26,134 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,138 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,142 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,147 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,151 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=config-2', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,156 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOpenNebula.DataSourceOpenNebulaNet'>
2015-10-27 16:47:26,156 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=CONTEXT', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,161 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=CDROM', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,165 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,170 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceAzure.DataSourceAzureNet'>
2015-10-27 16:47:26,170 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,170 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,171 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,171 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,171 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,171 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,171 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,171 - __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-10-27 16:47:26,171 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,176 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=udf', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2015-10-27 16:47:26,180 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceAltCloud.DataSourceAltCloud'>
2015-10-27 16:47:26,181 - DataSourceAltCloud.py[DEBUG]: Invoked get_data()
2015-10-27 16:47:26,181 - util.py[DEBUG]: Running command ['/usr/sbin/dmidecode', '--string', 'system-product-name'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:26,189 - DataSourceAltCloud.py[DEBUG]: cloud_type: UNKNOWN
2015-10-27 16:47:26,189 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOVF.DataSourceOVFNet'>
2015-10-27 16:47:26,190 - util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
2015-10-27 16:47:26,191 - util.py[DEBUG]: Read 1126 bytes from /proc/mounts
2015-10-27 16:47:26,191 - util.py[DEBUG]: Fetched {'none': {'mountpoint': '/sys/fs/pstore', 'opts': 'rw,relatime', 'fstype': 'pstore'}, 'devpts': {'mountpoint': '/dev/pts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'fstype': 'devpts'}, 'sysfs': {'mountpoint': '/sys', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'sysfs'}, '/dev/disk/by-path/ip-192.168.10.27:3260-iscsi-iqn.2004-05.com.ubuntu:maas:ephemeral-ubuntu-amd64-generic-trusty-daily-lun-1': {'mountpoint': '/media/root-ro', 'opts': 'ro,relatime,data=ordered', 'fstype': 'ext4'}, 'udev': {'mountpoint': '/dev', 'opts': 'rw,relatime,size=16454536k,nr_inodes=4113634,mode=755', 'fstype': 'devtmpfs'}, 'tmpfs-root': {'mountpoint': '/media/root-rw', 'opts': 'rw,relatime', 'fstype': 'tmpfs'}, 'overlayroot': {'mountpoint': '/', 'opts': 'rw,relatime,lowerdir=/media/root-ro,upperdir=/media/root-rw//overlay', 'fstype': 'overlayfs'}, 'tmpfs': {'mountpoint': '/run', 'opts': 'rw,nosuid,noexec,relatime,size=3293628k,mode=755', 'fstype': 'tmpfs'}, 'proc': {'mountpoint': '/proc', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'proc'}, 'rootfs': {'mountpoint': '/', 'opts': 'rw', 'fstype': 'rootfs'}} mounts from proc
2015-10-27 16:47:26,192 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceMAAS.DataSourceMAAS'>
2015-10-27 16:47:26,193 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/instance-id' with {'url': 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/instance-id', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="37742297", oauth_timestamp="1445964446", oauth_consumer_key="vnX54ews9TQZuMUZxD", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hyN2NrmE5jt9W6wGTH", oauth_signature="%26PvGFXgqA7EuQ6wCg2yHERtA4kKv8p4Ay"'}, 'allow_redirects': True, 'method': 'GET', 'timeout': 50.0} configuration
2015-10-27 16:47:26,234 - url_helper.py[DEBUG]: Read from http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/instance-id (200, 41b) after 1 attempts
2015-10-27 16:47:26,234 - DataSourceMAAS.py[DEBUG]: Using metadata source: 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/instance-id'
2015-10-27 16:47:26,235 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/local-hostname' with {'url': 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/local-hostname', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="18143080", oauth_timestamp="1445964446", oauth_consumer_key="vnX54ews9TQZuMUZxD", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hyN2NrmE5jt9W6wGTH", oauth_signature="%26PvGFXgqA7EuQ6wCg2yHERtA4kKv8p4Ay"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2015-10-27 16:47:26,320 - url_helper.py[DEBUG]: Read from http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/local-hostname (200, 16b) after 1 attempts
2015-10-27 16:47:26,321 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/instance-id' with {'url': 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/instance-id', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="56550773", oauth_timestamp="1445964446", oauth_consumer_key="vnX54ews9TQZuMUZxD", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hyN2NrmE5jt9W6wGTH", oauth_signature="%26PvGFXgqA7EuQ6wCg2yHERtA4kKv8p4Ay"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2015-10-27 16:47:26,366 - url_helper.py[DEBUG]: Read from http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/instance-id (200, 41b) after 1 attempts
2015-10-27 16:47:26,367 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/public-keys' with {'url': 'http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/public-keys', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="90491446", oauth_timestamp="1445964446", oauth_consumer_key="vnX54ews9TQZuMUZxD", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hyN2NrmE5jt9W6wGTH", oauth_signature="%26PvGFXgqA7EuQ6wCg2yHERtA4kKv8p4Ay"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2015-10-27 16:47:26,416 - url_helper.py[DEBUG]: Read from http://192.168.10.27/MAAS/metadata//2012-03-01/meta-data/public-keys (200, 740b) after 1 attempts
2015-10-27 16:47:26,417 - url_helper.py[DEBUG]: [0/1] open 'http://192.168.10.27/MAAS/metadata//2012-03-01/user-data' with {'url': 'http://192.168.10.27/MAAS/metadata//2012-03-01/user-data', 'headers': {'Authorization': 'OAuth realm="", oauth_nonce="07141139", oauth_timestamp="1445964446", oauth_consumer_key="vnX54ews9TQZuMUZxD", oauth_signature_method="PLAINTEXT", oauth_version="1.0", oauth_token="hyN2NrmE5jt9W6wGTH", oauth_signature="%26PvGFXgqA7EuQ6wCg2yHERtA4kKv8p4Ay"'}, 'allow_redirects': True, 'method': 'GET'} configuration
2015-10-27 16:47:26,475 - url_helper.py[DEBUG]: Read from http://192.168.10.27/MAAS/metadata//2012-03-01/user-data (200, 35148b) after 1 attempts
2015-10-27 16:47:26,476 - stages.py[INFO]: Loaded datasource DataSourceMAAS - DataSourceMAAS [http://192.168.10.27/MAAS/metadata/]
2015-10-27 16:47:26,476 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2015-10-27 16:47:26,476 - util.py[DEBUG]: Read 655 bytes from /proc/cmdline
2015-10-27 16:47:26,477 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2015-10-27 16:47:26,477 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2015-10-27 16:47:26,477 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,510 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg (quiet=False)
2015-10-27 16:47:26,510 - util.py[DEBUG]: Read 497 bytes from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg
2015-10-27 16:47:26,510 - util.py[DEBUG]: Attempting to load yaml from string of length 497 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,517 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2015-10-27 16:47:26,517 - util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2015-10-27 16:47:26,517 - util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,521 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2015-10-27 16:47:26,522 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2015-10-27 16:47:26,522 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,531 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,531 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,532 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,532 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,532 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,532 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,532 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,532 - __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-10-27 16:47:26,532 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,533 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,533 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,533 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,533 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,533 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,533 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,533 - __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-10-27 16:47:26,533 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,534 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,534 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,534 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,534 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,534 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,534 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,534 - __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-10-27 16:47:26,535 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,535 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,535 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,535 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,535 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,535 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,536 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,536 - __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-10-27 16:47:26,536 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,536 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,536 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,536 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,536 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,536 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,537 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,537 - __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-10-27 16:47:26,537 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,537 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,537 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,537 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,537 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,538 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,538 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,538 - __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-10-27 16:47:26,538 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,538 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,538 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,538 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,538 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,539 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,539 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,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-10-27 16:47:26,539 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,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-10-27 16:47:26,539 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,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-10-27 16:47:26,540 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,540 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,540 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,540 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,540 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,540 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,541 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,541 - __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-10-27 16:47:26,542 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2015-10-27 16:47:26,542 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887'
2015-10-27 16:47:26,543 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/datasource (quiet=False)
2015-10-27 16:47:26,543 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/datasource - wb: [420] 69 bytes
2015-10-27 16:47:26,544 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 69 bytes
2015-10-27 16:47:26,545 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2015-10-27 16:47:26,545 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 42 bytes
2015-10-27 16:47:26,545 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 42 bytes
2015-10-27 16:47:26,546 - cloud-init[DEBUG]: init will now be targeting instance id: node-ae2a241c-7814-11e5-bd2b-00163e11c887
2015-10-27 16:47:26,546 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2015-10-27 16:47:26,546 - util.py[DEBUG]: Read 655 bytes from /proc/cmdline
2015-10-27 16:47:26,547 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2015-10-27 16:47:26,547 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2015-10-27 16:47:26,547 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,579 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg (quiet=False)
2015-10-27 16:47:26,579 - util.py[DEBUG]: Read 497 bytes from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg
2015-10-27 16:47:26,579 - util.py[DEBUG]: Attempting to load yaml from string of length 497 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,586 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2015-10-27 16:47:26,586 - util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2015-10-27 16:47:26,587 - util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,590 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2015-10-27 16:47:26,591 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2015-10-27 16:47:26,591 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,600 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,600 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,601 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,601 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,601 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,601 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,601 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,601 - __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-10-27 16:47:26,601 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,602 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,602 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,602 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,602 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,602 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,602 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,602 - __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-10-27 16:47:26,603 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,603 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,603 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,603 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,603 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,603 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,603 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,603 - __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-10-27 16:47:26,604 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,604 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,604 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,604 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,604 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,604 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,604 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,605 - __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-10-27 16:47:26,605 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,605 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,605 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,605 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,605 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,605 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,606 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,606 - __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-10-27 16:47:26,606 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,606 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,606 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,606 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,606 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,606 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,607 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,607 - __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-10-27 16:47:26,607 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,607 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,607 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,607 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,607 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,608 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,608 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,608 - __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-10-27 16:47:26,608 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,608 - __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-10-27 16:47:26,608 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,608 - __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-10-27 16:47:26,609 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,609 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,609 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,609 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,609 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,609 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,610 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,610 - __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-10-27 16:47:26,612 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 43686 bytes
2015-10-27 16:47:26,612 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/user-data.txt - wb: [384] 35148 bytes
2015-10-27 16:47:26,628 - util.py[DEBUG]: Attempting to load yaml from string of length 626 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,646 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/user-data.txt.i - wb: [384] 35207 bytes
2015-10-27 16:47:26,647 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/vendor-data.txt - wb: [384] 4 bytes
2015-10-27 16:47:26,649 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/vendor-data.txt.i - wb: [384] 345 bytes
2015-10-27 16:47:26,651 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2015-10-27 16:47:26,652 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2015-10-27 16:47:26,652 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2015-10-27 16:47:26,652 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2015-10-27 16:47:26,652 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/consume_data - wb: [420] 19 bytes
2015-10-27 16:47:26,653 - helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/consume_data'>)
2015-10-27 16:47:26,654 - 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-10-27 16:47:26,654 - stages.py[DEBUG]: Added default handler for set(['text/x-shellscript']) from ShellScriptPartHandler: [['text/x-shellscript']]
2015-10-27 16:47:26,654 - stages.py[DEBUG]: Added default handler for set(['text/cloud-boothook']) from BootHookPartHandler: [['text/cloud-boothook']]
2015-10-27 16:47:26,654 - stages.py[DEBUG]: Added default handler for set(['text/upstart-job']) from UpstartJobPartHandler: [['text/upstart-job']]
2015-10-27 16:47:26,655 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2015-10-27 16:47:26,655 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2015-10-27 16:47:26,656 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2015-10-27 16:47:26,656 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2015-10-27 16:47:26,656 - __init__.py[DEBUG]: {'Content-Transfer-Encoding': '7bit', 'Content-Type': 'text/cloud-config; charset="utf-8"', 'Content-Disposition': 'attachment; filename="config"', 'MIME-Version': '1.0'}
2015-10-27 16:47:26,656 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (text/cloud-config, config, 3) with frequency once-per-instance
2015-10-27 16:47:26,656 - util.py[DEBUG]: Attempting to load yaml from string of length 626 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,665 - cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
2015-10-27 16:47:26,666 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,666 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,666 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,666 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,666 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,666 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,666 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,667 - __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-10-27 16:47:26,667 - __init__.py[DEBUG]: {'Content-Transfer-Encoding': '7bit', 'Content-Type': 'text/x-shellscript; charset="utf-8"', 'Content-Disposition': 'attachment; filename="user_data.sh"', 'MIME-Version': '1.0'}
2015-10-27 16:47:26,667 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (text/x-shellscript, user_data.sh, 2) with frequency once-per-instance
2015-10-27 16:47:26,667 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/scripts/user_data.sh - wb: [448] 33994 bytes
2015-10-27 16:47:26,668 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2015-10-27 16:47:26,668 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2015-10-27 16:47:26,668 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2015-10-27 16:47:26,675 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/cloud-config.txt - wb: [384] 744 bytes
2015-10-27 16:47:26,675 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2015-10-27 16:47:26,676 - stages.py[DEBUG]: no vendordata from datasource
2015-10-27 16:47:26,676 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2015-10-27 16:47:26,676 - util.py[DEBUG]: Read 655 bytes from /proc/cmdline
2015-10-27 16:47:26,676 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2015-10-27 16:47:26,677 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2015-10-27 16:47:26,677 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,709 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg (quiet=False)
2015-10-27 16:47:26,710 - util.py[DEBUG]: Read 497 bytes from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg
2015-10-27 16:47:26,710 - util.py[DEBUG]: Attempting to load yaml from string of length 497 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,717 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2015-10-27 16:47:26,717 - util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2015-10-27 16:47:26,717 - util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,721 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2015-10-27 16:47:26,721 - util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2015-10-27 16:47:26,721 - util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,731 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,731 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,731 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,731 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,731 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,731 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,732 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,732 - __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-10-27 16:47:26,732 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,732 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,732 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,732 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,733 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,733 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,733 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,733 - __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-10-27 16:47:26,733 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,733 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,733 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,734 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,734 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,734 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,734 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,734 - __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-10-27 16:47:26,734 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,734 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,734 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,735 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,735 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,735 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,735 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,735 - __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-10-27 16:47:26,735 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,735 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,736 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,736 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,736 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,736 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,736 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,736 - __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-10-27 16:47:26,736 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,737 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,737 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,737 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,737 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,737 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,737 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,737 - __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-10-27 16:47:26,737 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,738 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,738 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,738 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,738 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,738 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,738 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,738 - __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-10-27 16:47:26,739 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,739 - __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-10-27 16:47:26,739 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,739 - __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-10-27 16:47:26,739 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2015-10-27 16:47:26,739 - util.py[DEBUG]: Read 744 bytes from /var/lib/cloud/instance/cloud-config.txt
2015-10-27 16:47:26,739 - util.py[DEBUG]: Attempting to load yaml from string of length 744 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,749 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,749 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,750 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,750 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,750 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,750 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,750 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,750 - __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-10-27 16:47:26,750 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,751 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,751 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,751 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,751 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,751 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,751 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,751 - __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-10-27 16:47:26,752 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,752 - __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-10-27 16:47:26,753 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2015-10-27 16:47:26,754 - util.py[DEBUG]: Read 744 bytes from /var/lib/cloud/instance/cloud-config.txt
2015-10-27 16:47:26,754 - util.py[DEBUG]: Attempting to load yaml from string of length 744 with allowed root types (<type 'dict'>,)
2015-10-27 16:47:26,764 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,764 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,764 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,764 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,764 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,764 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,764 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,765 - __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-10-27 16:47:26,765 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:26,765 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:26,765 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:26,765 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:26,765 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:26,765 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:26,766 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:26,766 - __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-10-27 16:47:26,773 - importer.py[DEBUG]: Looking for modules ['cc_migrator', 'cloudinit.config.cc_migrator'] that have attributes ['handle']
2015-10-27 16:47:26,774 - importer.py[DEBUG]: Failed at attempted import of 'cc_migrator' due to: No module named cc_migrator
2015-10-27 16:47:26,775 - importer.py[DEBUG]: Found cc_migrator with attributes ['handle'] in ['cloudinit.config.cc_migrator']
2015-10-27 16:47:26,775 - importer.py[DEBUG]: Looking for modules ['cc_seed_random', 'cloudinit.config.cc_seed_random'] that have attributes ['handle']
2015-10-27 16:47:26,776 - importer.py[DEBUG]: Failed at attempted import of 'cc_seed_random' due to: No module named cc_seed_random
2015-10-27 16:47:26,777 - importer.py[DEBUG]: Found cc_seed_random with attributes ['handle'] in ['cloudinit.config.cc_seed_random']
2015-10-27 16:47:26,777 - importer.py[DEBUG]: Looking for modules ['cc_bootcmd', 'cloudinit.config.cc_bootcmd'] that have attributes ['handle']
2015-10-27 16:47:26,778 - importer.py[DEBUG]: Failed at attempted import of 'cc_bootcmd' due to: No module named cc_bootcmd
2015-10-27 16:47:26,779 - importer.py[DEBUG]: Found cc_bootcmd with attributes ['handle'] in ['cloudinit.config.cc_bootcmd']
2015-10-27 16:47:26,779 - importer.py[DEBUG]: Looking for modules ['cc_write_files', 'cloudinit.config.cc_write_files'] that have attributes ['handle']
2015-10-27 16:47:26,780 - importer.py[DEBUG]: Failed at attempted import of 'cc_write_files' due to: No module named cc_write_files
2015-10-27 16:47:26,781 - importer.py[DEBUG]: Found cc_write_files with attributes ['handle'] in ['cloudinit.config.cc_write_files']
2015-10-27 16:47:26,781 - importer.py[DEBUG]: Looking for modules ['cc_growpart', 'cloudinit.config.cc_growpart'] that have attributes ['handle']
2015-10-27 16:47:26,782 - importer.py[DEBUG]: Failed at attempted import of 'cc_growpart' due to: No module named cc_growpart
2015-10-27 16:47:26,784 - importer.py[DEBUG]: Found cc_growpart with attributes ['handle'] in ['cloudinit.config.cc_growpart']
2015-10-27 16:47:26,785 - importer.py[DEBUG]: Looking for modules ['cc_resizefs', 'cloudinit.config.cc_resizefs'] that have attributes ['handle']
2015-10-27 16:47:26,785 - importer.py[DEBUG]: Failed at attempted import of 'cc_resizefs' due to: No module named cc_resizefs
2015-10-27 16:47:26,787 - importer.py[DEBUG]: Found cc_resizefs with attributes ['handle'] in ['cloudinit.config.cc_resizefs']
2015-10-27 16:47:26,787 - importer.py[DEBUG]: Looking for modules ['cc_set_hostname', 'cloudinit.config.cc_set_hostname'] that have attributes ['handle']
2015-10-27 16:47:26,788 - importer.py[DEBUG]: Failed at attempted import of 'cc_set_hostname' due to: No module named cc_set_hostname
2015-10-27 16:47:26,789 - importer.py[DEBUG]: Found cc_set_hostname with attributes ['handle'] in ['cloudinit.config.cc_set_hostname']
2015-10-27 16:47:26,789 - importer.py[DEBUG]: Looking for modules ['cc_update_hostname', 'cloudinit.config.cc_update_hostname'] that have attributes ['handle']
2015-10-27 16:47:26,790 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_hostname' due to: No module named cc_update_hostname
2015-10-27 16:47:26,791 - importer.py[DEBUG]: Found cc_update_hostname with attributes ['handle'] in ['cloudinit.config.cc_update_hostname']
2015-10-27 16:47:26,791 - importer.py[DEBUG]: Looking for modules ['cc_update_etc_hosts', 'cloudinit.config.cc_update_etc_hosts'] that have attributes ['handle']
2015-10-27 16:47:26,792 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_etc_hosts' due to: No module named cc_update_etc_hosts
2015-10-27 16:47:26,794 - importer.py[DEBUG]: Found cc_update_etc_hosts with attributes ['handle'] in ['cloudinit.config.cc_update_etc_hosts']
2015-10-27 16:47:26,794 - importer.py[DEBUG]: Looking for modules ['cc_ca_certs', 'cloudinit.config.cc_ca_certs'] that have attributes ['handle']
2015-10-27 16:47:26,794 - importer.py[DEBUG]: Failed at attempted import of 'cc_ca_certs' due to: No module named cc_ca_certs
2015-10-27 16:47:26,795 - importer.py[DEBUG]: Found cc_ca_certs with attributes ['handle'] in ['cloudinit.config.cc_ca_certs']
2015-10-27 16:47:26,796 - importer.py[DEBUG]: Looking for modules ['cc_rsyslog', 'cloudinit.config.cc_rsyslog'] that have attributes ['handle']
2015-10-27 16:47:26,796 - importer.py[DEBUG]: Failed at attempted import of 'cc_rsyslog' due to: No module named cc_rsyslog
2015-10-27 16:47:26,797 - importer.py[DEBUG]: Found cc_rsyslog with attributes ['handle'] in ['cloudinit.config.cc_rsyslog']
2015-10-27 16:47:26,797 - importer.py[DEBUG]: Looking for modules ['cc_users_groups', 'cloudinit.config.cc_users_groups'] that have attributes ['handle']
2015-10-27 16:47:26,798 - importer.py[DEBUG]: Failed at attempted import of 'cc_users_groups' due to: No module named cc_users_groups
2015-10-27 16:47:26,799 - importer.py[DEBUG]: Found cc_users_groups with attributes ['handle'] in ['cloudinit.config.cc_users_groups']
2015-10-27 16:47:26,799 - importer.py[DEBUG]: Looking for modules ['cc_ssh', 'cloudinit.config.cc_ssh'] that have attributes ['handle']
2015-10-27 16:47:26,800 - importer.py[DEBUG]: Failed at attempted import of 'cc_ssh' due to: No module named cc_ssh
2015-10-27 16:47:26,801 - importer.py[DEBUG]: Found cc_ssh with attributes ['handle'] in ['cloudinit.config.cc_ssh']
2015-10-27 16:47:26,802 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2015-10-27 16:47:26,802 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2015-10-27 16:47:26,802 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2015-10-27 16:47:26,802 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2015-10-27 16:47:26,805 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7f1355197d10>)
2015-10-27 16:47:26,805 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2015-10-27 16:47:26,806 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_seed_random - wb: [420] 19 bytes
2015-10-27 16:47:26,807 - helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_seed_random'>)
2015-10-27 16:47:26,807 - util.py[DEBUG]: Running command ['pollinate', '-q'] with allowed return codes [0] (shell=False, capture=False)
2015-10-27 16:47:31,541 - util.py[WARNING]: Running seed_random (<module 'cloudinit.config.cc_seed_random' from '/usr/lib/python2.7/dist-packages/cloudinit/config/cc_seed_random.pyc'>) failed
2015-10-27 16:47:31,542 - util.py[DEBUG]: Running seed_random (<module 'cloudinit.config.cc_seed_random' from '/usr/lib/python2.7/dist-packages/cloudinit/config/cc_seed_random.pyc'>) failed
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/cloudinit/stages.py", line 658, in _run_modules
    cc.run(run_name, mod.handle, func_args, freq=freq)
  File "/usr/lib/python2.7/dist-packages/cloudinit/cloud.py", line 63, in run
    return self._runners.run(name, functor, args, freq, clear_on_fail)
  File "/usr/lib/python2.7/dist-packages/cloudinit/helpers.py", line 197, in run
    results = functor(*args)
  File "/usr/lib/python2.7/dist-packages/cloudinit/config/cc_seed_random.py", line 90, in handle
    handle_random_seed_command(command=command, required=req, env=env)
  File "/usr/lib/python2.7/dist-packages/cloudinit/config/cc_seed_random.py", line 61, in handle_random_seed_command
    util.subp(command, env=env, capture=False)
  File "/usr/lib/python2.7/dist-packages/cloudinit/util.py", line 1539, in subp
    cmd=args)
ProcessExecutionError: Unexpected error while running command.
Command: ['pollinate', '-q']
Exit code: 1
Reason: -
Stdout: ''
Stderr: ''
2015-10-27 16:47:31,551 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7f13549df190>)
2015-10-27 16:47:31,551 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2015-10-27 16:47:31,552 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_write_files - wb: [420] 19 bytes
2015-10-27 16:47:31,553 - helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_write_files'>)
2015-10-27 16:47:31,553 - cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
2015-10-27 16:47:31,553 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7f13549df1d0>)
2015-10-27 16:47:31,554 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg.  Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
2015-10-27 16:47:31,554 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:31,561 - util.py[DEBUG]: Reading from /proc/708/mountinfo (quiet=False)
2015-10-27 16:47:31,562 - util.py[DEBUG]: Read 1323 bytes from /proc/708/mountinfo
2015-10-27 16:47:31,562 - util.py[DEBUG]: resize_devices took 0.001 seconds
2015-10-27 16:47:31,562 - cc_growpart.py[DEBUG]: '/' SKIPPED: stat of 'overlayroot' failed: [Errno 2] No such file or directory: 'overlayroot'
2015-10-27 16:47:31,563 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7f13549df1d0>)
2015-10-27 16:47:31,563 - util.py[DEBUG]: Reading from /proc/708/mountinfo (quiet=False)
2015-10-27 16:47:31,564 - util.py[DEBUG]: Read 1323 bytes from /proc/708/mountinfo
2015-10-27 16:47:31,564 - cc_resizefs.py[DEBUG]: resize_info: dev=overlayroot mnt_point=/ path=/
2015-10-27 16:47:31,564 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:31,572 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:31,582 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2015-10-27 16:47:31,582 - util.py[DEBUG]: Read 557 bytes from /proc/1/environ
2015-10-27 16:47:31,583 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2015-10-27 16:47:31,583 - util.py[DEBUG]: Read 778 bytes from /proc/self/status
2015-10-27 16:47:31,583 - cc_resizefs.py[WARNING]: Device 'overlayroot' did not exist. cannot resize: dev=overlayroot mnt_point=/ path=/
2015-10-27 16:47:31,584 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_set_hostname - wb: [420] 19 bytes
2015-10-27 16:47:31,586 - helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_set_hostname'>)
2015-10-27 16:47:31,586 - cc_set_hostname.py[DEBUG]: Setting the hostname to clear-zebra.maas (clear-zebra)
2015-10-27 16:47:31,586 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2015-10-27 16:47:31,586 - util.py[DEBUG]: Read 7 bytes from /etc/hostname
2015-10-27 16:47:31,587 - util.py[DEBUG]: Writing to /etc/hostname - wb: [420] 12 bytes
2015-10-27 16:47:31,587 - __init__.py[DEBUG]: Non-persistently setting the system hostname to clear-zebra
2015-10-27 16:47:31,587 - util.py[DEBUG]: Running command ['hostname', 'clear-zebra'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:31,592 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7f1355197b10>)
2015-10-27 16:47:31,593 - cc_update_hostname.py[DEBUG]: Updating hostname to clear-zebra.maas (clear-zebra)
2015-10-27 16:47:31,593 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2015-10-27 16:47:31,593 - util.py[DEBUG]: Read 12 bytes from /etc/hostname
2015-10-27 16:47:31,593 - __init__.py[DEBUG]: Attempting to update hostname to clear-zebra in 1 files
2015-10-27 16:47:31,593 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2015-10-27 16:47:31,594 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [420] 12 bytes
2015-10-27 16:47:31,595 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7f1355197a90>)
2015-10-27 16:47:31,595 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2015-10-27 16:47:31,596 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_ca_certs - wb: [420] 18 bytes
2015-10-27 16:47:31,597 - helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_ca_certs'>)
2015-10-27 16:47:31,597 - cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
2015-10-27 16:47:31,598 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_rsyslog - wb: [420] 18 bytes
2015-10-27 16:47:31,598 - helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_rsyslog'>)
2015-10-27 16:47:31,599 - cc_rsyslog.py[DEBUG]: Skipping module named rsyslog, no 'rsyslog' key in configuration
2015-10-27 16:47:31,599 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_users_groups - wb: [420] 18 bytes
2015-10-27 16:47:31,600 - helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_users_groups'>)
2015-10-27 16:47:31,600 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:31,600 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:31,601 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:31,601 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:31,601 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:31,601 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:31,601 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:31,601 - __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-10-27 16:47:31,602 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:31,602 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:31,602 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:31,602 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:31,602 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:31,602 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:31,602 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:31,602 - __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-10-27 16:47:31,603 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:31,603 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:31,603 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:31,603 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:31,603 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:31,603 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:31,603 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:31,604 - __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-10-27 16:47:31,604 - __init__.py[DEBUG]: Adding user ubuntu
2015-10-27 16:47:31,604 - util.py[DEBUG]: Running hidden command to protect sensitive input/output logstring: ['useradd', 'ubuntu', '--shell', '/bin/bash', '--comment', 'Ubuntu', '--groups', 'adm,audio,cdrom,dialout,dip,floppy,netdev,plugdev,sudo,video', '-m']
2015-10-27 16:47:31,642 - util.py[DEBUG]: Running command ['passwd', '-l', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:31,656 - util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
2015-10-27 16:47:31,657 - util.py[DEBUG]: Read 745 bytes from /etc/sudoers
2015-10-27 16:47:31,659 - util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - wb: [288] 123 bytes
2015-10-27 16:47:31,661 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_ssh - wb: [420] 19 bytes
2015-10-27 16:47:31,662 - helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_ssh'>)
2015-10-27 16:47:31,664 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'rsa', '-N', '', '-f', '/etc/ssh/ssh_host_rsa_key'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:32,611 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'dsa', '-N', '', '-f', '/etc/ssh/ssh_host_dsa_key'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:33,015 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ecdsa', '-N', '', '-f', '/etc/ssh/ssh_host_ecdsa_key'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:33,022 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ed25519', '-N', '', '-f', '/etc/ssh/ssh_host_ed25519_key'] with allowed return codes [0] (shell=False, capture=True)
2015-10-27 16:47:33,032 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:33,032 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:33,033 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:33,033 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:33,033 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:33,033 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:33,033 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:33,033 - __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-10-27 16:47:33,034 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:33,034 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:33,034 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:33,034 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:33,034 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:33,034 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:33,034 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:33,035 - __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-10-27 16:47:33,035 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2015-10-27 16:47:33,035 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2015-10-27 16:47:33,035 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2015-10-27 16:47:33,035 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2015-10-27 16:47:33,035 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2015-10-27 16:47:33,035 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2015-10-27 16:47:33,036 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2015-10-27 16:47:33,036 - __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-10-27 16:47:33,037 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh to 1000:1000
2015-10-27 16:47:33,037 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2015-10-27 16:47:33,038 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2015-10-27 16:47:33,040 - util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [384] 741 bytes
2015-10-27 16:47:33,041 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1000:1000
2015-10-27 16:47:33,041 - util.py[DEBUG]: Changing the ownership of /root/.ssh to 0:0
2015-10-27 16:47:33,042 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2015-10-27 16:47:33,042 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2015-10-27 16:47:33,043 - util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [384] 896 bytes
2015-10-27 16:47:33,044 - util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
2015-10-27 16:47:33,044 - cloud-init[DEBUG]: Ran 13 modules with 1 failures
2015-10-27 16:47:33,045 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2015-10-27 16:47:33,045 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2015-10-27 16:47:33,045 - util.py[DEBUG]: cloud-init mode 'init' took 7.159 seconds (7.16)
Oct 27 16:47:33 clear-zebra [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:config' at Tue, 27 Oct 2015 16:47:33 +0000. Up 28.74 seconds.
Oct 27 16:47:33 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_emit_upstart', 'cloudinit.config.cc_emit_upstart'] that have attributes ['handle']
Oct 27 16:47:33 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_emit_upstart' due to: No module named cc_emit_upstart
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_emit_upstart with attributes ['handle'] in ['cloudinit.config.cc_emit_upstart']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_disk_setup', 'cloudinit.config.cc_disk_setup'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_disk_setup' due to: No module named cc_disk_setup
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_disk_setup with attributes ['handle'] in ['cloudinit.config.cc_disk_setup']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_mounts', 'cloudinit.config.cc_mounts'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_mounts' due to: No module named cc_mounts
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_mounts with attributes ['handle'] in ['cloudinit.config.cc_mounts']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_ssh_import_id', 'cloudinit.config.cc_ssh_import_id'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_import_id' due to: No module named cc_ssh_import_id
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_ssh_import_id with attributes ['handle'] in ['cloudinit.config.cc_ssh_import_id']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_locale', 'cloudinit.config.cc_locale'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_locale' due to: No module named cc_locale
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_locale with attributes ['handle'] in ['cloudinit.config.cc_locale']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_set_passwords', 'cloudinit.config.cc_set_passwords'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_set_passwords' due to: No module named cc_set_passwords
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_set_passwords with attributes ['handle'] in ['cloudinit.config.cc_set_passwords']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_grub_dpkg', 'cloudinit.config.cc_grub_dpkg'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_grub_dpkg' due to: No module named cc_grub_dpkg
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_grub_dpkg with attributes ['handle'] in ['cloudinit.config.cc_grub_dpkg']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_pipelining', 'cloudinit.config.cc_apt_pipelining'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_pipelining' due to: No module named cc_apt_pipelining
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_pipelining with attributes ['handle'] in ['cloudinit.config.cc_apt_pipelining']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_apt_configure', 'cloudinit.config.cc_apt_configure'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_apt_configure' due to: No module named cc_apt_configure
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_apt_configure with attributes ['handle'] in ['cloudinit.config.cc_apt_configure']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_package_update_upgrade_install', 'cloudinit.config.cc_package_update_upgrade_install'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_package_update_upgrade_install' due to: No module named cc_package_update_upgrade_install
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_package_update_upgrade_install with attributes ['handle'] in ['cloudinit.config.cc_package_update_upgrade_install']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_landscape', 'cloudinit.config.cc_landscape'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_landscape' due to: No module named cc_landscape
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_landscape with attributes ['handle'] in ['cloudinit.config.cc_landscape']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_timezone', 'cloudinit.config.cc_timezone'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_timezone' due to: No module named cc_timezone
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_timezone with attributes ['handle'] in ['cloudinit.config.cc_timezone']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_puppet', 'cloudinit.config.cc_puppet'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_puppet' due to: No module named cc_puppet
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_puppet with attributes ['handle'] in ['cloudinit.config.cc_puppet']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_chef', 'cloudinit.config.cc_chef'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_chef' due to: No module named cc_chef
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_chef with attributes ['handle'] in ['cloudinit.config.cc_chef']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_salt_minion', 'cloudinit.config.cc_salt_minion'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_salt_minion' due to: No module named cc_salt_minion
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_salt_minion with attributes ['handle'] in ['cloudinit.config.cc_salt_minion']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_mcollective', 'cloudinit.config.cc_mcollective'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_mcollective' due to: No module named cc_mcollective
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_mcollective with attributes ['handle'] in ['cloudinit.config.cc_mcollective']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_disable_ec2_metadata', 'cloudinit.config.cc_disable_ec2_metadata'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_disable_ec2_metadata' due to: No module named cc_disable_ec2_metadata
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_disable_ec2_metadata with attributes ['handle'] in ['cloudinit.config.cc_disable_ec2_metadata']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_runcmd', 'cloudinit.config.cc_runcmd'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_runcmd' due to: No module named cc_runcmd
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_runcmd with attributes ['handle'] in ['cloudinit.config.cc_runcmd']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_byobu', 'cloudinit.config.cc_byobu'] that have attributes ['handle']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_byobu' due to: No module named cc_byobu
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_byobu with attributes ['handle'] in ['cloudinit.config.cc_byobu']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Oct 27 16:47:36 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7fc84e288e90>)
Oct 27 16:47:36 clear-zebra [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)
Oct 27 16:47:36 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_disk_setup - wb: [420] 20 bytes
Oct 27 16:47:36 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-disk_setup using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_disk_setup'>)
Oct 27 16:47:36 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_mounts - wb: [420] 20 bytes
Oct 27 16:47:36 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-mounts using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_mounts'>)
Oct 27 16:47:36 clear-zebra [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of ephemeral0
Oct 27 16:47:36 clear-zebra [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount ephemeral0
Oct 27 16:47:36 clear-zebra [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of swap
Oct 27 16:47:36 clear-zebra [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount swap
Oct 27 16:47:36 clear-zebra [CLOUDINIT] cc_mounts.py[DEBUG]: No modifications to fstab needed.
Oct 27 16:47:36 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_ssh_import_id - wb: [420] 20 bytes
Oct 27 16:47:36 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_ssh_import_id'>)
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Oct 27 16:47:36 clear-zebra [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'
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Oct 27 16:47:36 clear-zebra [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'
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Oct 27 16:47:36 clear-zebra [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Oct 27 16:47:36 clear-zebra [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'
Oct 27 16:47:36 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_locale - wb: [420] 20 bytes
Oct 27 16:47:36 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_locale'>)
Oct 27 16:47:36 clear-zebra [CLOUDINIT] cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
Oct 27 16:47:36 clear-zebra [CLOUDINIT] util.py[DEBUG]: Running command ['locale-gen', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Running command ['update-locale', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /etc/default/locale - wb: [420] 87 bytes
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_set_passwords - wb: [420] 19 bytes
Oct 27 16:47:37 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_set_passwords'>)
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_grub_dpkg - wb: [420] 19 bytes
Oct 27 16:47:37 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_grub_dpkg'>)
Oct 27 16:47:37 clear-zebra [CLOUDINIT] cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/sda','false'
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_apt_pipelining - wb: [420] 20 bytes
Oct 27 16:47:37 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_apt_pipelining'>)
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [420] 80 bytes
Oct 27 16:47:37 clear-zebra [CLOUDINIT] cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_apt_configure - wb: [420] 20 bytes
Oct 27 16:47:37 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_apt_configure'>)
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Running command ['lsb_release', '-cs'] with allowed return codes [0] (shell=False, capture=True)
Oct 27 16:47:37 clear-zebra [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] __init__.py[DEBUG]: filtered distro mirror info: {'security': 'http://archive.ubuntu.com//ubuntu', 'primary': 'http://archive.ubuntu.com//ubuntu'}
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_apt_configure.py[DEBUG]: Mirror info: {'security': 'http://archive.ubuntu.com//ubuntu', 'primary': 'http://archive.ubuntu.com//ubuntu', 'mirror': 'http://archive.ubuntu.com//ubuntu'}
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/templates/sources.list.ubuntu.tmpl (quiet=False)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Read 2768 bytes from /etc/cloud/templates/sources.list.ubuntu.tmpl
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/sources.list - wb: [420] 3179 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_universe_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_universe_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_Release.gpg to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_Release.gpg
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_Release to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_Release
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_main_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_main_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_multiverse_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_multiverse_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_restricted_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_restricted_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_main_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_main_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_universe_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_universe_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_restricted_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_restricted_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_trusty-security_multiverse_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-security_multiverse_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_universe_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_universe_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_main_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_main_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_universe_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_universe_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_multiverse_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_multiverse_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_multiverse_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_multiverse_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_universe_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_universe_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_restricted_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_restricted_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_multiverse_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_multiverse_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_Release to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_Release
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_Release.gpg to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_Release.gpg
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_multiverse_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_multiverse_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_Release to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_Release
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_main_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_main_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_restricted_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_restricted_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_restricted_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_restricted_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_universe_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_universe_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_Release.gpg to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_Release.gpg
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_main_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_main_binary-amd64_Packages
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty-updates_main_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty-updates_main_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Renaming /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_restricted_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com__ubuntu_dists_trusty_restricted_i18n_Translation-en
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/95cloud-init-proxy - wb: [420] 51 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_package_update_upgrade_install - wb: [420] 19 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_package_update_upgrade_install'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_landscape - wb: [420] 19 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_landscape'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_timezone - wb: [420] 19 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_timezone'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_puppet - wb: [420] 19 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_puppet'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_chef - wb: [420] 19 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_chef'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_salt_minion - wb: [420] 19 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_salt_minion'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_mcollective - wb: [420] 20 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_mcollective'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7fc84e1e02d0>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_runcmd - wb: [420] 20 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_runcmd'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_runcmd.py[DEBUG]: Skipping module named runcmd, no 'runcmd' key in configuration
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_byobu - wb: [420] 20 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_byobu'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cloud-init[DEBUG]: Ran 19 modules with 0 failures
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Read 13 bytes from /proc/uptime
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 4.687 seconds (4.68)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:final' at Tue, 27 Oct 2015 16:47:38 +0000. Up 33.79 seconds.
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_rightscale_userdata', 'cloudinit.config.cc_rightscale_userdata'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_rightscale_userdata' due to: No module named cc_rightscale_userdata
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_rightscale_userdata with attributes ['handle'] in ['cloudinit.config.cc_rightscale_userdata']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_vendor', 'cloudinit.config.cc_scripts_vendor'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_vendor' due to: No module named cc_scripts_vendor
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_vendor with attributes ['handle'] in ['cloudinit.config.cc_scripts_vendor']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_once', 'cloudinit.config.cc_scripts_per_once'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_once' due to: No module named cc_scripts_per_once
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_once with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_once']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_boot', 'cloudinit.config.cc_scripts_per_boot'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_boot' due to: No module named cc_scripts_per_boot
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_boot with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_boot']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_per_instance', 'cloudinit.config.cc_scripts_per_instance'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_instance' due to: No module named cc_scripts_per_instance
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_per_instance with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_instance']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_scripts_user', 'cloudinit.config.cc_scripts_user'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_user' due to: No module named cc_scripts_user
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_scripts_user with attributes ['handle'] in ['cloudinit.config.cc_scripts_user']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_ssh_authkey_fingerprints', 'cloudinit.config.cc_ssh_authkey_fingerprints'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_authkey_fingerprints' due to: No module named cc_ssh_authkey_fingerprints
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_ssh_authkey_fingerprints with attributes ['handle'] in ['cloudinit.config.cc_ssh_authkey_fingerprints']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_keys_to_console', 'cloudinit.config.cc_keys_to_console'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_keys_to_console' due to: No module named cc_keys_to_console
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_keys_to_console with attributes ['handle'] in ['cloudinit.config.cc_keys_to_console']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_phone_home', 'cloudinit.config.cc_phone_home'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_phone_home' due to: No module named cc_phone_home
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_phone_home with attributes ['handle'] in ['cloudinit.config.cc_phone_home']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_final_message', 'cloudinit.config.cc_final_message'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_final_message' due to: No module named cc_final_message
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_final_message with attributes ['handle'] in ['cloudinit.config.cc_final_message']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cc_power_state_change', 'cloudinit.config.cc_power_state_change'] that have attributes ['handle']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'cc_power_state_change' due to: No module named cc_power_state_change
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found cc_power_state_change with attributes ['handle'] in ['cloudinit.config.cc_power_state_change']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
Oct 27 16:47:38 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
Oct 27 16:47:38 clear-zebra [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_rightscale_userdata - wb: [420] 20 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_rightscale_userdata'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_scripts_vendor - wb: [420] 20 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_scripts_vendor'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [420] 20 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7fd1cd0d41d0>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_scripts_per_instance - wb: [420] 20 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_scripts_per_instance'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_scripts_user - wb: [420] 20 bytes
Oct 27 16:47:38 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_scripts_user'>)
Oct 27 16:47:38 clear-zebra [CLOUDINIT] util.py[DEBUG]: Running command ['/var/lib/cloud/instance/scripts/user_data.sh'] with allowed return codes [0] (shell=False, capture=False)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_ssh_authkey_fingerprints - wb: [420] 19 bytes
Oct 27 16:49:10 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_ssh_authkey_fingerprints'>)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Oct 27 16:49:10 clear-zebra [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'
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Oct 27 16:49:10 clear-zebra [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'
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
Oct 27 16:49:10 clear-zebra [CLOUDINIT] __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
Oct 27 16:49:10 clear-zebra [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'
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Read 741 bytes from /home/ubuntu/.ssh/authorized_keys
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_keys_to_console - wb: [420] 20 bytes
Oct 27 16:49:10 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_keys_to_console'>)
Oct 27 16:49:10 clear-zebra [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)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_phone_home - wb: [420] 20 bytes
Oct 27 16:49:10 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_phone_home'>)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
Oct 27 16:49:10 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7fd1cd0356d0>)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Read 14 bytes from /proc/uptime
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.5 finished at Tue, 27 Oct 2015 16:49:10 +0000. Datasource DataSourceMAAS [http://192.168.10.27/MAAS/metadata/].  Up 125.35 seconds
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 52 bytes
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_power_state_change - wb: [420] 20 bytes
Oct 27 16:49:10 clear-zebra [CLOUDINIT] helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/node-ae2a241c-7814-11e5-bd2b-00163e11c887/sem/config_power_state_change'>)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
Oct 27 16:49:10 clear-zebra [CLOUDINIT] cloud-init[DEBUG]: Ran 11 modules with 0 failures
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: Read 14 bytes from /proc/uptime
Oct 27 16:49:10 clear-zebra [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 91.583 seconds (91.59)
Download as text