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 | Cloud-init v. 0.7.5 running 'init-local' at Wed, 10 Feb 2016 15:53:51 +0000. Up 4.41 seconds.
2016-02-10 15:53:51,429 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init-local' at Wed, 10 Feb 2016 15:53:51 +0000. Up 4.41 seconds.
2016-02-10 15:53:51,460 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2016-02-10 15:53:51,461 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2016-02-10 15:53:51,461 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2016-02-10 15:53:51,475 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2016-02-10 15:53:51,475 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2016-02-10 15:53:51,475 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2016-02-10 15:53:51,476 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-02-10 15:53:51,476 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-02-10 15:53:51,490 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-02-10 15:53:51,490 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-02-10 15:53:51,490 - __init__.py[DEBUG]: Looking for for data source in: ['SmartOS'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2016-02-10 15:53:51,490 - importer.py[DEBUG]: Looking for modules ['DataSourceSmartOS', 'cloudinit.sources.DataSourceSmartOS'] that have attributes ['get_datasource_list']
2016-02-10 15:53:51,491 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceSmartOS' due to: No module named DataSourceSmartOS
2016-02-10 15:53:51,520 - importer.py[DEBUG]: Found DataSourceSmartOS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceSmartOS']
2016-02-10 15:53:51,521 - __init__.py[DEBUG]: Searching for data source in: []
2016-02-10 15:53:51,521 - cloud-init[DEBUG]: No local datasource found
2016-02-10 15:53:51,521 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2016-02-10 15:53:51,521 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2016-02-10 15:53:51,521 - util.py[DEBUG]: cloud-init mode 'init' took 0.463 seconds (0.46)
Cloud-init v. 0.7.5 running 'init' at Wed, 10 Feb 2016 15:53:53 +0000. Up 6.88 seconds.
2016-02-10 15:53:53,837 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'init' at Wed, 10 Feb 2016 15:53:53 +0000. Up 6.88 seconds.
2016-02-10 15:53:53,853 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2016-02-10 15:53:53,853 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 101:4
2016-02-10 15:53:53,865 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:53,913 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
ci-info: ++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++
ci-info: +--------+------+--------------+---------------+-------------------+
ci-info: | Device | Up | Address | Mask | Hw-Address |
ci-info: +--------+------+--------------+---------------+-------------------+
ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | . |
ci-info: | eth1 | True | 10.210.1.202 | 255.255.255.0 | 90:b8:d0:3a:00:54 |
ci-info: | eth0 | True | 8.12.42.47 | 255.255.255.0 | 90:b8:d0:61:e4:3c |
ci-info: +--------+------+--------------+---------------+-------------------+
ci-info: ++++++++++++++++++++++++++++++Route info+++++++++++++++++++++++++++++++
ci-info: +-------+-------------+-----------+---------------+-----------+-------+
ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
ci-info: +-------+-------------+-----------+---------------+-----------+-------+
ci-info: | 0 | 0.0.0.0 | 8.12.42.1 | 0.0.0.0 | eth0 | UG |
ci-info: | 1 | 8.12.42.0 | 0.0.0.0 | 255.255.255.0 | eth0 | U |
ci-info: | 2 | 10.210.1.0 | 0.0.0.0 | 255.255.255.0 | eth1 | U |
ci-info: +-------+-------------+-----------+---------------+-----------+-------+
2016-02-10 15:53:53,953 - cloud-init[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2016-02-10 15:53:53,959 - util.py[DEBUG]: Reading from /var/lib/cloud/data/no-net (quiet=False)
2016-02-10 15:53:53,959 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2016-02-10 15:53:53,959 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2016-02-10 15:53:53,960 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-02-10 15:53:53,960 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-02-10 15:53:53,968 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-02-10 15:53:53,968 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-02-10 15:53:53,968 - __init__.py[DEBUG]: Looking for for data source in: ['SmartOS'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2016-02-10 15:53:53,968 - importer.py[DEBUG]: Looking for modules ['DataSourceSmartOS', 'cloudinit.sources.DataSourceSmartOS'] that have attributes ['get_datasource_list']
2016-02-10 15:53:53,968 - importer.py[DEBUG]: Failed at attempted import of 'DataSourceSmartOS' due to: No module named DataSourceSmartOS
2016-02-10 15:53:53,983 - importer.py[DEBUG]: Found DataSourceSmartOS with attributes ['get_datasource_list'] in ['cloudinit.sources.DataSourceSmartOS']
2016-02-10 15:53:53,983 - __init__.py[DEBUG]: Searching for data source in: ['DataSourceSmartOS']
2016-02-10 15:53:53,983 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceSmartOS.DataSourceSmartOS'>
2016-02-10 15:53:53,983 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:53,983 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:53,989 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:53,989 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:53,989 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:53,989 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:53,989 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:53,989 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:53,989 - DataSourceSmartOS.py[DEBUG]: Host is SmartOS, guest in Zone
2016-02-10 15:53:53,990 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "base64_keys"...
2016-02-10 15:53:53,990 - DataSourceSmartOS.py[DEBUG]: Writing "V2 29 d5f4bafc 47f041e8 GET YmFzZTY0X2tleXM=
" to metadata transport.
2016-02-10 15:53:53,997 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "base64_all"...
2016-02-10 15:53:53,997 - DataSourceSmartOS.py[DEBUG]: Writing "V2 29 c5729c1a de61cafd GET YmFzZTY0X2FsbA==
" to metadata transport.
2016-02-10 15:53:53,997 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "motd_sys_info"...
2016-02-10 15:53:53,998 - DataSourceSmartOS.py[DEBUG]: Writing "V2 33 10ef1d06 77b79a7d GET bW90ZF9zeXNfaW5mbw==
" to metadata transport.
2016-02-10 15:53:54,004 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "root_authorized_keys"...
2016-02-10 15:53:54,004 - DataSourceSmartOS.py[DEBUG]: Writing "V2 41 a237c56d 406dc7de GET cm9vdF9hdXRob3JpemVkX2tleXM=
" to metadata transport.
2016-02-10 15:53:54,025 - DataSourceSmartOS.py[DEBUG]: Read "V2 1601 c9ea1853 406dc7de SUCCESS c3NoLXJzYSBBQUFBQjNOemFDMXljMkVBQUFBQkl3QUFBUUVBNDF5ZU1KeVk3RVJjdkdUTFpURk5PNmx4TTA0UEwwV2hUTHNLYXpBQnNtcm5VeDdoUGFLbTJhRGRGWFg5QXpjbi9aNHVISnJZRHdmZzVLL2lhM1NvUHJsRGdDUGJlaVNtNzBhdXpEenZxMzJGZkl6cW54cUdEVHFnQUdpYzNvbnZzV3JISzlCWjlPSFBzK2pDbGRJbE9NektOaUVtNFg4dVVqQm91ZHMzdERGZlpQVUlpMEthM004TmIvR1lDd0lybWVJQ1Y5N3VBNjdJeURMM2lncUJCcXFLM3ZrZEJzQTNOMDFmU3FUUjFtUFRrUlpheXJxeXRBclBxbTB3SEEwaUtqeHBpYzV1bTJlcnFPSFd6RHBGbE9vTWJwMXBCQ3RlRGgrcVVoZG94em8yYVhMNysyd0JSbWoxNXlMYUV5YTZ6ckZ2a3NDdjRYWHlXQXN5NmpjNit3PT0Kc3NoLXJzYSBBQUFBQjNOemFDMXljMkVBQUFBREFRQUJBQUFCQVFDczl4K3FmVDlDWlZSRmxQMGEyWklsWWZBd2RZUGJiSDlpZ2oxci9oWXFseFo3cHNPTlhHWDE1VkFyYnNCS1lMNkJORlBRVFgzRmR3ZGFlTXVRd21CemZuQWhhdGFMQmhGbTk1cXI1ZFkwTXNlVjdJMVVwL2V5WnJpaE5raHNEcEw2ZjdsajlHaWUxVk41TUEyOEFpT3VXcyt6c204TEwvb0ZidjRmWWlRNm1NaXZyNEZhZEFWZjF2S3REUlJSdHFuYzRlK1JqZWpwL1hqUkVaUFB2MXd5MVBoSS9CaHEzUXBIelJobW42Z3RnL3pPSkYrMi9wcVFGUmNoMnczMC9naW56TDRpTzc3dnZidURxU2RsOFJWNEYrMHFGS0FKRHM1NC9rN1pYNlJkY2xXdVRsZ055V0g4d01PQTd4VjdybUtrTWhCV1g0U2VXTXpiYjJNdWx4eUogY2hyaXN0b3BoZXJATWFjQm9va1Byby5sb2NhbApzc2gtcnNhIEFBQUFCM056YUMxeWMyRUFBQUFCSXdBQUFRRUF5c2xnYk9CdmV4YmYzWmQzQ0pnN1lwSk56WFlUZ2JRK1FmcDVHUytCVElLT2huMVBNdk8wNnJ2cG1IVVVLeE5ZeS9vczE5akkvb1JCM2NITENkdTNFZCtEVHRyL0F2UmxEMHhkWDV4cGlqbU1IbTJlaTZKOFFGNmNYTUFOdTVWUndKS1kvU1BXVVRCcklxSy9pWmFST2ZCNm5TZlprWDlrQ2cwQm43c21ZWXRWWm1sWmtiZ2dwT3JCV01MRTRnc2RlTXM1Mzg0RU1xZ0h1QnUzWXNsaHVIejVuZ3dkVWQyVEpuR29jclZ3c0wvT2xEL2paNG1YejJwVEhLZFM4ZmM1cHV1SUcwSXMwSjV0cFVhODhoazFhS0xueTVONUFTNVdOUDVUZVd5WitCV0tmVDVXZStBM3R2M3FSdkJxM0JwZ2p4Zysvdm94ekhmQkNBY0tyRUlQSVE9PSByb290QHNlcnZlcnNwZWMK" from metadata transport.
2016-02-10 15:53:54,025 - DataSourceSmartOS.py[DEBUG]: Value "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA41yeMJyY7ERcvGTLZTFNO6lxM04PL0WhTLsKazABsmrnUx7hPaKm2aDdFXX9Azcn/Z4uHJrYDwfg5K/ia3SoPrlDgCPbeiSm70auzDzvq32FfIzqnxqGDTqgAGic3onvsWrHK9BZ9OHPs+jCldIlOMzKNiEm4X8uUjBouds3tDFfZPUIi0Ka3M8Nb/GYCwIrmeICV97uA67IyDL3igqBBqqK3vkdBsA3N01fSqTR1mPTkRZayrqytArPqm0wHA0iKjxpic5um2erqOHWzDpFlOoMbp1pBCteDh+qUhdoxzo2aXL7+2wBRmj15yLaEya6zrFvksCv4XXyWAsy6jc6+w==
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCs9x+qfT9CZVRFlP0a2ZIlYfAwdYPbbH9igj1r/hYqlxZ7psONXGX15VArbsBKYL6BNFPQTX3FdwdaeMuQwmBzfnAhataLBhFm95qr5dY0MseV7I1Up/eyZrihNkhsDpL6f7lj9Gie1VN5MA28AiOuWs+zsm8LL/oFbv4fYiQ6mMivr4FadAVf1vKtDRRRtqnc4e+Rjejp/XjREZPPv1wy1PhI/Bhq3QpHzRhmn6gtg/zOJF+2/pqQFRch2w30/ginzL4iO77vvbuDqSdl8RV4F+0qFKAJDs54/k7ZX6RdclWuTlgNyWH8wMOA7xV7rmKkMhBWX4SeWMzbb2MulxyJ christopher@MacBookPro.local
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAyslgbOBvexbf3Zd3CJg7YpJNzXYTgbQ+Qfp5GS+BTIKOhn1PMvO06rvpmHUUKxNYy/os19jI/oRB3cHLCdu3Ed+DTtr/AvRlD0xdX5xpijmMHm2ei6J8QF6cXMANu5VRwJKY/SPWUTBrIqK/iZaROfB6nSfZkX9kCg0Bn7smYYtVZmlZkbggpOrBWMLE4gsdeMs5384EMqgHuBu3YslhuHz5ngwdUd2TJnGocrVwsL/OlD/jZ4mXz2pTHKdS8fc5puuIG0Is0J5tpUa88hk1aKLny5N5AS5WNP5TeWyZ+BWKfT5We+A3tv3qRvBq3Bpgjxg+/voxzHfBCAcKrEIPIQ== root@serverspec
" found.
2016-02-10 15:53:54,026 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "cloud-init:user-data"...
2016-02-10 15:53:54,026 - DataSourceSmartOS.py[DEBUG]: Writing "V2 41 3bc55b9f 52f7a7b1 GET Y2xvdWQtaW5pdDp1c2VyLWRhdGE=
" to metadata transport.
2016-02-10 15:53:54,032 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "user-script"...
2016-02-10 15:53:54,032 - DataSourceSmartOS.py[DEBUG]: Writing "V2 29 8442f38a 9b930894 GET dXNlci1zY3JpcHQ=
" to metadata transport.
2016-02-10 15:53:54,033 - DataSourceSmartOS.py[DEBUG]: Read "V2 93 a972745f 9b930894 SUCCESS IyEvYmluL3NoCgplY2hvICJ0ZXN0aW5nIHVzZXItc2NyaXB0IiA+PiAvdmFyL3RtcC90ZXN0Cg==" from metadata transport.
2016-02-10 15:53:54,033 - DataSourceSmartOS.py[DEBUG]: Value "#!/bin/sh
echo "testing user-script" >> /var/tmp/test
" found.
2016-02-10 15:53:54,034 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "user-data"...
2016-02-10 15:53:54,034 - DataSourceSmartOS.py[DEBUG]: Writing "V2 25 40de3ff7 cdbcdb74 GET dXNlci1kYXRh
" to metadata transport.
2016-02-10 15:53:54,039 - DataSourceSmartOS.py[DEBUG]: Read "V2 41 fd433957 cdbcdb74 SUCCESS VGhpcyBpcyB1c2VyLWRhdGEh" from metadata transport.
2016-02-10 15:53:54,039 - DataSourceSmartOS.py[DEBUG]: Value "This is user-data!" found.
2016-02-10 15:53:54,039 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "sdc:uuid"...
2016-02-10 15:53:54,039 - DataSourceSmartOS.py[DEBUG]: Writing "V2 25 e55e30ab a1e0e76d GET c2RjOnV1aWQ=
" to metadata transport.
2016-02-10 15:53:54,040 - DataSourceSmartOS.py[DEBUG]: Read "V2 65 8ceffc34 a1e0e76d SUCCESS Zjc2NDRlM2EtYTZmZi00NWZkLWJjOGEtMjhhNDQzN2RmYmFh" from metadata transport.
2016-02-10 15:53:54,040 - DataSourceSmartOS.py[DEBUG]: Value "f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa" found.
2016-02-10 15:53:54,040 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "hostname"...
2016-02-10 15:53:54,040 - DataSourceSmartOS.py[DEBUG]: Writing "V2 25 abb34e2f f62178b6 GET aG9zdG5hbWU=
" to metadata transport.
2016-02-10 15:53:54,047 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "sdc:datacenter_name"...
2016-02-10 15:53:54,047 - DataSourceSmartOS.py[DEBUG]: Writing "V2 41 1fd0938f 7d1150f2 GET c2RjOmRhdGFjZW50ZXJfbmFtZQ==
" to metadata transport.
2016-02-10 15:53:54,047 - DataSourceSmartOS.py[DEBUG]: Read "V2 29 f610c9da 7d1150f2 SUCCESS dXMtd2VzdC1h" from metadata transport.
2016-02-10 15:53:54,048 - DataSourceSmartOS.py[DEBUG]: Value "us-west-a" found.
2016-02-10 15:53:54,048 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "sdc:vendor-data"...
2016-02-10 15:53:54,048 - DataSourceSmartOS.py[DEBUG]: Writing "V2 33 2d743946 e4f93dc6 GET c2RjOnZlbmRvci1kYXRh
" to metadata transport.
2016-02-10 15:53:54,053 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "iptables_disable"...
2016-02-10 15:53:54,053 - DataSourceSmartOS.py[DEBUG]: Writing "V2 37 7f15a713 d12610c2 GET aXB0YWJsZXNfZGlzYWJsZQ==
" to metadata transport.
2016-02-10 15:53:54,053 - DataSourceSmartOS.py[DEBUG]: Fetching metadata key "sdc:operator-script"...
2016-02-10 15:53:54,054 - DataSourceSmartOS.py[DEBUG]: Writing "V2 41 0eb9ad3e 8e66f423 GET c2RjOm9wZXJhdG9yLXNjcmlwdA==
" to metadata transport.
2016-02-10 15:53:54,060 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/data/user-script - wb: [448] 55 bytes
2016-02-10 15:53:54,061 - util.py[DEBUG]: Writing to /var/db/mdata-user-data - wb: [256] 18 bytes
2016-02-10 15:53:54,061 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,061 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,061 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,061 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,066 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,066 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,066 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,066 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,066 - DataSourceSmartOS.py[DEBUG]: Instance provisioning state set as successful
2016-02-10 15:53:54,066 - stages.py[INFO]: Loaded datasource DataSourceSmartOS - DataSourceSmartOS [seed=/native/.zonecontrol/metadata.sock]
2016-02-10 15:53:54,066 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2016-02-10 15:53:54,067 - util.py[DEBUG]: Read 0 bytes from /proc/cmdline
2016-02-10 15:53:54,067 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2016-02-10 15:53:54,067 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2016-02-10 15:53:54,067 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,131 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2016-02-10 15:53:54,138 - util.py[DEBUG]: Read 84 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2016-02-10 15:53:54,138 - util.py[DEBUG]: Attempting to load yaml from string of length 84 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,138 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/80-smartos.cfg (quiet=False)
2016-02-10 15:53:54,139 - util.py[DEBUG]: Read 1178 bytes from /etc/cloud/cloud.cfg.d/80-smartos.cfg
2016-02-10 15:53:54,139 - util.py[DEBUG]: Attempting to load yaml from string of length 1178 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,153 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2016-02-10 15:53:54,153 - util.py[DEBUG]: Read 1908 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2016-02-10 15:53:54,153 - util.py[DEBUG]: Attempting to load yaml from string of length 1908 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,167 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,167 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,167 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,167 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,167 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,167 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,167 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,167 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,167 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,174 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,174 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,174 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,174 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,174 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,174 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,174 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,174 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,174 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,174 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,175 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,175 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,175 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,182 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,182 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,182 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,182 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,182 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,182 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,182 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,182 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,182 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,182 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,183 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,183 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,183 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,183 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,183 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,183 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,183 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,183 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,183 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,183 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,191 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,191 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,191 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,191 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,191 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,191 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,191 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,191 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,191 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,191 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,192 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,192 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,192 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,192 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,192 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,192 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,192 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,192 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,192 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,192 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,200 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2016-02-10 15:53:54,200 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa'
2016-02-10 15:53:54,201 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/datasource (quiet=False)
2016-02-10 15:53:54,201 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/datasource - wb: [420] 79 bytes
2016-02-10 15:53:54,201 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 79 bytes
2016-02-10 15:53:54,208 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2016-02-10 15:53:54,208 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 37 bytes
2016-02-10 15:53:54,208 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 37 bytes
2016-02-10 15:53:54,209 - cloud-init[DEBUG]: init will now be targeting instance id: f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa
2016-02-10 15:53:54,209 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2016-02-10 15:53:54,209 - util.py[DEBUG]: Read 0 bytes from /proc/cmdline
2016-02-10 15:53:54,209 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2016-02-10 15:53:54,209 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2016-02-10 15:53:54,209 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,252 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2016-02-10 15:53:54,252 - util.py[DEBUG]: Read 84 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2016-02-10 15:53:54,252 - util.py[DEBUG]: Attempting to load yaml from string of length 84 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,259 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/80-smartos.cfg (quiet=False)
2016-02-10 15:53:54,259 - util.py[DEBUG]: Read 1178 bytes from /etc/cloud/cloud.cfg.d/80-smartos.cfg
2016-02-10 15:53:54,259 - util.py[DEBUG]: Attempting to load yaml from string of length 1178 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,273 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2016-02-10 15:53:54,274 - util.py[DEBUG]: Read 1908 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2016-02-10 15:53:54,274 - util.py[DEBUG]: Attempting to load yaml from string of length 1908 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,283 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,283 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,283 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,283 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,283 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,284 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,284 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,284 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,284 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,284 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,284 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,284 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,284 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,284 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,284 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,291 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,291 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,291 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,291 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,291 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,291 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,291 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,291 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,291 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,291 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,292 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,292 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,292 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,299 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,299 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,299 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,299 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,299 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,299 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,299 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,299 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,299 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,299 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,300 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,300 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,300 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,300 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,300 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,300 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,300 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,300 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,300 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,300 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,300 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,301 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,301 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,301 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,301 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,301 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,301 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,301 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,301 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,301 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,301 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,308 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,308 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,308 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,308 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 8132 bytes
2016-02-10 15:53:54,309 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/user-data.txt - wb: [384] 4 bytes
2016-02-10 15:53:54,324 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/user-data.txt.i - wb: [384] 345 bytes
2016-02-10 15:53:54,324 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/vendor-data.txt - wb: [384] 865 bytes
2016-02-10 15:53:54,325 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/vendor-data.txt.i - wb: [384] 1209 bytes
2016-02-10 15:53:54,330 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-02-10 15:53:54,330 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-02-10 15:53:54,330 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-02-10 15:53:54,331 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-02-10 15:53:54,331 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/consume_data - wb: [420] 21 bytes
2016-02-10 15:53:54,331 - helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/consume_data'>)
2016-02-10 15:53:54,338 - stages.py[DEBUG]: Added default handler for set(['text/cloud-config-jsonp', 'text/cloud-config']) from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2016-02-10 15:53:54,338 - stages.py[DEBUG]: Added default handler for set(['text/x-shellscript']) from ShellScriptPartHandler: [['text/x-shellscript']]
2016-02-10 15:53:54,338 - stages.py[DEBUG]: Added default handler for set(['text/cloud-boothook']) from BootHookPartHandler: [['text/cloud-boothook']]
2016-02-10 15:53:54,338 - stages.py[DEBUG]: Added default handler for set(['text/upstart-job']) from UpstartJobPartHandler: [['text/upstart-job']]
2016-02-10 15:53:54,338 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,339 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,339 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2016-02-10 15:53:54,339 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,339 - __init__.py[DEBUG]: {'Content-Type': 'text/x-not-multipart', 'Content-Disposition': 'attachment; filename="part-001"', 'MIME-Version': '1.0'}
2016-02-10 15:53:54,339 - __init__.py[DEBUG]: Empty payload of type text/x-not-multipart
2016-02-10 15:53:54,339 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,339 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,339 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2016-02-10 15:53:54,347 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/cloud-config.txt - wb: [384] 0 bytes
2016-02-10 15:53:54,347 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,347 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2016-02-10 15:53:54,348 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2016-02-10 15:53:54,348 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,348 - util.py[DEBUG]: load_yaml given empty string, returning default
2016-02-10 15:53:54,348 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,348 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,348 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,348 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,348 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,348 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,355 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,355 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,355 - stages.py[DEBUG]: vendor data will be consumed. disabled_handlers=None
2016-02-10 15:53:54,355 - stages.py[DEBUG]: Added default handler for set(['text/cloud-config-jsonp', 'text/cloud-config']) from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2016-02-10 15:53:54,355 - stages.py[DEBUG]: Added default handler for set(['text/x-shellscript']) from ShellScriptPartHandler: [['text/x-shellscript']]
2016-02-10 15:53:54,355 - stages.py[DEBUG]: Added default handler for set(['text/cloud-boothook']) from BootHookPartHandler: [['text/cloud-boothook']]
2016-02-10 15:53:54,355 - stages.py[DEBUG]: Added default handler for set(['text/upstart-job']) from UpstartJobPartHandler: [['text/upstart-job']]
2016-02-10 15:53:54,356 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,356 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,356 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2016-02-10 15:53:54,356 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,356 - __init__.py[DEBUG]: {'Content-Type': 'text/cloud-boothook', 'Content-Disposition': 'attachment; filename="part-001"', 'MIME-Version': '1.0'}
2016-02-10 15:53:54,356 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (text/cloud-boothook, part-001, 2) with frequency once-per-instance
2016-02-10 15:53:54,364 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/boothooks/part-001 - wb: [448] 849 bytes
2016-02-10 15:53:54,364 - util.py[DEBUG]: Running command ['/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/boothooks/part-001'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:54,442 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,448 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,448 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2016-02-10 15:53:54,448 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/vendor-cloud-config.txt - wb: [384] 0 bytes
2016-02-10 15:53:54,448 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2016-02-10 15:53:54,449 - util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
2016-02-10 15:53:54,449 - util.py[DEBUG]: Read 0 bytes from /proc/cmdline
2016-02-10 15:53:54,449 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2016-02-10 15:53:54,449 - util.py[DEBUG]: Read 2960 bytes from /etc/cloud/cloud.cfg
2016-02-10 15:53:54,458 - util.py[DEBUG]: Attempting to load yaml from string of length 2960 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,501 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2016-02-10 15:53:54,501 - util.py[DEBUG]: Read 84 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2016-02-10 15:53:54,502 - util.py[DEBUG]: Attempting to load yaml from string of length 84 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,502 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/80-smartos.cfg (quiet=False)
2016-02-10 15:53:54,502 - util.py[DEBUG]: Read 1178 bytes from /etc/cloud/cloud.cfg.d/80-smartos.cfg
2016-02-10 15:53:54,502 - util.py[DEBUG]: Attempting to load yaml from string of length 1178 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,521 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2016-02-10 15:53:54,521 - util.py[DEBUG]: Read 1908 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2016-02-10 15:53:54,521 - util.py[DEBUG]: Attempting to load yaml from string of length 1908 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,536 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,536 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,536 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,536 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,536 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,536 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,536 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,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'
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,537 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,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'
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,537 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,544 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,544 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,544 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,544 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,544 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,544 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,544 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,544 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,544 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,545 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,545 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,545 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,545 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,545 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,545 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,545 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,545 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,545 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,545 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,545 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,553 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,553 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,553 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,553 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,553 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,553 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,553 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,553 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,553 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,554 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,554 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,554 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,554 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,554 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,554 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,554 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,554 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,554 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,554 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,554 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,555 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,555 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,555 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,555 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2016-02-10 15:53:54,555 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2016-02-10 15:53:54,555 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,555 - util.py[DEBUG]: load_yaml given empty string, returning default
2016-02-10 15:53:54,555 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/vendor-cloud-config.txt (quiet=False)
2016-02-10 15:53:54,555 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/vendor-cloud-config.txt
2016-02-10 15:53:54,555 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,562 - util.py[DEBUG]: load_yaml given empty string, returning default
2016-02-10 15:53:54,562 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,562 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,562 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,562 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,562 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,562 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,562 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,563 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,563 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2016-02-10 15:53:54,563 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2016-02-10 15:53:54,563 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,572 - util.py[DEBUG]: load_yaml given empty string, returning default
2016-02-10 15:53:54,572 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/vendor-cloud-config.txt (quiet=False)
2016-02-10 15:53:54,572 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/vendor-cloud-config.txt
2016-02-10 15:53:54,572 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<type 'dict'>,)
2016-02-10 15:53:54,572 - util.py[DEBUG]: load_yaml given empty string, returning default
2016-02-10 15:53:54,572 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,572 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,572 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,572 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,573 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,573 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,573 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,573 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,584 - importer.py[DEBUG]: Looking for modules ['cc_migrator', 'cloudinit.config.cc_migrator'] that have attributes ['handle']
2016-02-10 15:53:54,584 - importer.py[DEBUG]: Failed at attempted import of 'cc_migrator' due to: No module named cc_migrator
2016-02-10 15:53:54,592 - importer.py[DEBUG]: Found cc_migrator with attributes ['handle'] in ['cloudinit.config.cc_migrator']
2016-02-10 15:53:54,592 - importer.py[DEBUG]: Looking for modules ['cc_seed_random', 'cloudinit.config.cc_seed_random'] that have attributes ['handle']
2016-02-10 15:53:54,592 - importer.py[DEBUG]: Failed at attempted import of 'cc_seed_random' due to: No module named cc_seed_random
2016-02-10 15:53:54,592 - importer.py[DEBUG]: Found cc_seed_random with attributes ['handle'] in ['cloudinit.config.cc_seed_random']
2016-02-10 15:53:54,593 - importer.py[DEBUG]: Looking for modules ['cc_bootcmd', 'cloudinit.config.cc_bootcmd'] that have attributes ['handle']
2016-02-10 15:53:54,593 - importer.py[DEBUG]: Failed at attempted import of 'cc_bootcmd' due to: No module named cc_bootcmd
2016-02-10 15:53:54,593 - importer.py[DEBUG]: Found cc_bootcmd with attributes ['handle'] in ['cloudinit.config.cc_bootcmd']
2016-02-10 15:53:54,593 - importer.py[DEBUG]: Looking for modules ['cc_write_files', 'cloudinit.config.cc_write_files'] that have attributes ['handle']
2016-02-10 15:53:54,593 - importer.py[DEBUG]: Failed at attempted import of 'cc_write_files' due to: No module named cc_write_files
2016-02-10 15:53:54,599 - importer.py[DEBUG]: Found cc_write_files with attributes ['handle'] in ['cloudinit.config.cc_write_files']
2016-02-10 15:53:54,599 - importer.py[DEBUG]: Looking for modules ['cc_growpart', 'cloudinit.config.cc_growpart'] that have attributes ['handle']
2016-02-10 15:53:54,599 - importer.py[DEBUG]: Failed at attempted import of 'cc_growpart' due to: No module named cc_growpart
2016-02-10 15:53:54,600 - importer.py[DEBUG]: Found cc_growpart with attributes ['handle'] in ['cloudinit.config.cc_growpart']
2016-02-10 15:53:54,600 - importer.py[DEBUG]: Looking for modules ['cc_resizefs', 'cloudinit.config.cc_resizefs'] that have attributes ['handle']
2016-02-10 15:53:54,600 - importer.py[DEBUG]: Failed at attempted import of 'cc_resizefs' due to: No module named cc_resizefs
2016-02-10 15:53:54,600 - importer.py[DEBUG]: Found cc_resizefs with attributes ['handle'] in ['cloudinit.config.cc_resizefs']
2016-02-10 15:53:54,600 - importer.py[DEBUG]: Looking for modules ['cc_set_hostname', 'cloudinit.config.cc_set_hostname'] that have attributes ['handle']
2016-02-10 15:53:54,607 - importer.py[DEBUG]: Failed at attempted import of 'cc_set_hostname' due to: No module named cc_set_hostname
2016-02-10 15:53:54,607 - importer.py[DEBUG]: Found cc_set_hostname with attributes ['handle'] in ['cloudinit.config.cc_set_hostname']
2016-02-10 15:53:54,607 - importer.py[DEBUG]: Looking for modules ['cc_update_hostname', 'cloudinit.config.cc_update_hostname'] that have attributes ['handle']
2016-02-10 15:53:54,607 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_hostname' due to: No module named cc_update_hostname
2016-02-10 15:53:54,608 - importer.py[DEBUG]: Found cc_update_hostname with attributes ['handle'] in ['cloudinit.config.cc_update_hostname']
2016-02-10 15:53:54,608 - importer.py[DEBUG]: Looking for modules ['cc_update_etc_hosts', 'cloudinit.config.cc_update_etc_hosts'] that have attributes ['handle']
2016-02-10 15:53:54,608 - importer.py[DEBUG]: Failed at attempted import of 'cc_update_etc_hosts' due to: No module named cc_update_etc_hosts
2016-02-10 15:53:54,608 - importer.py[DEBUG]: Found cc_update_etc_hosts with attributes ['handle'] in ['cloudinit.config.cc_update_etc_hosts']
2016-02-10 15:53:54,608 - importer.py[DEBUG]: Looking for modules ['cc_ca_certs', 'cloudinit.config.cc_ca_certs'] that have attributes ['handle']
2016-02-10 15:53:54,608 - importer.py[DEBUG]: Failed at attempted import of 'cc_ca_certs' due to: No module named cc_ca_certs
2016-02-10 15:53:54,616 - importer.py[DEBUG]: Found cc_ca_certs with attributes ['handle'] in ['cloudinit.config.cc_ca_certs']
2016-02-10 15:53:54,616 - importer.py[DEBUG]: Looking for modules ['cc_rsyslog', 'cloudinit.config.cc_rsyslog'] that have attributes ['handle']
2016-02-10 15:53:54,616 - importer.py[DEBUG]: Failed at attempted import of 'cc_rsyslog' due to: No module named cc_rsyslog
2016-02-10 15:53:54,616 - importer.py[DEBUG]: Found cc_rsyslog with attributes ['handle'] in ['cloudinit.config.cc_rsyslog']
2016-02-10 15:53:54,616 - importer.py[DEBUG]: Looking for modules ['cc_users_groups', 'cloudinit.config.cc_users_groups'] that have attributes ['handle']
2016-02-10 15:53:54,617 - importer.py[DEBUG]: Failed at attempted import of 'cc_users_groups' due to: No module named cc_users_groups
2016-02-10 15:53:54,617 - importer.py[DEBUG]: Found cc_users_groups with attributes ['handle'] in ['cloudinit.config.cc_users_groups']
2016-02-10 15:53:54,617 - importer.py[DEBUG]: Looking for modules ['cc_ssh', 'cloudinit.config.cc_ssh'] that have attributes ['handle']
2016-02-10 15:53:54,617 - importer.py[DEBUG]: Failed at attempted import of 'cc_ssh' due to: No module named cc_ssh
2016-02-10 15:53:54,617 - importer.py[DEBUG]: Found cc_ssh with attributes ['handle'] in ['cloudinit.config.cc_ssh']
2016-02-10 15:53:54,618 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-02-10 15:53:54,618 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-02-10 15:53:54,618 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-02-10 15:53:54,618 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-02-10 15:53:54,625 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7ffffd495e50>)
2016-02-10 15:53:54,625 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2016-02-10 15:53:54,625 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_seed_random - wb: [420] 21 bytes
2016-02-10 15:53:54,626 - helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_seed_random'>)
2016-02-10 15:53:54,626 - util.py[DEBUG]: Running command ['pollinate', '-q'] with allowed return codes [0] (shell=False, capture=False)
Cloud-init v. 0.7.5 running 'modules:final' at Wed, 10 Feb 2016 15:53:54 +0000. Up 7.85 seconds.
2016-02-10 15:53:54,724 - util.py[DEBUG]: Cloud-init v. 0.7.5 running 'modules:final' at Wed, 10 Feb 2016 15:53:54 +0000. Up 7.85 seconds.
2016-02-10 15:53:54,725 - importer.py[DEBUG]: Looking for modules ['cc_scripts_per_once', 'cloudinit.config.cc_scripts_per_once'] that have attributes ['handle']
2016-02-10 15:53:54,725 - importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_once' due to: No module named cc_scripts_per_once
2016-02-10 15:53:54,725 - importer.py[DEBUG]: Found cc_scripts_per_once with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_once']
2016-02-10 15:53:54,725 - importer.py[DEBUG]: Looking for modules ['cc_scripts_per_boot', 'cloudinit.config.cc_scripts_per_boot'] that have attributes ['handle']
2016-02-10 15:53:54,732 - importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_boot' due to: No module named cc_scripts_per_boot
2016-02-10 15:53:54,732 - importer.py[DEBUG]: Found cc_scripts_per_boot with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_boot']
2016-02-10 15:53:54,732 - importer.py[DEBUG]: Looking for modules ['cc_scripts_per_instance', 'cloudinit.config.cc_scripts_per_instance'] that have attributes ['handle']
2016-02-10 15:53:54,732 - importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_per_instance' due to: No module named cc_scripts_per_instance
2016-02-10 15:53:54,732 - importer.py[DEBUG]: Found cc_scripts_per_instance with attributes ['handle'] in ['cloudinit.config.cc_scripts_per_instance']
2016-02-10 15:53:54,733 - importer.py[DEBUG]: Looking for modules ['cc_scripts_user', 'cloudinit.config.cc_scripts_user'] that have attributes ['handle']
2016-02-10 15:53:54,733 - importer.py[DEBUG]: Failed at attempted import of 'cc_scripts_user' due to: No module named cc_scripts_user
2016-02-10 15:53:54,733 - importer.py[DEBUG]: Found cc_scripts_user with attributes ['handle'] in ['cloudinit.config.cc_scripts_user']
2016-02-10 15:53:54,733 - importer.py[DEBUG]: Looking for modules ['cc_ssh_authkey_fingerprints', 'cloudinit.config.cc_ssh_authkey_fingerprints'] that have attributes ['handle']
2016-02-10 15:53:54,733 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7ffffd495490>)
2016-02-10 15:53:54,733 - importer.py[DEBUG]: Failed at attempted import of 'cc_ssh_authkey_fingerprints' due to: No module named cc_ssh_authkey_fingerprints
2016-02-10 15:53:54,734 - importer.py[DEBUG]: Found cc_ssh_authkey_fingerprints with attributes ['handle'] in ['cloudinit.config.cc_ssh_authkey_fingerprints']
2016-02-10 15:53:54,734 - importer.py[DEBUG]: Looking for modules ['cc_keys_to_console', 'cloudinit.config.cc_keys_to_console'] that have attributes ['handle']
2016-02-10 15:53:54,734 - importer.py[DEBUG]: Failed at attempted import of 'cc_keys_to_console' due to: No module named cc_keys_to_console
2016-02-10 15:53:54,734 - importer.py[DEBUG]: Found cc_keys_to_console with attributes ['handle'] in ['cloudinit.config.cc_keys_to_console']
2016-02-10 15:53:54,734 - importer.py[DEBUG]: Looking for modules ['cc_phone_home', 'cloudinit.config.cc_phone_home'] that have attributes ['handle']
2016-02-10 15:53:54,734 - importer.py[DEBUG]: Failed at attempted import of 'cc_phone_home' due to: No module named cc_phone_home
2016-02-10 15:53:54,739 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2016-02-10 15:53:54,739 - importer.py[DEBUG]: Found cc_phone_home with attributes ['handle'] in ['cloudinit.config.cc_phone_home']
2016-02-10 15:53:54,739 - importer.py[DEBUG]: Looking for modules ['cc_final_message', 'cloudinit.config.cc_final_message'] that have attributes ['handle']
2016-02-10 15:53:54,739 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_write_files - wb: [420] 21 bytes
2016-02-10 15:53:54,739 - importer.py[DEBUG]: Failed at attempted import of 'cc_final_message' due to: No module named cc_final_message
2016-02-10 15:53:54,739 - importer.py[DEBUG]: Found cc_final_message with attributes ['handle'] in ['cloudinit.config.cc_final_message']
2016-02-10 15:53:54,740 - helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_write_files'>)
2016-02-10 15:53:54,740 - importer.py[DEBUG]: Looking for modules ['ubuntu', 'cloudinit.distros.ubuntu'] that have attributes ['Distro']
2016-02-10 15:53:54,740 - cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
2016-02-10 15:53:54,740 - importer.py[DEBUG]: Failed at attempted import of 'ubuntu' due to: No module named ubuntu
2016-02-10 15:53:54,740 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7ffffd495f50>)
2016-02-10 15:53:54,740 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg. Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
2016-02-10 15:53:54,740 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:54,740 - importer.py[DEBUG]: Found ubuntu with attributes ['Distro'] in ['cloudinit.distros.ubuntu']
2016-02-10 15:53:54,740 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2016-02-10 15:53:54,741 - util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [420] 21 bytes
2016-02-10 15:53:54,741 - helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
2016-02-10 15:53:54,745 - helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7ffffd494b50>)
2016-02-10 15:53:54,745 - util.py[DEBUG]: Running command ['/var/lib/cloud/scripts/per-boot/01_smartos_vendor_data.sh'] with allowed return codes [0] (shell=False, capture=False)
executing '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/data/user-script'
2016-02-10 15:53:54,780 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_scripts_per_instance - wb: [420] 21 bytes
2016-02-10 15:53:54,781 - helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_scripts_per_instance'>)
2016-02-10 15:53:54,781 - util.py[DEBUG]: Reading from /proc/67283/mountinfo (quiet=False)
2016-02-10 15:53:54,781 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_scripts_user - wb: [420] 21 bytes
2016-02-10 15:53:54,784 - helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_scripts_user'>)
2016-02-10 15:53:54,784 - util.py[DEBUG]: Read 1171 bytes from /proc/67283/mountinfo
2016-02-10 15:53:54,784 - util.py[DEBUG]: resize_devices took 0.003 seconds
2016-02-10 15:53:54,784 - cc_growpart.py[DEBUG]: '/' SKIPPED: device '/' not a block device
2016-02-10 15:53:54,784 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_ssh_authkey_fingerprints - wb: [420] 21 bytes
2016-02-10 15:53:54,785 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7ffffd495b90>)
2016-02-10 15:53:54,785 - helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_ssh_authkey_fingerprints'>)
2016-02-10 15:53:54,785 - util.py[DEBUG]: Reading from /proc/67283/mountinfo (quiet=False)
2016-02-10 15:53:54,785 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,785 - util.py[DEBUG]: Read 1171 bytes from /proc/67283/mountinfo
2016-02-10 15:53:54,785 - cc_resizefs.py[DEBUG]: resize_info: dev=/ mnt_point=/ path=/
2016-02-10 15:53:54,785 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:54,785 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,785 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,785 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,785 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,785 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,791 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,791 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,791 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,791 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,791 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,791 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,791 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,791 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,791 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,792 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,792 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,792 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,792 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,792 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,792 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,792 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,792 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,792 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,798 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2016-02-10 15:53:54,798 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2016-02-10 15:53:54,798 - util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
2016-02-10 15:53:54,798 - util.py[DEBUG]: Read 1947 bytes from /home/ubuntu/.ssh/authorized_keys
2016-02-10 15:53:54,806 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_keys_to_console - wb: [420] 21 bytes
2016-02-10 15:53:54,806 - helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_keys_to_console'>)
2016-02-10 15:53:54,806 - util.py[DEBUG]: Running command ['/usr/lib/cloud-init/write-ssh-key-fingerprints', '', 'ssh-dss'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:54,848 - cc_resizefs.py[DEBUG]: device '/' not a block device in container. cannot resize: dev=/ mnt_point=/ path=/
2016-02-10 15:53:54,851 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_set_hostname - wb: [420] 21 bytes
2016-02-10 15:53:54,851 - helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_set_hostname'>)
2016-02-10 15:53:54,852 - cc_set_hostname.py[DEBUG]: Setting the hostname to f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa.localdomain (f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa)
2016-02-10 15:53:54,852 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2016-02-10 15:53:54,852 - util.py[DEBUG]: Read 37 bytes from /etc/hostname
2016-02-10 15:53:54,852 - util.py[DEBUG]: Writing to /etc/hostname - wb: [420] 37 bytes
2016-02-10 15:53:54,853 - __init__.py[DEBUG]: Non-persistently setting the system hostname to f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa
2016-02-10 15:53:54,853 - util.py[DEBUG]: Running command ['hostname', 'f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:54,871 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7ffffd495490>)
2016-02-10 15:53:54,871 - cc_update_hostname.py[DEBUG]: Updating hostname to f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa.localdomain (f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa)
2016-02-10 15:53:54,871 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2016-02-10 15:53:54,875 - util.py[DEBUG]: Read 37 bytes from /etc/hostname
2016-02-10 15:53:54,875 - __init__.py[DEBUG]: Attempting to update hostname to f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa in 1 files
2016-02-10 15:53:54,875 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2016-02-10 15:53:54,875 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [420] 37 bytes
2016-02-10 15:53:54,876 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7ffffd495d50>)
2016-02-10 15:53:54,876 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2016-02-10 15:53:54,876 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_ca_certs - wb: [420] 21 bytes
2016-02-10 15:53:54,880 - helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_ca_certs'>)
2016-02-10 15:53:54,880 - cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
2016-02-10 15:53:54,880 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_rsyslog - wb: [420] 21 bytes
2016-02-10 15:53:54,881 - helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_rsyslog'>)
2016-02-10 15:53:54,881 - cc_rsyslog.py[DEBUG]: Skipping module named rsyslog, no 'rsyslog' key in configuration
2016-02-10 15:53:54,881 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_users_groups - wb: [420] 21 bytes
2016-02-10 15:53:54,881 - helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_users_groups'>)
2016-02-10 15:53:54,886 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,886 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,886 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,886 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,886 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,886 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,886 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,887 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,887 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,887 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,887 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,887 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,887 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,887 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,887 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,887 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,887 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:54,892 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:54,892 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:54,892 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:54,892 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:54,892 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:54,892 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:54,892 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:54,892 - __init__.py[INFO]: User ubuntu already exists, skipping.
2016-02-10 15:53:54,893 - util.py[DEBUG]: Running command ['passwd', '-l', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:54,942 - util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
2016-02-10 15:53:54,942 - util.py[DEBUG]: Read 745 bytes from /etc/sudoers
2016-02-10 15:53:54,943 - util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - ab: [None] 55 bytes
2016-02-10 15:53:54,944 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_ssh - wb: [420] 21 bytes
2016-02-10 15:53:54,944 - helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_ssh'>)
2016-02-10 15:53:54,945 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ecdsa_key.pub
2016-02-10 15:53:54,945 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_rsa_key.pub
2016-02-10 15:53:54,945 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ecdsa_key
2016-02-10 15:53:54,945 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_dsa_key.pub
2016-02-10 15:53:54,945 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_rsa_key
2016-02-10 15:53:54,945 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ed25519_key.pub
2016-02-10 15:53:54,945 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_dsa_key
2016-02-10 15:53:54,949 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ed25519_key
2016-02-10 15:53:54,949 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'rsa', '-N', '', '-f', '/etc/ssh/ssh_host_rsa_key'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:54,955 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_phone_home - wb: [420] 21 bytes
2016-02-10 15:53:54,956 - helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa/sem/config_phone_home'>)
2016-02-10 15:53:54,956 - cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
2016-02-10 15:53:54,957 - helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7ffffd494a50>)
2016-02-10 15:53:54,957 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2016-02-10 15:53:54,957 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
Cloud-init v. 0.7.5 finished at Wed, 10 Feb 2016 15:53:54 +0000. Datasource DataSourceSmartOS [seed=/native/.zonecontrol/metadata.sock]. Up 8.30 seconds
2016-02-10 15:53:54,969 - util.py[DEBUG]: Cloud-init v. 0.7.5 finished at Wed, 10 Feb 2016 15:53:54 +0000. Datasource DataSourceSmartOS [seed=/native/.zonecontrol/metadata.sock]. Up 8.30 seconds
2016-02-10 15:53:54,969 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 50 bytes
2016-02-10 15:53:54,969 - cloud-init[DEBUG]: Ran 8 modules with 0 failures
2016-02-10 15:53:54,974 - util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
2016-02-10 15:53:54,974 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2016-02-10 15:53:54,975 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2016-02-10 15:53:54,975 - util.py[DEBUG]: cloud-init mode 'modules' took 0.473 seconds (0.47)
2016-02-10 15:53:55,456 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'dsa', '-N', '', '-f', '/etc/ssh/ssh_host_dsa_key'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:55,605 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ecdsa', '-N', '', '-f', '/etc/ssh/ssh_host_ecdsa_key'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:55,618 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ed25519', '-N', '', '-f', '/etc/ssh/ssh_host_ed25519_key'] with allowed return codes [0] (shell=False, capture=True)
2016-02-10 15:53:55,635 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:55,636 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:55,636 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:55,636 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:55,636 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:55,636 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:55,636 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:55,636 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:55,636 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:55,637 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:55,637 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:55,637 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:55,637 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:55,637 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:55,637 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:55,637 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:55,637 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_list'] that have attributes ['Merger']
2016-02-10 15:53:55,637 - importer.py[DEBUG]: Found m_list with attributes ['Merger'] in ['cloudinit.mergers.m_list']
2016-02-10 15:53:55,637 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_dict'] that have attributes ['Merger']
2016-02-10 15:53:55,640 - importer.py[DEBUG]: Found m_dict with attributes ['Merger'] in ['cloudinit.mergers.m_dict']
2016-02-10 15:53:55,640 - importer.py[DEBUG]: Looking for modules ['cloudinit.mergers.m_str'] that have attributes ['Merger']
2016-02-10 15:53:55,640 - importer.py[DEBUG]: Found m_str with attributes ['Merger'] in ['cloudinit.mergers.m_str']
2016-02-10 15:53:55,640 - __init__.py[DEBUG]: Merging 'dict' into 'dict' using method '_handle_unknown' of 'LookupMerger: (3)'
2016-02-10 15:53:55,640 - __init__.py[DEBUG]: Merging using located merger 'DictMerger: (method=no_replace,recurse_str=False,recurse_dict=True,recurse_array=False,allow_delete=False)' since it had method '_on_dict'
2016-02-10 15:53:55,641 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2016-02-10 15:53:55,641 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2016-02-10 15:53:55,641 - util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
2016-02-10 15:53:55,641 - util.py[DEBUG]: Read 1947 bytes from /home/ubuntu/.ssh/authorized_keys
2016-02-10 15:53:55,644 - util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [384] 1947 bytes
2016-02-10 15:53:55,644 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1000:1000
2016-02-10 15:53:55,645 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2016-02-10 15:53:55,645 - util.py[DEBUG]: Read 2539 bytes from /etc/ssh/sshd_config
2016-02-10 15:53:55,645 - util.py[DEBUG]: Reading from /root/.ssh/authorized_keys (quiet=False)
2016-02-10 15:53:55,645 - util.py[DEBUG]: Read 1653 bytes from /root/.ssh/authorized_keys
2016-02-10 15:53:55,647 - util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [384] 1653 bytes
2016-02-10 15:53:55,647 - util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
2016-02-10 15:53:55,648 - cloud-init[DEBUG]: Ran 13 modules with 0 failures
2016-02-10 15:53:55,648 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2016-02-10 15:53:55,650 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2016-02-10 15:53:55,650 - util.py[DEBUG]: cloud-init mode 'init' took 2.121 seconds (2.12)
Generating public/private rsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
The key fingerprint is:
46:b5:83:8f:45:11:b1:47:d1:94:cf:67:eb:31:af:98 root@f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa
The key's randomart image is:
+--[ RSA 2048]----+
| *+o+.. |
| + + o |
| o = . o |
| . + o =|
| S . .o|
| . + |
| . +|
| o ..|
| E .. |
+-----------------+
Generating public/private dsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
The key fingerprint is:
c0:87:8c:ec:62:73:3e:d3:a6:71:ae:45:a5:12:2e:47 root@f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa
The key's randomart image is:
+--[ DSA 1024]----+
| |
| . + . |
| E = o |
| + . = |
| = * o S |
| . B + |
| = = |
| X |
| o.. |
+-----------------+
Generating public/private ecdsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
The key fingerprint is:
8a:ce:05:00:4c:0d:c7:27:e8:b7:cb:a6:63:92:d8:26 root@f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa
The key's randomart image is:
+--[ECDSA 256]---+
|+o=. |
| +.+ . |
|. . o |
| . o |
| . o S |
| . o . |
|.o. o o |
|Eoo* . |
|o++ o |
+-----------------+
Generating public/private ed25519 key pair.
Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
The key fingerprint is:
30:17:d4:45:f3:2f:c0:2d:ad:da:af:5c:80:5e:34:2f root@f7644e3a-a6ff-45fd-bc8a-28a4437dfbaa
The key's randomart image is:
+--[ED25519 256--+
| .o. o+ |
| ... = |
| o . * + |
| + o * . |
| S . E o .|
| . + o . |
| o . . |
| . o |
| o.. |
+-----------------+
|