1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011 | 2017-02-22 12:33:54,752 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'init-local' at Wed, 22 Feb 2017 11:33:54 +0000. Up 19.82 seconds.
2017-02-22 12:33:54,755 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2017-02-22 12:33:54,755 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-02-22 12:33:54,755 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2017-02-22 12:33:54,756 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2017-02-22 12:33:54,756 - handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
2017-02-22 12:33:54,756 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-02-22 12:33:54,756 - stages.py[DEBUG]: no cache found
2017-02-22 12:33:54,756 - handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: no cache found
2017-02-22 12:33:54,756 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-02-22 12:33:54,779 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-22 12:33:54,779 - __init__.py[DEBUG]: Looking for for data source in: ['Ec2'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2017-02-22 12:33:54,781 - __init__.py[DEBUG]: Searching for local data source in: []
2017-02-22 12:33:54,781 - main.py[DEBUG]: No local datasource found
2017-02-22 12:33:54,781 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/carrier (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/dormant (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/operstate (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s3/operstate
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/carrier (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/dormant (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/operstate (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s8/operstate
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/address (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s3/address
2017-02-22 12:33:54,782 - stages.py[DEBUG]: applying net config names for {'config': [{'mac_address': '08:00:27:ea:72:bf', 'subnets': [{'type': 'dhcp'}], 'name': 'enp0s3', 'type': 'physical'}], 'version': 1}
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-02-22 12:33:54,782 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/operstate (quiet=False)
2017-02-22 12:33:54,782 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s3/operstate
2017-02-22 12:33:54,783 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/address (quiet=False)
2017-02-22 12:33:54,783 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s3/address
2017-02-22 12:33:54,783 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/operstate (quiet=False)
2017-02-22 12:33:54,783 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s8/operstate
2017-02-22 12:33:54,783 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/address (quiet=False)
2017-02-22 12:33:54,783 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s8/address
2017-02-22 12:33:54,783 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:33:54,966 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:33:54,973 - __init__.py[DEBUG]: no work necessary for renaming of [['08:00:27:ea:72:bf', 'enp0s3']]
2017-02-22 12:33:54,973 - stages.py[INFO]: Applying network configuration from fallback bringup=False: {'config': [{'mac_address': '08:00:27:ea:72:bf', 'subnets': [{'type': 'dhcp'}], 'name': 'enp0s3', 'type': 'physical'}], 'version': 1}
2017-02-22 12:33:54,975 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 371 bytes
2017-02-22 12:33:54,975 - main.py[DEBUG]: [local] Exiting without datasource in local mode
2017-02-22 12:33:54,976 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-22 12:33:54,976 - util.py[DEBUG]: Read 11 bytes from /proc/uptime
2017-02-22 12:33:54,976 - util.py[DEBUG]: cloud-init mode 'init' took 0.346 seconds (0.35)
2017-02-22 12:33:54,976 - handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
2017-02-22 12:33:56,061 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'init' at Wed, 22 Feb 2017 11:33:56 +0000. Up 21.24 seconds.
2017-02-22 12:33:56,063 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2017-02-22 12:33:56,064 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-02-22 12:33:56,064 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:33:56,148 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:33:56,177 - util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:33:56,179 - main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2017-02-22 12:33:56,179 - main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
2017-02-22 12:33:56,179 - handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
2017-02-22 12:33:56,179 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-02-22 12:33:56,180 - stages.py[DEBUG]: no cache found
2017-02-22 12:33:56,180 - handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: no cache found
2017-02-22 12:33:56,180 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-02-22 12:33:56,181 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-22 12:33:56,182 - __init__.py[DEBUG]: Looking for for data source in: ['Ec2'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2017-02-22 12:33:56,183 - __init__.py[DEBUG]: Searching for network data source in: ['DataSourceEc2']
2017-02-22 12:33:56,183 - handlers.py[DEBUG]: start: init-network/search-Ec2: searching for network data from DataSourceEc2
2017-02-22 12:33:56,183 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceEc2.DataSourceEc2'>
2017-02-22 12:33:56,183 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/ec2/meta-data (quiet=False)
2017-02-22 12:33:56,977 - DataSourceEc2.py[DEBUG]: Removed the following from metadata urls: ['http://instance-data.:8773']
2017-02-22 12:33:56,978 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:33:57,000 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [0/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534feb5128>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:33:57,001 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:33:58,003 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:33:58,005 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [1/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534feb8710>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:33:58,006 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:33:59,009 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:33:59,010 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [2/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec19e8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:33:59,011 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:34:00,013 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:00,014 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [3/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec1710>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:00,015 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:34:01,017 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:01,019 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [4/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe8f240>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:01,020 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:34:02,021 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:02,023 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [5/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec1a90>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:02,023 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:34:04,026 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:04,028 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [7/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534feb84a8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:04,029 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:34:06,032 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:06,034 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [9/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534feb88d0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:06,034 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:34:08,037 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:08,038 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [11/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe8fa58>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:08,039 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:34:10,042 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:10,044 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [13/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe952b0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:10,044 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:34:12,047 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:12,049 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [15/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe8f0f0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:12,049 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:34:15,054 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:15,055 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [18/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534feb8c18>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:15,056 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:34:24,209 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:24,210 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [27/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec1160>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:24,211 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:34:27,215 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:27,217 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [30/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe95048>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:27,217 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:34:30,221 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:30,223 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [33/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe95ac8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:30,224 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:34:33,228 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:33,231 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [36/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534feb87f0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:33,231 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:34:37,236 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:37,237 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [40/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec1208>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:37,238 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:34:41,243 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:41,244 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [44/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec1cf8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:41,245 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:34:45,250 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:45,251 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [48/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe8f5c0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:45,252 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:34:49,257 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:49,258 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [52/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe8fdd8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:49,259 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:34:53,264 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:53,266 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [56/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534feb88d0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:53,266 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:34:58,272 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:34:58,274 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [61/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec1dd8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:34:58,274 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:35:03,280 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:03,282 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [66/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec1048>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:03,282 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:35:08,288 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 48.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:08,290 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [71/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe8f710>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:08,291 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:35:13,297 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 43.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:13,299 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [76/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534febe2b0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:13,299 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:35:18,305 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 38.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:18,308 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [81/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe955c0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:18,308 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:35:24,316 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 32.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:24,317 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [87/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe8f710>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:24,318 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:35:30,325 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 26.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:30,327 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [93/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534feb83c8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:30,328 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:35:36,335 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 20.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:36,337 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [99/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec19e8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:36,338 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:35:42,345 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 14.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:42,347 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [105/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe95a90>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:42,347 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:35:48,355 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 8.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:48,356 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [111/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fe95320>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:48,357 - url_helper.py[DEBUG]: Please wait 7 seconds while we wait to try again
2017-02-22 12:35:55,366 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 1.0, 'allow_redirects': True, 'method': 'GET', 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-02-22 12:35:55,368 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [118/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f534fec1668>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:35:55,369 - url_helper.py[DEBUG]: Please wait 7 seconds while we wait to try again
2017-02-22 12:36:02,378 - DataSourceEc2.py[CRITICAL]: Giving up on md from ['http://169.254.169.254/2009-04-04/meta-data/instance-id'] after 125 seconds
2017-02-22 12:36:02,378 - handlers.py[DEBUG]: finish: init-network/search-Ec2: SUCCESS: no network data found from DataSourceEc2
2017-02-22 12:36:02,378 - util.py[WARNING]: No instance datasource found! Likely bad things to come!
2017-02-22 12:36:02,379 - util.py[DEBUG]: No instance datasource found! Likely bad things to come!
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/cloudinit/cmd/main.py", line 236, in main_init
init.fetch(existing=existing)
File "/usr/lib/python3/dist-packages/cloudinit/stages.py", line 342, in fetch
return self._get_data_source(existing=existing)
File "/usr/lib/python3/dist-packages/cloudinit/stages.py", line 252, in _get_data_source
pkg_list, self.reporter)
File "/usr/lib/python3/dist-packages/cloudinit/sources/__init__.py", line 320, in find_source
raise DataSourceNotFoundException(msg)
cloudinit.sources.DataSourceNotFoundException: Did not find any data source, searched classes: (DataSourceEc2)
2017-02-22 12:36:02,431 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/carrier (quiet=False)
2017-02-22 12:36:02,431 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/dormant (quiet=False)
2017-02-22 12:36:02,431 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/operstate (quiet=False)
2017-02-22 12:36:02,431 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s8/operstate
2017-02-22 12:36:02,431 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/carrier (quiet=False)
2017-02-22 12:36:02,432 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp0s3/carrier
2017-02-22 12:36:02,432 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/address (quiet=False)
2017-02-22 12:36:02,432 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s3/address
2017-02-22 12:36:02,432 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'name': 'enp0s3', 'subnets': [{'type': 'dhcp'}], 'type': 'physical', 'mac_address': '08:00:27:ea:72:bf'}]}
2017-02-22 12:36:02,432 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-02-22 12:36:02,432 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-02-22 12:36:02,432 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-02-22 12:36:02,432 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-02-22 12:36:02,432 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/operstate (quiet=False)
2017-02-22 12:36:02,432 - util.py[DEBUG]: Read 3 bytes from /sys/class/net/enp0s3/operstate
2017-02-22 12:36:02,432 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/address (quiet=False)
2017-02-22 12:36:02,432 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s3/address
2017-02-22 12:36:02,432 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/operstate (quiet=False)
2017-02-22 12:36:02,432 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s8/operstate
2017-02-22 12:36:02,432 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/address (quiet=False)
2017-02-22 12:36:02,432 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s8/address
2017-02-22 12:36:02,433 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:36:02,435 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:36:02,437 - __init__.py[DEBUG]: no work necessary for renaming of [['08:00:27:ea:72:bf', 'enp0s3']]
2017-02-22 12:36:02,437 - stages.py[INFO]: Applying network configuration from fallback bringup=True: {'version': 1, 'config': [{'name': 'enp0s3', 'subnets': [{'type': 'dhcp'}], 'type': 'physical', 'mac_address': '08:00:27:ea:72:bf'}]}
2017-02-22 12:36:02,439 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 371 bytes
2017-02-22 12:36:02,439 - main.py[DEBUG]: [net] Exiting without datasource in local mode
2017-02-22 12:36:02,440 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-22 12:36:02,440 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-02-22 12:36:02,440 - util.py[DEBUG]: cloud-init mode 'init' took 126.401 seconds (120.25)
2017-02-22 12:36:02,440 - handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
2017-02-22 12:51:11,773 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'init-local' at Wed, 22 Feb 2017 11:51:11 +0000. Up 22.84 seconds.
2017-02-22 12:51:11,833 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2017-02-22 12:51:11,833 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-02-22 12:51:11,833 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2017-02-22 12:51:11,834 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2017-02-22 12:51:11,834 - handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
2017-02-22 12:51:11,834 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-02-22 12:51:11,834 - stages.py[DEBUG]: no cache found
2017-02-22 12:51:11,834 - handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: no cache found
2017-02-22 12:51:11,834 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-02-22 12:51:11,875 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-22 12:51:11,875 - __init__.py[DEBUG]: Looking for for data source in: ['Ec2'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2017-02-22 12:51:11,903 - __init__.py[DEBUG]: Searching for local data source in: []
2017-02-22 12:51:11,903 - main.py[DEBUG]: No local datasource found
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/carrier (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/dormant (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/operstate (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s3/operstate
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/carrier (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/dormant (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/operstate (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s8/operstate
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/address (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s3/address
2017-02-22 12:51:11,904 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'type': 'physical', 'mac_address': '08:00:27:94:c3:4b', 'subnets': [{'type': 'dhcp'}], 'name': 'enp0s3'}]}
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-02-22 12:51:11,904 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/operstate (quiet=False)
2017-02-22 12:51:11,904 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s3/operstate
2017-02-22 12:51:11,905 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/address (quiet=False)
2017-02-22 12:51:11,905 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s3/address
2017-02-22 12:51:11,905 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/operstate (quiet=False)
2017-02-22 12:51:11,905 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s8/operstate
2017-02-22 12:51:11,905 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/address (quiet=False)
2017-02-22 12:51:11,905 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s8/address
2017-02-22 12:51:11,905 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:51:12,000 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:51:12,007 - __init__.py[DEBUG]: no work necessary for renaming of [['08:00:27:94:c3:4b', 'enp0s3']]
2017-02-22 12:51:12,007 - stages.py[INFO]: Applying network configuration from fallback bringup=False: {'version': 1, 'config': [{'type': 'physical', 'mac_address': '08:00:27:94:c3:4b', 'subnets': [{'type': 'dhcp'}], 'name': 'enp0s3'}]}
2017-02-22 12:51:12,009 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 371 bytes
2017-02-22 12:51:12,009 - main.py[DEBUG]: [local] Exiting without datasource in local mode
2017-02-22 12:51:12,010 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-22 12:51:12,010 - util.py[DEBUG]: Read 11 bytes from /proc/uptime
2017-02-22 12:51:12,010 - util.py[DEBUG]: cloud-init mode 'init' took 0.391 seconds (0.39)
2017-02-22 12:51:12,010 - handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
2017-02-22 12:51:12,766 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'init' at Wed, 22 Feb 2017 11:51:12 +0000. Up 23.92 seconds.
2017-02-22 12:51:12,767 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2017-02-22 12:51:12,768 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-02-22 12:51:12,768 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:51:12,797 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:51:12,818 - util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:51:12,820 - main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2017-02-22 12:51:12,820 - main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
2017-02-22 12:51:12,820 - handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
2017-02-22 12:51:12,820 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-02-22 12:51:12,820 - stages.py[DEBUG]: no cache found
2017-02-22 12:51:12,820 - handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: no cache found
2017-02-22 12:51:12,820 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-02-22 12:51:12,822 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-22 12:51:12,822 - __init__.py[DEBUG]: Looking for for data source in: ['Ec2'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2017-02-22 12:51:12,823 - __init__.py[DEBUG]: Searching for network data source in: ['DataSourceEc2']
2017-02-22 12:51:12,823 - handlers.py[DEBUG]: start: init-network/search-Ec2: searching for network data from DataSourceEc2
2017-02-22 12:51:12,823 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceEc2.DataSourceEc2'>
2017-02-22 12:51:12,823 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/ec2/meta-data (quiet=False)
2017-02-22 12:51:13,501 - DataSourceEc2.py[DEBUG]: Removed the following from metadata urls: ['http://instance-data.:8773']
2017-02-22 12:51:13,502 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:13,735 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [0/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5225048>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:13,737 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:51:14,738 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:14,739 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [1/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5225a90>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:14,740 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:51:15,741 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:15,743 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [2/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae522e198>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:15,743 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:51:16,745 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:16,747 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [3/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae522eb70>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:16,747 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:51:17,749 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:17,751 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [4/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fb3c8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:17,751 - url_helper.py[DEBUG]: Please wait 1 seconds while we wait to try again
2017-02-22 12:51:18,753 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:18,755 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [5/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae522ec18>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:18,755 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:51:20,757 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:20,759 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [7/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5225cf8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:20,760 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:51:22,762 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:22,764 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [9/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fb160>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:22,765 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:51:24,767 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:24,769 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [11/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fbbe0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:24,769 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:51:26,771 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:26,773 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [13/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5203438>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:26,773 - url_helper.py[DEBUG]: Please wait 2 seconds while we wait to try again
2017-02-22 12:51:28,776 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:28,778 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [15/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fb2e8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:28,778 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:51:31,781 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:31,783 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [18/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5225e80>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:31,783 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:51:36,755 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:37,755 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [24/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae522e518>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:37,755 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:51:40,759 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:40,760 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [27/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5203240>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:40,761 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:51:43,764 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:43,766 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [30/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5203c50>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:43,766 - url_helper.py[DEBUG]: Please wait 3 seconds while we wait to try again
2017-02-22 12:51:46,769 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:46,772 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [33/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae522e5c0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:46,772 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:51:50,777 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:50,779 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [37/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fb630>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:50,779 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:51:54,784 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:54,786 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [41/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fbeb8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:54,786 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:51:58,790 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:51:58,792 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [45/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae521f6a0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:51:58,792 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:52:02,797 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:52:02,799 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [49/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5225400>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:02,799 - url_helper.py[DEBUG]: Please wait 4 seconds while we wait to try again
2017-02-22 12:52:06,804 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:52:06,806 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [53/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5222e80>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:06,806 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:52:11,812 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:52:11,814 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [58/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae522e438>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:11,814 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:52:16,820 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:52:16,822 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [63/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fbe10>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:16,822 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:52:21,828 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 50.0} configuration
2017-02-22 12:52:21,829 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [68/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fb7f0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:21,830 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:52:26,836 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 46.0} configuration
2017-02-22 12:52:26,837 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [73/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5225ba8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:26,838 - url_helper.py[DEBUG]: Please wait 5 seconds while we wait to try again
2017-02-22 12:52:31,843 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 41.0} configuration
2017-02-22 12:52:31,845 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [78/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5203908>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:31,846 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:52:37,846 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 35.0} configuration
2017-02-22 12:52:37,848 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [84/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fb668>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:37,848 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:52:43,850 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 29.0} configuration
2017-02-22 12:52:43,864 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [90/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae51fbda0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:43,865 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:52:49,872 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 23.0} configuration
2017-02-22 12:52:49,873 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [96/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae522e5f8>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:49,874 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:52:55,880 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 17.0} configuration
2017-02-22 12:52:55,882 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [102/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5203be0>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:52:55,882 - url_helper.py[DEBUG]: Please wait 6 seconds while we wait to try again
2017-02-22 12:53:01,889 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 11.0} configuration
2017-02-22 12:53:01,891 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [108/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae5203278>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:53:01,891 - url_helper.py[DEBUG]: Please wait 7 seconds while we wait to try again
2017-02-22 12:53:08,899 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'method': 'GET', 'timeout': 4.0} configuration
2017-02-22 12:53:08,901 - url_helper.py[WARNING]: Calling 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [115/120s]: request error [HTTPConnectionPool(host='169.254.169.254', port=80): Max retries exceeded with url: /2009-04-04/meta-data/instance-id (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f1ae522e048>: Failed to establish a new connection: [Errno 101] Network is unreachable',))]
2017-02-22 12:53:08,901 - url_helper.py[DEBUG]: Please wait 7 seconds while we wait to try again
2017-02-22 12:53:15,906 - DataSourceEc2.py[CRITICAL]: Giving up on md from ['http://169.254.169.254/2009-04-04/meta-data/instance-id'] after 122 seconds
2017-02-22 12:53:15,907 - handlers.py[DEBUG]: finish: init-network/search-Ec2: SUCCESS: no network data found from DataSourceEc2
2017-02-22 12:53:15,907 - util.py[WARNING]: No instance datasource found! Likely bad things to come!
2017-02-22 12:53:15,907 - util.py[DEBUG]: No instance datasource found! Likely bad things to come!
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/cloudinit/cmd/main.py", line 236, in main_init
init.fetch(existing=existing)
File "/usr/lib/python3/dist-packages/cloudinit/stages.py", line 342, in fetch
return self._get_data_source(existing=existing)
File "/usr/lib/python3/dist-packages/cloudinit/stages.py", line 252, in _get_data_source
pkg_list, self.reporter)
File "/usr/lib/python3/dist-packages/cloudinit/sources/__init__.py", line 320, in find_source
raise DataSourceNotFoundException(msg)
cloudinit.sources.DataSourceNotFoundException: Did not find any data source, searched classes: (DataSourceEc2)
2017-02-22 12:53:16,017 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/carrier (quiet=False)
2017-02-22 12:53:16,018 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp0s3/carrier
2017-02-22 12:53:16,018 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/carrier (quiet=False)
2017-02-22 12:53:16,018 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/dormant (quiet=False)
2017-02-22 12:53:16,018 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/operstate (quiet=False)
2017-02-22 12:53:16,018 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s8/operstate
2017-02-22 12:53:16,018 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/address (quiet=False)
2017-02-22 12:53:16,018 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s3/address
2017-02-22 12:53:16,018 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'name': 'enp0s3', 'mac_address': '08:00:27:94:c3:4b', 'subnets': [{'type': 'dhcp'}], 'type': 'physical'}]}
2017-02-22 12:53:16,018 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-02-22 12:53:16,018 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-02-22 12:53:16,018 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-02-22 12:53:16,018 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-02-22 12:53:16,018 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/operstate (quiet=False)
2017-02-22 12:53:16,018 - util.py[DEBUG]: Read 3 bytes from /sys/class/net/enp0s3/operstate
2017-02-22 12:53:16,018 - util.py[DEBUG]: Reading from /sys/class/net/enp0s3/address (quiet=False)
2017-02-22 12:53:16,019 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s3/address
2017-02-22 12:53:16,019 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/operstate (quiet=False)
2017-02-22 12:53:16,019 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp0s8/operstate
2017-02-22 12:53:16,019 - util.py[DEBUG]: Reading from /sys/class/net/enp0s8/address (quiet=False)
2017-02-22 12:53:16,019 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp0s8/address
2017-02-22 12:53:16,019 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:53:16,021 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-02-22 12:53:16,023 - __init__.py[DEBUG]: no work necessary for renaming of [['08:00:27:94:c3:4b', 'enp0s3']]
2017-02-22 12:53:16,023 - stages.py[INFO]: Applying network configuration from fallback bringup=True: {'version': 1, 'config': [{'name': 'enp0s3', 'mac_address': '08:00:27:94:c3:4b', 'subnets': [{'type': 'dhcp'}], 'type': 'physical'}]}
2017-02-22 12:53:16,025 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 371 bytes
2017-02-22 12:53:16,026 - main.py[DEBUG]: [net] Exiting without datasource in local mode
2017-02-22 12:53:16,026 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-22 12:53:16,026 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-02-22 12:53:16,026 - util.py[DEBUG]: cloud-init mode 'init' took 123.282 seconds (121.32)
2017-02-22 12:53:16,026 - handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
2017-02-23 16:51:08,253 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'init-local' at Thu, 23 Feb 2017 15:51:08 +0000. Up 9.53 seconds.
2017-02-23 16:51:08,342 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2017-02-23 16:51:08,343 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-02-23 16:51:08,343 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2017-02-23 16:51:08,343 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2017-02-23 16:51:08,343 - handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
2017-02-23 16:51:08,343 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-02-23 16:51:08,344 - stages.py[DEBUG]: no cache found
2017-02-23 16:51:08,344 - handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: no cache found
2017-02-23 16:51:08,344 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-02-23 16:51:08,346 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-23 16:51:08,347 - __init__.py[DEBUG]: Looking for for data source in: ['Ec2'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2017-02-23 16:51:08,348 - __init__.py[DEBUG]: Searching for local data source in: []
2017-02-23 16:51:08,348 - main.py[DEBUG]: No local datasource found
2017-02-23 16:51:08,349 - util.py[DEBUG]: Reading from /sys/class/net/ens3/carrier (quiet=False)
2017-02-23 16:51:08,349 - util.py[DEBUG]: Reading from /sys/class/net/ens3/dormant (quiet=False)
2017-02-23 16:51:08,349 - util.py[DEBUG]: Reading from /sys/class/net/ens3/operstate (quiet=False)
2017-02-23 16:51:08,349 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/ens3/operstate
2017-02-23 16:51:08,349 - util.py[DEBUG]: Reading from /sys/class/net/ens3/address (quiet=False)
2017-02-23 16:51:08,349 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens3/address
2017-02-23 16:51:08,349 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'type': 'physical', 'name': 'ens3', 'subnets': [{'type': 'dhcp'}], 'mac_address': 'fa:16:3e:d5:b8:99'}]}
2017-02-23 16:51:08,349 - util.py[DEBUG]: Reading from /sys/class/net/ens3/operstate (quiet=False)
2017-02-23 16:51:08,349 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/ens3/operstate
2017-02-23 16:51:08,349 - util.py[DEBUG]: Reading from /sys/class/net/ens3/address (quiet=False)
2017-02-23 16:51:08,350 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens3/address
2017-02-23 16:51:08,350 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-02-23 16:51:08,350 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-02-23 16:51:08,350 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-02-23 16:51:08,350 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-02-23 16:51:08,350 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:08,385 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:08,387 - __init__.py[DEBUG]: no work necessary for renaming of [['fa:16:3e:d5:b8:99', 'ens3']]
2017-02-23 16:51:08,388 - stages.py[INFO]: Applying network configuration from fallback bringup=False: {'version': 1, 'config': [{'type': 'physical', 'name': 'ens3', 'subnets': [{'type': 'dhcp'}], 'mac_address': 'fa:16:3e:d5:b8:99'}]}
2017-02-23 16:51:08,389 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 367 bytes
2017-02-23 16:51:08,390 - main.py[DEBUG]: [local] Exiting without datasource in local mode
2017-02-23 16:51:08,391 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-23 16:51:08,391 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-02-23 16:51:08,391 - util.py[DEBUG]: cloud-init mode 'init' took 0.237 seconds (0.24)
2017-02-23 16:51:08,391 - handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
2017-02-23 16:51:09,516 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'init' at Thu, 23 Feb 2017 15:51:09 +0000. Up 10.85 seconds.
2017-02-23 16:51:09,518 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
2017-02-23 16:51:09,519 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-02-23 16:51:09,519 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:09,579 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:09,647 - util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:09,650 - main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2017-02-23 16:51:09,650 - main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
2017-02-23 16:51:09,650 - handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
2017-02-23 16:51:09,650 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-02-23 16:51:09,650 - stages.py[DEBUG]: no cache found
2017-02-23 16:51:09,650 - handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: no cache found
2017-02-23 16:51:09,650 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-02-23 16:51:09,652 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-23 16:51:09,653 - __init__.py[DEBUG]: Looking for for data source in: ['Ec2'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2017-02-23 16:51:09,654 - __init__.py[DEBUG]: Searching for network data source in: ['DataSourceEc2']
2017-02-23 16:51:09,654 - handlers.py[DEBUG]: start: init-network/search-Ec2: searching for network data from DataSourceEc2
2017-02-23 16:51:09,654 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceEc2.DataSourceEc2'>
2017-02-23 16:51:09,654 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/ec2/meta-data (quiet=False)
2017-02-23 16:51:09,760 - DataSourceEc2.py[DEBUG]: Removed the following from metadata urls: ['http://instance-data.:8773']
2017-02-23 16:51:09,761 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'timeout': 50.0} configuration
2017-02-23 16:51:10,356 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (200, 10b) after 1 attempts
2017-02-23 16:51:10,356 - DataSourceEc2.py[DEBUG]: Using metadata source: 'http://169.254.169.254'
2017-02-23 16:51:10,356 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/user-data' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/user-data', 'timeout': 5.0} configuration
2017-02-23 16:51:10,511 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/user-data (200, 120b) after 1 attempts
2017-02-23 16:51:10,511 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/', 'timeout': 5.0} configuration
2017-02-23 16:51:10,752 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/ (200, 210b) after 1 attempts
2017-02-23 16:51:10,752 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/', 'timeout': 5.0} configuration
2017-02-23 16:51:10,831 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ (200, 8b) after 1 attempts
2017-02-23 16:51:10,831 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ami' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ami', 'timeout': 5.0} configuration
2017-02-23 16:51:11,293 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ami (200, 3b) after 1 attempts
2017-02-23 16:51:11,294 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/root' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/root', 'timeout': 5.0} configuration
2017-02-23 16:51:11,302 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/root (200, 8b) after 1 attempts
2017-02-23 16:51:11,303 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/placement/' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/placement/', 'timeout': 5.0} configuration
2017-02-23 16:51:11,311 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/placement/ (200, 17b) after 1 attempts
2017-02-23 16:51:11,311 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/placement/availability-zone' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/placement/availability-zone', 'timeout': 5.0} configuration
2017-02-23 16:51:11,391 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/placement/availability-zone (200, 4b) after 1 attempts
2017-02-23 16:51:11,391 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/reservation-id' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/reservation-id', 'timeout': 5.0} configuration
2017-02-23 16:51:11,399 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/reservation-id (200, 10b) after 1 attempts
2017-02-23 16:51:11,400 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'timeout': 5.0} configuration
2017-02-23 16:51:11,408 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (200, 10b) after 1 attempts
2017-02-23 16:51:11,408 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/instance-type' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-type', 'timeout': 5.0} configuration
2017-02-23 16:51:11,809 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-type (200, 9b) after 1 attempts
2017-02-23 16:51:11,809 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/public-hostname' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/public-hostname', 'timeout': 5.0} configuration
2017-02-23 16:51:11,817 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/public-hostname (200, 15b) after 1 attempts
2017-02-23 16:51:11,817 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/hostname' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/hostname', 'timeout': 5.0} configuration
2017-02-23 16:51:11,825 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/hostname (200, 15b) after 1 attempts
2017-02-23 16:51:11,825 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/ami-id' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/ami-id', 'timeout': 5.0} configuration
2017-02-23 16:51:11,834 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/ami-id (200, 12b) after 1 attempts
2017-02-23 16:51:11,834 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/ami-launch-index' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/ami-launch-index', 'timeout': 5.0} configuration
2017-02-23 16:51:11,842 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/ami-launch-index (200, 1b) after 1 attempts
2017-02-23 16:51:11,842 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/local-hostname' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/local-hostname', 'timeout': 5.0} configuration
2017-02-23 16:51:11,850 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/local-hostname (200, 15b) after 1 attempts
2017-02-23 16:51:11,850 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/instance-action' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-action', 'timeout': 5.0} configuration
2017-02-23 16:51:11,858 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-action (200, 4b) after 1 attempts
2017-02-23 16:51:11,858 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/public-ipv4' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/public-ipv4', 'timeout': 5.0} configuration
2017-02-23 16:51:11,866 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/public-ipv4 (200, 0b) after 1 attempts
2017-02-23 16:51:11,866 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/security-groups' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/security-groups', 'timeout': 5.0} configuration
2017-02-23 16:51:11,874 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/security-groups (200, 7b) after 1 attempts
2017-02-23 16:51:11,874 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/local-ipv4' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/local-ipv4', 'timeout': 5.0} configuration
2017-02-23 16:51:11,881 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/local-ipv4 (200, 13b) after 1 attempts
2017-02-23 16:51:11,882 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/ami-manifest-path' with {'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True, 'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/ami-manifest-path', 'timeout': 5.0} configuration
2017-02-23 16:51:11,890 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/ami-manifest-path (200, 5b) after 1 attempts
2017-02-23 16:51:11,890 - DataSourceEc2.py[DEBUG]: Crawl of metadata service took 1 seconds
2017-02-23 16:51:11,890 - handlers.py[DEBUG]: finish: init-network/search-Ec2: SUCCESS: found network data from DataSourceEc2
2017-02-23 16:51:11,890 - stages.py[INFO]: Loaded datasource DataSourceEc2 - DataSourceEc2
2017-02-23 16:51:11,890 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-02-23 16:51:11,891 - util.py[DEBUG]: Read 3034 bytes from /etc/cloud/cloud.cfg
2017-02-23 16:51:11,891 - util.py[DEBUG]: Attempting to load yaml from string of length 3034 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,904 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-02-23 16:51:11,904 - util.py[DEBUG]: Read 80 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-02-23 16:51:11,904 - util.py[DEBUG]: Attempting to load yaml from string of length 80 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,904 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-02-23 16:51:11,904 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-02-23 16:51:11,904 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,908 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,909 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-02-23 16:51:11,909 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-02-23 16:51:11,909 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/i-000000ac'
2017-02-23 16:51:11,933 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/i-000000ac/datasource (quiet=False)
2017-02-23 16:51:11,933 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/datasource - wb: [420] 29 bytes
2017-02-23 16:51:11,934 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 29 bytes
2017-02-23 16:51:11,934 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2017-02-23 16:51:11,934 - stages.py[DEBUG]: previous iid found to be NO_PREVIOUS_INSTANCE_ID
2017-02-23 16:51:11,934 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 11 bytes
2017-02-23 16:51:11,935 - util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [420] 11 bytes
2017-02-23 16:51:11,935 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 24 bytes
2017-02-23 16:51:11,936 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 6007 bytes
2017-02-23 16:51:11,936 - main.py[DEBUG]: [net] init will now be targeting instance id: i-000000ac. new=True
2017-02-23 16:51:11,936 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-02-23 16:51:11,936 - util.py[DEBUG]: Read 3034 bytes from /etc/cloud/cloud.cfg
2017-02-23 16:51:11,936 - util.py[DEBUG]: Attempting to load yaml from string of length 3034 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,949 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-02-23 16:51:11,949 - util.py[DEBUG]: Read 80 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-02-23 16:51:11,950 - util.py[DEBUG]: Attempting to load yaml from string of length 80 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,950 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-02-23 16:51:11,950 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-02-23 16:51:11,950 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,955 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,955 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-02-23 16:51:11,955 - util.py[DEBUG]: Reading from /sys/class/net/ens3/carrier (quiet=False)
2017-02-23 16:51:11,956 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/ens3/carrier
2017-02-23 16:51:11,956 - util.py[DEBUG]: Reading from /sys/class/net/ens3/address (quiet=False)
2017-02-23 16:51:11,956 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens3/address
2017-02-23 16:51:11,956 - stages.py[DEBUG]: applying net config names for {'config': [{'type': 'physical', 'subnets': [{'type': 'dhcp'}], 'name': 'ens3', 'mac_address': 'fa:16:3e:d5:b8:99'}], 'version': 1}
2017-02-23 16:51:11,956 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-23 16:51:11,956 - util.py[DEBUG]: Reading from /sys/class/net/ens3/operstate (quiet=False)
2017-02-23 16:51:11,956 - util.py[DEBUG]: Read 3 bytes from /sys/class/net/ens3/operstate
2017-02-23 16:51:11,956 - util.py[DEBUG]: Reading from /sys/class/net/ens3/address (quiet=False)
2017-02-23 16:51:11,956 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens3/address
2017-02-23 16:51:11,957 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-02-23 16:51:11,957 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-02-23 16:51:11,957 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-02-23 16:51:11,957 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-02-23 16:51:11,957 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:11,959 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:11,960 - __init__.py[DEBUG]: no work necessary for renaming of [['fa:16:3e:d5:b8:99', 'ens3']]
2017-02-23 16:51:11,960 - stages.py[INFO]: Applying network configuration from fallback bringup=True: {'config': [{'type': 'physical', 'subnets': [{'type': 'dhcp'}], 'name': 'ens3', 'mac_address': 'fa:16:3e:d5:b8:99'}], 'version': 1}
2017-02-23 16:51:11,962 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 367 bytes
2017-02-23 16:51:11,963 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/user-data.txt - wb: [384] 120 bytes
2017-02-23 16:51:11,964 - util.py[DEBUG]: Attempting to load yaml from string of length 120 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:11,993 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/user-data.txt.i - wb: [384] 425 bytes
2017-02-23 16:51:12,002 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/vendor-data.txt - wb: [384] 0 bytes
2017-02-23 16:51:12,011 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/vendor-data.txt.i - wb: [384] 308 bytes
2017-02-23 16:51:12,012 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/consume_data - wb: [420] 23 bytes
2017-02-23 16:51:12,013 - helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/consume_data'>)
2017-02-23 16:51:12,013 - handlers.py[DEBUG]: start: init-network/consume-user-data: reading and applying user-data
2017-02-23 16:51:12,013 - launch_index.py[DEBUG]: Discarding 0 multipart messages which do not match launch index 0
2017-02-23 16:51:12,014 - stages.py[DEBUG]: Added default handler for {'text/cloud-config-jsonp', 'text/cloud-config'} from CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']]
2017-02-23 16:51:12,014 - stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
2017-02-23 16:51:12,014 - stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
2017-02-23 16:51:12,014 - stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
2017-02-23 16:51:12,014 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (__begin__, None, 3) with frequency once-per-instance
2017-02-23 16:51:12,014 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2017-02-23 16:51:12,015 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2017-02-23 16:51:12,015 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2017-02-23 16:51:12,015 - __init__.py[DEBUG]: {'Content-Type': 'text/cloud-config', 'Content-Disposition': 'attachment; filename="part-001"', 'MIME-Version': '1.0'}
2017-02-23 16:51:12,015 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (text/cloud-config, part-001, 3) with frequency once-per-instance
2017-02-23 16:51:12,015 - util.py[DEBUG]: Attempting to load yaml from string of length 120 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:12,016 - cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
2017-02-23 16:51:12,016 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (__end__, None, 3) with frequency once-per-instance
2017-02-23 16:51:12,017 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/cloud-config.txt - wb: [384] 155 bytes
2017-02-23 16:51:12,017 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2017-02-23 16:51:12,017 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2017-02-23 16:51:12,017 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2017-02-23 16:51:12,017 - handlers.py[DEBUG]: finish: init-network/consume-user-data: SUCCESS: reading and applying user-data
2017-02-23 16:51:12,017 - handlers.py[DEBUG]: start: init-network/consume-vendor-data: reading and applying vendor-data
2017-02-23 16:51:12,018 - stages.py[DEBUG]: no vendordata from datasource
2017-02-23 16:51:12,018 - handlers.py[DEBUG]: finish: init-network/consume-vendor-data: SUCCESS: reading and applying vendor-data
2017-02-23 16:51:12,018 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-02-23 16:51:12,018 - util.py[DEBUG]: Read 3034 bytes from /etc/cloud/cloud.cfg
2017-02-23 16:51:12,018 - util.py[DEBUG]: Attempting to load yaml from string of length 3034 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:12,032 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-02-23 16:51:12,032 - util.py[DEBUG]: Read 80 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-02-23 16:51:12,032 - util.py[DEBUG]: Attempting to load yaml from string of length 80 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:12,032 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-02-23 16:51:12,033 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-02-23 16:51:12,033 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:12,037 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:12,037 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-02-23 16:51:12,037 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-02-23 16:51:12,037 - util.py[DEBUG]: Read 155 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-02-23 16:51:12,037 - util.py[DEBUG]: Attempting to load yaml from string of length 155 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:12,039 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-02-23 16:51:12,039 - util.py[DEBUG]: Read 155 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-02-23 16:51:12,039 - util.py[DEBUG]: Attempting to load yaml from string of length 155 with allowed root types (<class 'dict'>,)
2017-02-23 16:51:12,041 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 5149 bytes
2017-02-23 16:51:12,089 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-23 16:51:12,089 - stages.py[DEBUG]: Running module migrator (<module 'cloudinit.config.cc_migrator' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_migrator.py'>) with frequency always
2017-02-23 16:51:12,090 - handlers.py[DEBUG]: start: init-network/config-migrator: running config-migrator with frequency always
2017-02-23 16:51:12,090 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7f19b9e39908>)
2017-02-23 16:51:12,090 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2017-02-23 16:51:12,090 - handlers.py[DEBUG]: finish: init-network/config-migrator: SUCCESS: config-migrator ran successfully
2017-02-23 16:51:12,090 - stages.py[DEBUG]: Running module ubuntu-init-switch (<module 'cloudinit.config.cc_ubuntu_init_switch' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ubuntu_init_switch.py'>) with frequency once-per-instance
2017-02-23 16:51:12,091 - handlers.py[DEBUG]: start: init-network/config-ubuntu-init-switch: running config-ubuntu-init-switch with frequency once-per-instance
2017-02-23 16:51:12,091 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_ubuntu_init_switch - wb: [420] 25 bytes
2017-02-23 16:51:12,091 - helpers.py[DEBUG]: Running config-ubuntu-init-switch using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_ubuntu_init_switch'>)
2017-02-23 16:51:12,091 - cc_ubuntu_init_switch.py[DEBUG]: ubuntu-init-switch: target=None. nothing to do
2017-02-23 16:51:12,091 - handlers.py[DEBUG]: finish: init-network/config-ubuntu-init-switch: SUCCESS: config-ubuntu-init-switch ran successfully
2017-02-23 16:51:12,091 - stages.py[DEBUG]: Running module seed_random (<module 'cloudinit.config.cc_seed_random' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_seed_random.py'>) with frequency once-per-instance
2017-02-23 16:51:12,092 - handlers.py[DEBUG]: start: init-network/config-seed_random: running config-seed_random with frequency once-per-instance
2017-02-23 16:51:12,092 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_seed_random - wb: [420] 25 bytes
2017-02-23 16:51:12,092 - helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_seed_random'>)
2017-02-23 16:51:12,092 - cc_seed_random.py[DEBUG]: no command provided
2017-02-23 16:51:12,092 - handlers.py[DEBUG]: finish: init-network/config-seed_random: SUCCESS: config-seed_random ran successfully
2017-02-23 16:51:12,092 - stages.py[DEBUG]: Running module bootcmd (<module 'cloudinit.config.cc_bootcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_bootcmd.py'>) with frequency always
2017-02-23 16:51:12,093 - handlers.py[DEBUG]: start: init-network/config-bootcmd: running config-bootcmd with frequency always
2017-02-23 16:51:12,093 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7f19b9e397f0>)
2017-02-23 16:51:12,093 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2017-02-23 16:51:12,093 - handlers.py[DEBUG]: finish: init-network/config-bootcmd: SUCCESS: config-bootcmd ran successfully
2017-02-23 16:51:12,093 - stages.py[DEBUG]: Running module write-files (<module 'cloudinit.config.cc_write_files' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_write_files.py'>) with frequency once-per-instance
2017-02-23 16:51:12,093 - handlers.py[DEBUG]: start: init-network/config-write-files: running config-write-files with frequency once-per-instance
2017-02-23 16:51:12,093 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_write_files - wb: [420] 25 bytes
2017-02-23 16:51:12,094 - helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_write_files'>)
2017-02-23 16:51:12,094 - cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
2017-02-23 16:51:12,094 - handlers.py[DEBUG]: finish: init-network/config-write-files: SUCCESS: config-write-files ran successfully
2017-02-23 16:51:12,094 - stages.py[DEBUG]: Running module growpart (<module 'cloudinit.config.cc_growpart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_growpart.py'>) with frequency always
2017-02-23 16:51:12,094 - handlers.py[DEBUG]: start: init-network/config-growpart: running config-growpart with frequency always
2017-02-23 16:51:12,094 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7f19b9e2e978>)
2017-02-23 16:51:12,094 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg. Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
2017-02-23 16:51:12,094 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,106 - util.py[DEBUG]: Reading from /proc/1048/mountinfo (quiet=False)
2017-02-23 16:51:12,107 - util.py[DEBUG]: Read 2630 bytes from /proc/1048/mountinfo
2017-02-23 16:51:12,113 - util.py[DEBUG]: Reading from /sys/class/block/vda1/partition (quiet=False)
2017-02-23 16:51:12,114 - util.py[DEBUG]: Read 2 bytes from /sys/class/block/vda1/partition
2017-02-23 16:51:12,114 - util.py[DEBUG]: Reading from /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/dev (quiet=False)
2017-02-23 16:51:12,114 - util.py[DEBUG]: Read 6 bytes from /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/dev
2017-02-23 16:51:12,114 - util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/vda', '1'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,239 - util.py[DEBUG]: resize_devices took 0.132 seconds
2017-02-23 16:51:12,239 - cc_growpart.py[DEBUG]: '/' NOCHANGE: no change necessary (/dev/vda, 1)
2017-02-23 16:51:12,239 - handlers.py[DEBUG]: finish: init-network/config-growpart: SUCCESS: config-growpart ran successfully
2017-02-23 16:51:12,239 - stages.py[DEBUG]: Running module resizefs (<module 'cloudinit.config.cc_resizefs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_resizefs.py'>) with frequency always
2017-02-23 16:51:12,240 - handlers.py[DEBUG]: start: init-network/config-resizefs: running config-resizefs with frequency always
2017-02-23 16:51:12,240 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7f19b9e527f0>)
2017-02-23 16:51:12,240 - util.py[DEBUG]: Reading from /proc/1048/mountinfo (quiet=False)
2017-02-23 16:51:12,240 - util.py[DEBUG]: Read 2630 bytes from /proc/1048/mountinfo
2017-02-23 16:51:12,240 - cc_resizefs.py[DEBUG]: resize_info: dev=/dev/vda1 mnt_point=/ path=/
2017-02-23 16:51:12,240 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,242 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,243 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,244 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-02-23 16:51:12,244 - util.py[DEBUG]: Read 152 bytes from /proc/1/environ
2017-02-23 16:51:12,244 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-02-23 16:51:12,244 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-02-23 16:51:12,244 - cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/vda1
2017-02-23 16:51:12,244 - util.py[DEBUG]: Running command ('resize2fs', '/dev/vda1') with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,287 - util.py[DEBUG]: Resizing took 0.043 seconds
2017-02-23 16:51:12,287 - cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
2017-02-23 16:51:12,288 - handlers.py[DEBUG]: finish: init-network/config-resizefs: SUCCESS: config-resizefs ran successfully
2017-02-23 16:51:12,288 - stages.py[DEBUG]: Running module disk_setup (<module 'cloudinit.config.cc_disk_setup' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disk_setup.py'>) with frequency once-per-instance
2017-02-23 16:51:12,288 - handlers.py[DEBUG]: start: init-network/config-disk_setup: running config-disk_setup with frequency once-per-instance
2017-02-23 16:51:12,289 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_disk_setup - wb: [420] 25 bytes
2017-02-23 16:51:12,289 - helpers.py[DEBUG]: Running config-disk_setup using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_disk_setup'>)
2017-02-23 16:51:12,289 - handlers.py[DEBUG]: finish: init-network/config-disk_setup: SUCCESS: config-disk_setup ran successfully
2017-02-23 16:51:12,289 - stages.py[DEBUG]: Running module mounts (<module 'cloudinit.config.cc_mounts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mounts.py'>) with frequency once-per-instance
2017-02-23 16:51:12,290 - handlers.py[DEBUG]: start: init-network/config-mounts: running config-mounts with frequency once-per-instance
2017-02-23 16:51:12,290 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_mounts - wb: [420] 25 bytes
2017-02-23 16:51:12,290 - helpers.py[DEBUG]: Running config-mounts using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_mounts'>)
2017-02-23 16:51:12,290 - cc_mounts.py[DEBUG]: mounts configuration is []
2017-02-23 16:51:12,290 - cc_mounts.py[DEBUG]: Attempting to determine the real name of ephemeral0
2017-02-23 16:51:12,291 - DataSourceEc2.py[DEBUG]: Unable to convert ephemeral0 to a device
2017-02-23 16:51:12,291 - cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount ephemeral0
2017-02-23 16:51:12,291 - cc_mounts.py[DEBUG]: Attempting to determine the real name of swap
2017-02-23 16:51:12,291 - DataSourceEc2.py[DEBUG]: Unable to convert swap to a device
2017-02-23 16:51:12,291 - cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount swap
2017-02-23 16:51:12,291 - cc_mounts.py[DEBUG]: no need to setup swap
2017-02-23 16:51:12,291 - cc_mounts.py[DEBUG]: No modifications to fstab needed.
2017-02-23 16:51:12,291 - handlers.py[DEBUG]: finish: init-network/config-mounts: SUCCESS: config-mounts ran successfully
2017-02-23 16:51:12,291 - stages.py[DEBUG]: Running module set_hostname (<module 'cloudinit.config.cc_set_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_hostname.py'>) with frequency once-per-instance
2017-02-23 16:51:12,291 - handlers.py[DEBUG]: start: init-network/config-set_hostname: running config-set_hostname with frequency once-per-instance
2017-02-23 16:51:12,291 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_set_hostname - wb: [420] 25 bytes
2017-02-23 16:51:12,292 - helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_set_hostname'>)
2017-02-23 16:51:12,292 - cc_set_hostname.py[DEBUG]: Setting the hostname to tools.novalocal (tools)
2017-02-23 16:51:12,292 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-02-23 16:51:12,292 - util.py[DEBUG]: Read 7 bytes from /etc/hostname
2017-02-23 16:51:12,292 - util.py[DEBUG]: Writing to /etc/hostname - wb: [420] 6 bytes
2017-02-23 16:51:12,293 - __init__.py[DEBUG]: Non-persistently setting the system hostname to tools
2017-02-23 16:51:12,293 - util.py[DEBUG]: Running command ['hostname', 'tools'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,294 - handlers.py[DEBUG]: finish: init-network/config-set_hostname: SUCCESS: config-set_hostname ran successfully
2017-02-23 16:51:12,294 - stages.py[DEBUG]: Running module update_hostname (<module 'cloudinit.config.cc_update_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_hostname.py'>) with frequency always
2017-02-23 16:51:12,295 - handlers.py[DEBUG]: start: init-network/config-update_hostname: running config-update_hostname with frequency always
2017-02-23 16:51:12,295 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7f19b9e5b2e8>)
2017-02-23 16:51:12,295 - cc_update_hostname.py[DEBUG]: Updating hostname to tools.novalocal (tools)
2017-02-23 16:51:12,295 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-02-23 16:51:12,295 - util.py[DEBUG]: Read 6 bytes from /etc/hostname
2017-02-23 16:51:12,295 - __init__.py[DEBUG]: Attempting to update hostname to tools in 1 files
2017-02-23 16:51:12,295 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2017-02-23 16:51:12,295 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [420] 6 bytes
2017-02-23 16:51:12,296 - handlers.py[DEBUG]: finish: init-network/config-update_hostname: SUCCESS: config-update_hostname ran successfully
2017-02-23 16:51:12,296 - stages.py[DEBUG]: Running module update_etc_hosts (<module 'cloudinit.config.cc_update_etc_hosts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_etc_hosts.py'>) with frequency always
2017-02-23 16:51:12,296 - handlers.py[DEBUG]: start: init-network/config-update_etc_hosts: running config-update_etc_hosts with frequency always
2017-02-23 16:51:12,296 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7f19b9e5b390>)
2017-02-23 16:51:12,296 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2017-02-23 16:51:12,296 - handlers.py[DEBUG]: finish: init-network/config-update_etc_hosts: SUCCESS: config-update_etc_hosts ran successfully
2017-02-23 16:51:12,296 - stages.py[DEBUG]: Running module ca-certs (<module 'cloudinit.config.cc_ca_certs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ca_certs.py'>) with frequency once-per-instance
2017-02-23 16:51:12,296 - handlers.py[DEBUG]: start: init-network/config-ca-certs: running config-ca-certs with frequency once-per-instance
2017-02-23 16:51:12,297 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_ca_certs - wb: [420] 25 bytes
2017-02-23 16:51:12,297 - helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_ca_certs'>)
2017-02-23 16:51:12,297 - cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
2017-02-23 16:51:12,297 - handlers.py[DEBUG]: finish: init-network/config-ca-certs: SUCCESS: config-ca-certs ran successfully
2017-02-23 16:51:12,297 - stages.py[DEBUG]: Running module rsyslog (<module 'cloudinit.config.cc_rsyslog' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rsyslog.py'>) with frequency once-per-instance
2017-02-23 16:51:12,297 - handlers.py[DEBUG]: start: init-network/config-rsyslog: running config-rsyslog with frequency once-per-instance
2017-02-23 16:51:12,297 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_rsyslog - wb: [420] 24 bytes
2017-02-23 16:51:12,298 - helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_rsyslog'>)
2017-02-23 16:51:12,298 - cc_rsyslog.py[DEBUG]: Skipping module named rsyslog, no 'rsyslog' key in configuration
2017-02-23 16:51:12,298 - handlers.py[DEBUG]: finish: init-network/config-rsyslog: SUCCESS: config-rsyslog ran successfully
2017-02-23 16:51:12,298 - stages.py[DEBUG]: Running module users-groups (<module 'cloudinit.config.cc_users_groups' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_users_groups.py'>) with frequency once-per-instance
2017-02-23 16:51:12,298 - handlers.py[DEBUG]: start: init-network/config-users-groups: running config-users-groups with frequency once-per-instance
2017-02-23 16:51:12,298 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_users_groups - wb: [420] 25 bytes
2017-02-23 16:51:12,299 - helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_users_groups'>)
2017-02-23 16:51:12,300 - __init__.py[INFO]: User ubuntu already exists, skipping.
2017-02-23 16:51:12,300 - util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
2017-02-23 16:51:12,305 - util.py[DEBUG]: Read 755 bytes from /etc/sudoers
2017-02-23 16:51:12,312 - util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - wb: [288] 123 bytes
2017-02-23 16:51:12,312 - handlers.py[DEBUG]: finish: init-network/config-users-groups: SUCCESS: config-users-groups ran successfully
2017-02-23 16:51:12,312 - stages.py[DEBUG]: Running module ssh (<module 'cloudinit.config.cc_ssh' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh.py'>) with frequency once-per-instance
2017-02-23 16:51:12,312 - handlers.py[DEBUG]: start: init-network/config-ssh: running config-ssh with frequency once-per-instance
2017-02-23 16:51:12,312 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_ssh - wb: [420] 24 bytes
2017-02-23 16:51:12,313 - helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_ssh'>)
2017-02-23 16:51:12,326 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_rsa_key.pub
2017-02-23 16:51:12,326 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ed25519_key
2017-02-23 16:51:12,327 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_rsa_key
2017-02-23 16:51:12,327 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ecdsa_key.pub
2017-02-23 16:51:12,327 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_dsa_key
2017-02-23 16:51:12,327 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ed25519_key.pub
2017-02-23 16:51:12,327 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_dsa_key.pub
2017-02-23 16:51:12,327 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ecdsa_key
2017-02-23 16:51:12,328 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'rsa', '-N', '', '-f', '/etc/ssh/ssh_host_rsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,497 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'dsa', '-N', '', '-f', '/etc/ssh/ssh_host_dsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,641 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ecdsa', '-N', '', '-f', '/etc/ssh/ssh_host_ecdsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,644 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ed25519', '-N', '', '-f', '/etc/ssh/ssh_host_ed25519_key'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:12,671 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh to 1000:1000
2017-02-23 16:51:12,672 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-02-23 16:51:12,682 - util.py[DEBUG]: Read 2542 bytes from /etc/ssh/sshd_config
2017-02-23 16:51:12,683 - util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [384] 0 bytes
2017-02-23 16:51:12,683 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1000:1000
2017-02-23 16:51:12,684 - util.py[DEBUG]: Changing the ownership of /root/.ssh to 0:0
2017-02-23 16:51:12,684 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-02-23 16:51:12,684 - util.py[DEBUG]: Read 2542 bytes from /etc/ssh/sshd_config
2017-02-23 16:51:12,685 - util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [384] 0 bytes
2017-02-23 16:51:12,685 - util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
2017-02-23 16:51:12,685 - handlers.py[DEBUG]: finish: init-network/config-ssh: SUCCESS: config-ssh ran successfully
2017-02-23 16:51:12,685 - main.py[DEBUG]: Ran 16 modules with 0 failures
2017-02-23 16:51:12,686 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-23 16:51:12,686 - util.py[DEBUG]: Read 11 bytes from /proc/uptime
2017-02-23 16:51:12,686 - util.py[DEBUG]: cloud-init mode 'init' took 3.201 seconds (3.20)
2017-02-23 16:51:12,686 - handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
2017-02-23 16:51:13,878 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'modules:config' at Thu, 23 Feb 2017 15:51:13 +0000. Up 15.18 seconds.
2017-02-23 16:51:14,756 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-23 16:51:14,757 - stages.py[DEBUG]: Running module emit_upstart (<module 'cloudinit.config.cc_emit_upstart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_emit_upstart.py'>) with frequency always
2017-02-23 16:51:14,757 - handlers.py[DEBUG]: start: modules-config/config-emit_upstart: running config-emit_upstart with frequency always
2017-02-23 16:51:14,757 - helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7fb7f348ada0>)
2017-02-23 16:51:14,757 - cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
2017-02-23 16:51:14,758 - cc_emit_upstart.py[DEBUG]: not upstart system, 'emit_upstart' disabled
2017-02-23 16:51:14,758 - handlers.py[DEBUG]: finish: modules-config/config-emit_upstart: SUCCESS: config-emit_upstart ran successfully
2017-02-23 16:51:14,758 - stages.py[DEBUG]: Running module snap_config (<module 'cloudinit.config.cc_snap_config' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snap_config.py'>) with frequency once-per-instance
2017-02-23 16:51:14,758 - handlers.py[DEBUG]: start: modules-config/config-snap_config: running config-snap_config with frequency once-per-instance
2017-02-23 16:51:14,758 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_snap_config - wb: [420] 25 bytes
2017-02-23 16:51:14,759 - helpers.py[DEBUG]: Running config-snap_config using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_snap_config'>)
2017-02-23 16:51:14,759 - cc_snap_config.py[DEBUG]: No snappy config provided, skipping
2017-02-23 16:51:14,759 - handlers.py[DEBUG]: finish: modules-config/config-snap_config: SUCCESS: config-snap_config ran successfully
2017-02-23 16:51:14,759 - stages.py[DEBUG]: Running module ssh-import-id (<module 'cloudinit.config.cc_ssh_import_id' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_import_id.py'>) with frequency once-per-instance
2017-02-23 16:51:14,759 - handlers.py[DEBUG]: start: modules-config/config-ssh-import-id: running config-ssh-import-id with frequency once-per-instance
2017-02-23 16:51:14,759 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_ssh_import_id - wb: [420] 25 bytes
2017-02-23 16:51:14,766 - helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_ssh_import_id'>)
2017-02-23 16:51:14,766 - handlers.py[DEBUG]: finish: modules-config/config-ssh-import-id: SUCCESS: config-ssh-import-id ran successfully
2017-02-23 16:51:14,766 - stages.py[DEBUG]: Running module locale (<module 'cloudinit.config.cc_locale' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_locale.py'>) with frequency once-per-instance
2017-02-23 16:51:14,766 - handlers.py[DEBUG]: start: modules-config/config-locale: running config-locale with frequency once-per-instance
2017-02-23 16:51:14,767 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_locale - wb: [420] 25 bytes
2017-02-23 16:51:14,767 - helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_locale'>)
2017-02-23 16:51:14,767 - cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
2017-02-23 16:51:14,767 - util.py[DEBUG]: Running command ['locale-gen', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
2017-02-23 16:51:16,412 - util.py[DEBUG]: Running command ['update-locale', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
2017-02-23 16:51:16,758 - util.py[DEBUG]: Writing to /etc/default/locale - wb: [420] 87 bytes
2017-02-23 16:51:16,759 - handlers.py[DEBUG]: finish: modules-config/config-locale: SUCCESS: config-locale ran successfully
2017-02-23 16:51:16,759 - stages.py[DEBUG]: Running module set-passwords (<module 'cloudinit.config.cc_set_passwords' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_passwords.py'>) with frequency once-per-instance
2017-02-23 16:51:16,759 - handlers.py[DEBUG]: start: modules-config/config-set-passwords: running config-set-passwords with frequency once-per-instance
2017-02-23 16:51:16,760 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_set_passwords - wb: [420] 25 bytes
2017-02-23 16:51:16,760 - helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_set_passwords'>)
2017-02-23 16:51:16,760 - handlers.py[DEBUG]: finish: modules-config/config-set-passwords: SUCCESS: config-set-passwords ran successfully
2017-02-23 16:51:16,760 - stages.py[DEBUG]: Running module grub-dpkg (<module 'cloudinit.config.cc_grub_dpkg' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_grub_dpkg.py'>) with frequency once-per-instance
2017-02-23 16:51:16,760 - handlers.py[DEBUG]: start: modules-config/config-grub-dpkg: running config-grub-dpkg with frequency once-per-instance
2017-02-23 16:51:16,761 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_grub_dpkg - wb: [420] 25 bytes
2017-02-23 16:51:16,761 - helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_grub_dpkg'>)
2017-02-23 16:51:16,761 - cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/vda','false'
2017-02-23 16:51:16,761 - util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:18,105 - handlers.py[DEBUG]: finish: modules-config/config-grub-dpkg: SUCCESS: config-grub-dpkg ran successfully
2017-02-23 16:51:18,106 - stages.py[DEBUG]: Running module apt-pipelining (<module 'cloudinit.config.cc_apt_pipelining' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_pipelining.py'>) with frequency once-per-instance
2017-02-23 16:51:18,106 - handlers.py[DEBUG]: start: modules-config/config-apt-pipelining: running config-apt-pipelining with frequency once-per-instance
2017-02-23 16:51:18,106 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_apt_pipelining - wb: [420] 25 bytes
2017-02-23 16:51:18,107 - helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_apt_pipelining'>)
2017-02-23 16:51:18,107 - util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [420] 80 bytes
2017-02-23 16:51:18,112 - cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
2017-02-23 16:51:18,113 - handlers.py[DEBUG]: finish: modules-config/config-apt-pipelining: SUCCESS: config-apt-pipelining ran successfully
2017-02-23 16:51:18,113 - stages.py[DEBUG]: Running module apt-configure (<module 'cloudinit.config.cc_apt_configure' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_configure.py'>) with frequency once-per-instance
2017-02-23 16:51:18,113 - handlers.py[DEBUG]: start: modules-config/config-apt-configure: running config-apt-configure with frequency once-per-instance
2017-02-23 16:51:18,113 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_apt_configure - wb: [420] 25 bytes
2017-02-23 16:51:18,113 - helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_apt_configure'>)
2017-02-23 16:51:18,113 - cc_apt_configure.py[DEBUG]: handling apt (module apt-configure) with apt config '{}'
2017-02-23 16:51:18,114 - util.py[DEBUG]: Running command ['lsb_release', '--all'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:18,308 - util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:18,310 - cc_apt_configure.py[DEBUG]: got primary mirror: None
2017-02-23 16:51:18,311 - cc_apt_configure.py[DEBUG]: got security mirror: None
2017-02-23 16:51:18,311 - util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:18,321 - __init__.py[DEBUG]: filtered distro mirror info: {'security': 'http://security.ubuntu.com/ubuntu', 'primary': 'http://nova.clouds.archive.ubuntu.com/ubuntu/'}
2017-02-23 16:51:18,321 - cc_apt_configure.py[DEBUG]: Apt Mirror info: {'security': 'http://security.ubuntu.com/ubuntu', 'PRIMARY': 'http://nova.clouds.archive.ubuntu.com/ubuntu/', 'SECURITY': 'http://security.ubuntu.com/ubuntu', 'MIRROR': 'http://nova.clouds.archive.ubuntu.com/ubuntu/', 'primary': 'http://nova.clouds.archive.ubuntu.com/ubuntu/'}
2017-02-23 16:51:18,321 - cc_apt_configure.py[DEBUG]: debconf_selections was not set in config
2017-02-23 16:51:18,322 - cc_apt_configure.py[INFO]: No custom template provided, fall back to builtin
2017-02-23 16:51:18,387 - util.py[DEBUG]: Reading from /etc/cloud/templates/sources.list.ubuntu.tmpl (quiet=False)
2017-02-23 16:51:18,390 - util.py[DEBUG]: Read 2841 bytes from /etc/cloud/templates/sources.list.ubuntu.tmpl
2017-02-23 16:51:18,400 - util.py[DEBUG]: Writing to /etc/apt/sources.list - wb: [420] 3307 bytes
2017-02-23 16:51:18,400 - util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:18,403 - handlers.py[DEBUG]: finish: modules-config/config-apt-configure: SUCCESS: config-apt-configure ran successfully
2017-02-23 16:51:18,403 - stages.py[DEBUG]: Running module ntp (<module 'cloudinit.config.cc_ntp' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ntp.py'>) with frequency once-per-instance
2017-02-23 16:51:18,404 - handlers.py[DEBUG]: start: modules-config/config-ntp: running config-ntp with frequency once-per-instance
2017-02-23 16:51:18,404 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_ntp - wb: [420] 24 bytes
2017-02-23 16:51:18,405 - helpers.py[DEBUG]: Running config-ntp using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_ntp'>)
2017-02-23 16:51:18,405 - cc_ntp.py[DEBUG]: Skipping module named ntp,not present or disabled by cfg
2017-02-23 16:51:18,405 - handlers.py[DEBUG]: finish: modules-config/config-ntp: SUCCESS: config-ntp ran successfully
2017-02-23 16:51:18,405 - stages.py[DEBUG]: Running module timezone (<module 'cloudinit.config.cc_timezone' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_timezone.py'>) with frequency once-per-instance
2017-02-23 16:51:18,405 - handlers.py[DEBUG]: start: modules-config/config-timezone: running config-timezone with frequency once-per-instance
2017-02-23 16:51:18,405 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_timezone - wb: [420] 25 bytes
2017-02-23 16:51:18,406 - helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_timezone'>)
2017-02-23 16:51:18,406 - cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
2017-02-23 16:51:18,406 - handlers.py[DEBUG]: finish: modules-config/config-timezone: SUCCESS: config-timezone ran successfully
2017-02-23 16:51:18,406 - stages.py[DEBUG]: Running module disable-ec2-metadata (<module 'cloudinit.config.cc_disable_ec2_metadata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disable_ec2_metadata.py'>) with frequency always
2017-02-23 16:51:18,407 - handlers.py[DEBUG]: start: modules-config/config-disable-ec2-metadata: running config-disable-ec2-metadata with frequency always
2017-02-23 16:51:18,407 - helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7fb7f34b5e48>)
2017-02-23 16:51:18,407 - cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
2017-02-23 16:51:18,407 - handlers.py[DEBUG]: finish: modules-config/config-disable-ec2-metadata: SUCCESS: config-disable-ec2-metadata ran successfully
2017-02-23 16:51:18,407 - stages.py[DEBUG]: Running module runcmd (<module 'cloudinit.config.cc_runcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_runcmd.py'>) with frequency once-per-instance
2017-02-23 16:51:18,407 - handlers.py[DEBUG]: start: modules-config/config-runcmd: running config-runcmd with frequency once-per-instance
2017-02-23 16:51:18,407 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_runcmd - wb: [420] 25 bytes
2017-02-23 16:51:18,408 - helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_runcmd'>)
2017-02-23 16:51:18,408 - util.py[DEBUG]: Shellified 1 commands.
2017-02-23 16:51:18,409 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/scripts/runcmd - wb: [448] 105 bytes
2017-02-23 16:51:18,409 - handlers.py[DEBUG]: finish: modules-config/config-runcmd: SUCCESS: config-runcmd ran successfully
2017-02-23 16:51:18,409 - stages.py[DEBUG]: Running module byobu (<module 'cloudinit.config.cc_byobu' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_byobu.py'>) with frequency once-per-instance
2017-02-23 16:51:18,410 - handlers.py[DEBUG]: start: modules-config/config-byobu: running config-byobu with frequency once-per-instance
2017-02-23 16:51:18,410 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_byobu - wb: [420] 25 bytes
2017-02-23 16:51:18,410 - helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_byobu'>)
2017-02-23 16:51:18,410 - cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
2017-02-23 16:51:18,410 - handlers.py[DEBUG]: finish: modules-config/config-byobu: SUCCESS: config-byobu ran successfully
2017-02-23 16:51:18,410 - main.py[DEBUG]: Ran 13 modules with 0 failures
2017-02-23 16:51:18,411 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-23 16:51:18,411 - util.py[DEBUG]: Read 11 bytes from /proc/uptime
2017-02-23 16:51:18,411 - util.py[DEBUG]: cloud-init mode 'modules' took 4.584 seconds (4.59)
2017-02-23 16:51:18,411 - handlers.py[DEBUG]: finish: modules-config: SUCCESS: running modules for config
2017-02-23 16:51:18,746 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'modules:final' at Thu, 23 Feb 2017 15:51:18 +0000. Up 20.06 seconds.
2017-02-23 16:51:18,824 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-02-23 16:51:18,825 - stages.py[DEBUG]: Running module snappy (<module 'cloudinit.config.cc_snappy' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snappy.py'>) with frequency once-per-instance
2017-02-23 16:51:18,825 - handlers.py[DEBUG]: start: modules-final/config-snappy: running config-snappy with frequency once-per-instance
2017-02-23 16:51:18,826 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_snappy - wb: [420] 25 bytes
2017-02-23 16:51:18,826 - helpers.py[DEBUG]: Running config-snappy using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_snappy'>)
2017-02-23 16:51:18,826 - util.py[DEBUG]: Reading from /etc/system-image/channel.ini (quiet=True)
2017-02-23 16:51:18,826 - util.py[DEBUG]: Read 0 bytes from /etc/system-image/channel.ini
2017-02-23 16:51:18,826 - cc_snappy.py[DEBUG]: snappy: 'auto' mode, and system not snappy
2017-02-23 16:51:18,826 - handlers.py[DEBUG]: finish: modules-final/config-snappy: SUCCESS: config-snappy ran successfully
2017-02-23 16:51:18,827 - stages.py[DEBUG]: Running module package-update-upgrade-install (<module 'cloudinit.config.cc_package_update_upgrade_install' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_package_update_upgrade_install.py'>) with frequency once-per-instance
2017-02-23 16:51:18,827 - handlers.py[DEBUG]: start: modules-final/config-package-update-upgrade-install: running config-package-update-upgrade-install with frequency once-per-instance
2017-02-23 16:51:18,827 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_package_update_upgrade_install - wb: [420] 25 bytes
2017-02-23 16:51:18,827 - helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_package_update_upgrade_install'>)
2017-02-23 16:51:18,827 - handlers.py[DEBUG]: finish: modules-final/config-package-update-upgrade-install: SUCCESS: config-package-update-upgrade-install ran successfully
2017-02-23 16:51:18,827 - stages.py[DEBUG]: Running module fan (<module 'cloudinit.config.cc_fan' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_fan.py'>) with frequency once-per-instance
2017-02-23 16:51:18,828 - handlers.py[DEBUG]: start: modules-final/config-fan: running config-fan with frequency once-per-instance
2017-02-23 16:51:18,828 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_fan - wb: [420] 24 bytes
2017-02-23 16:51:18,828 - helpers.py[DEBUG]: Running config-fan using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_fan'>)
2017-02-23 16:51:18,829 - cc_fan.py[DEBUG]: fan: no 'fan' config entry. disabling
2017-02-23 16:51:18,829 - handlers.py[DEBUG]: finish: modules-final/config-fan: SUCCESS: config-fan ran successfully
2017-02-23 16:51:18,829 - stages.py[DEBUG]: Running module landscape (<module 'cloudinit.config.cc_landscape' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_landscape.py'>) with frequency once-per-instance
2017-02-23 16:51:18,829 - handlers.py[DEBUG]: start: modules-final/config-landscape: running config-landscape with frequency once-per-instance
2017-02-23 16:51:18,829 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_landscape - wb: [420] 25 bytes
2017-02-23 16:51:18,830 - helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_landscape'>)
2017-02-23 16:51:18,830 - handlers.py[DEBUG]: finish: modules-final/config-landscape: SUCCESS: config-landscape ran successfully
2017-02-23 16:51:18,830 - stages.py[DEBUG]: Running module lxd (<module 'cloudinit.config.cc_lxd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_lxd.py'>) with frequency once-per-instance
2017-02-23 16:51:18,830 - handlers.py[DEBUG]: start: modules-final/config-lxd: running config-lxd with frequency once-per-instance
2017-02-23 16:51:18,830 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_lxd - wb: [420] 24 bytes
2017-02-23 16:51:18,830 - helpers.py[DEBUG]: Running config-lxd using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_lxd'>)
2017-02-23 16:51:18,830 - cc_lxd.py[DEBUG]: Skipping module named lxd, not present or disabled by cfg
2017-02-23 16:51:18,830 - handlers.py[DEBUG]: finish: modules-final/config-lxd: SUCCESS: config-lxd ran successfully
2017-02-23 16:51:18,831 - stages.py[DEBUG]: Running module puppet (<module 'cloudinit.config.cc_puppet' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_puppet.py'>) with frequency once-per-instance
2017-02-23 16:51:18,831 - handlers.py[DEBUG]: start: modules-final/config-puppet: running config-puppet with frequency once-per-instance
2017-02-23 16:51:18,831 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_puppet - wb: [420] 24 bytes
2017-02-23 16:51:18,832 - helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_puppet'>)
2017-02-23 16:51:18,832 - cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
2017-02-23 16:51:18,832 - handlers.py[DEBUG]: finish: modules-final/config-puppet: SUCCESS: config-puppet ran successfully
2017-02-23 16:51:18,832 - stages.py[DEBUG]: Running module chef (<module 'cloudinit.config.cc_chef' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_chef.py'>) with frequency once-per-instance
2017-02-23 16:51:18,832 - handlers.py[DEBUG]: start: modules-final/config-chef: running config-chef with frequency once-per-instance
2017-02-23 16:51:18,832 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_chef - wb: [420] 25 bytes
2017-02-23 16:51:18,833 - helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_chef'>)
2017-02-23 16:51:18,833 - cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
2017-02-23 16:51:18,833 - handlers.py[DEBUG]: finish: modules-final/config-chef: SUCCESS: config-chef ran successfully
2017-02-23 16:51:18,833 - stages.py[DEBUG]: Running module salt-minion (<module 'cloudinit.config.cc_salt_minion' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_salt_minion.py'>) with frequency once-per-instance
2017-02-23 16:51:18,833 - handlers.py[DEBUG]: start: modules-final/config-salt-minion: running config-salt-minion with frequency once-per-instance
2017-02-23 16:51:18,833 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_salt_minion - wb: [420] 25 bytes
2017-02-23 16:51:18,834 - helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_salt_minion'>)
2017-02-23 16:51:18,834 - cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
2017-02-23 16:51:18,834 - handlers.py[DEBUG]: finish: modules-final/config-salt-minion: SUCCESS: config-salt-minion ran successfully
2017-02-23 16:51:18,834 - stages.py[DEBUG]: Running module mcollective (<module 'cloudinit.config.cc_mcollective' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mcollective.py'>) with frequency once-per-instance
2017-02-23 16:51:18,834 - handlers.py[DEBUG]: start: modules-final/config-mcollective: running config-mcollective with frequency once-per-instance
2017-02-23 16:51:18,834 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_mcollective - wb: [420] 25 bytes
2017-02-23 16:51:18,834 - helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_mcollective'>)
2017-02-23 16:51:18,834 - cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
2017-02-23 16:51:18,835 - handlers.py[DEBUG]: finish: modules-final/config-mcollective: SUCCESS: config-mcollective ran successfully
2017-02-23 16:51:18,835 - stages.py[DEBUG]: Running module rightscale_userdata (<module 'cloudinit.config.cc_rightscale_userdata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rightscale_userdata.py'>) with frequency once-per-instance
2017-02-23 16:51:18,835 - handlers.py[DEBUG]: start: modules-final/config-rightscale_userdata: running config-rightscale_userdata with frequency once-per-instance
2017-02-23 16:51:18,835 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_rightscale_userdata - wb: [420] 25 bytes
2017-02-23 16:51:18,835 - helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_rightscale_userdata'>)
2017-02-23 16:51:18,835 - cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
2017-02-23 16:51:18,835 - handlers.py[DEBUG]: finish: modules-final/config-rightscale_userdata: SUCCESS: config-rightscale_userdata ran successfully
2017-02-23 16:51:18,835 - stages.py[DEBUG]: Running module scripts-vendor (<module 'cloudinit.config.cc_scripts_vendor' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_vendor.py'>) with frequency once-per-instance
2017-02-23 16:51:18,836 - handlers.py[DEBUG]: start: modules-final/config-scripts-vendor: running config-scripts-vendor with frequency once-per-instance
2017-02-23 16:51:18,836 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_scripts_vendor - wb: [420] 25 bytes
2017-02-23 16:51:18,836 - helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_scripts_vendor'>)
2017-02-23 16:51:18,836 - handlers.py[DEBUG]: finish: modules-final/config-scripts-vendor: SUCCESS: config-scripts-vendor ran successfully
2017-02-23 16:51:18,836 - stages.py[DEBUG]: Running module scripts-per-once (<module 'cloudinit.config.cc_scripts_per_once' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_once.py'>) with frequency once
2017-02-23 16:51:18,836 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-once: running config-scripts-per-once with frequency once
2017-02-23 16:51:18,837 - util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [420] 24 bytes
2017-02-23 16:51:18,837 - helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
2017-02-23 16:51:18,872 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-once: SUCCESS: config-scripts-per-once ran successfully
2017-02-23 16:51:18,872 - stages.py[DEBUG]: Running module scripts-per-boot (<module 'cloudinit.config.cc_scripts_per_boot' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_boot.py'>) with frequency always
2017-02-23 16:51:18,872 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-boot: running config-scripts-per-boot with frequency always
2017-02-23 16:51:18,872 - helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f773ed7e400>)
2017-02-23 16:51:18,874 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-boot: SUCCESS: config-scripts-per-boot ran successfully
2017-02-23 16:51:18,874 - stages.py[DEBUG]: Running module scripts-per-instance (<module 'cloudinit.config.cc_scripts_per_instance' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_instance.py'>) with frequency once-per-instance
2017-02-23 16:51:18,875 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-instance: running config-scripts-per-instance with frequency once-per-instance
2017-02-23 16:51:18,875 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_scripts_per_instance - wb: [420] 24 bytes
2017-02-23 16:51:18,876 - helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_scripts_per_instance'>)
2017-02-23 16:51:18,876 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-instance: SUCCESS: config-scripts-per-instance ran successfully
2017-02-23 16:51:18,876 - stages.py[DEBUG]: Running module scripts-user (<module 'cloudinit.config.cc_scripts_user' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_user.py'>) with frequency once-per-instance
2017-02-23 16:51:18,876 - handlers.py[DEBUG]: start: modules-final/config-scripts-user: running config-scripts-user with frequency once-per-instance
2017-02-23 16:51:18,876 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_scripts_user - wb: [420] 25 bytes
2017-02-23 16:51:18,877 - helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_scripts_user'>)
2017-02-23 16:51:18,877 - util.py[DEBUG]: Running command ['/var/lib/cloud/instance/scripts/runcmd'] with allowed return codes [0] (shell=False, capture=False)
2017-02-23 16:51:44,795 - handlers.py[DEBUG]: finish: modules-final/config-scripts-user: SUCCESS: config-scripts-user ran successfully
2017-02-23 16:51:44,808 - stages.py[DEBUG]: Running module ssh-authkey-fingerprints (<module 'cloudinit.config.cc_ssh_authkey_fingerprints' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_authkey_fingerprints.py'>) with frequency once-per-instance
2017-02-23 16:51:44,808 - handlers.py[DEBUG]: start: modules-final/config-ssh-authkey-fingerprints: running config-ssh-authkey-fingerprints with frequency once-per-instance
2017-02-23 16:51:44,824 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_ssh_authkey_fingerprints - wb: [420] 25 bytes
2017-02-23 16:51:44,825 - helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_ssh_authkey_fingerprints'>)
2017-02-23 16:51:44,834 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-02-23 16:51:44,847 - util.py[DEBUG]: Read 2542 bytes from /etc/ssh/sshd_config
2017-02-23 16:51:44,856 - util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
2017-02-23 16:51:44,856 - util.py[DEBUG]: Read 0 bytes from /home/ubuntu/.ssh/authorized_keys
2017-02-23 16:51:44,857 - handlers.py[DEBUG]: finish: modules-final/config-ssh-authkey-fingerprints: SUCCESS: config-ssh-authkey-fingerprints ran successfully
2017-02-23 16:51:44,857 - stages.py[DEBUG]: Running module keys-to-console (<module 'cloudinit.config.cc_keys_to_console' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_keys_to_console.py'>) with frequency once-per-instance
2017-02-23 16:51:44,857 - handlers.py[DEBUG]: start: modules-final/config-keys-to-console: running config-keys-to-console with frequency once-per-instance
2017-02-23 16:51:44,857 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_keys_to_console - wb: [420] 25 bytes
2017-02-23 16:51:44,858 - helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_keys_to_console'>)
2017-02-23 16:51:44,877 - util.py[DEBUG]: Running command ['/usr/lib/cloud-init/write-ssh-key-fingerprints', '', 'ssh-dss'] with allowed return codes [0] (shell=False, capture=True)
2017-02-23 16:51:45,049 - handlers.py[DEBUG]: finish: modules-final/config-keys-to-console: SUCCESS: config-keys-to-console ran successfully
2017-02-23 16:51:45,050 - stages.py[DEBUG]: Running module phone-home (<module 'cloudinit.config.cc_phone_home' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_phone_home.py'>) with frequency once-per-instance
2017-02-23 16:51:45,050 - handlers.py[DEBUG]: start: modules-final/config-phone-home: running config-phone-home with frequency once-per-instance
2017-02-23 16:51:45,050 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_phone_home - wb: [420] 24 bytes
2017-02-23 16:51:45,051 - helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_phone_home'>)
2017-02-23 16:51:45,051 - cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
2017-02-23 16:51:45,051 - handlers.py[DEBUG]: finish: modules-final/config-phone-home: SUCCESS: config-phone-home ran successfully
2017-02-23 16:51:45,051 - stages.py[DEBUG]: Running module final-message (<module 'cloudinit.config.cc_final_message' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_final_message.py'>) with frequency always
2017-02-23 16:51:45,051 - handlers.py[DEBUG]: start: modules-final/config-final-message: running config-final-message with frequency always
2017-02-23 16:51:45,051 - helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f7743ecc860>)
2017-02-23 16:51:45,052 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-23 16:51:45,052 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2017-02-23 16:51:45,063 - util.py[DEBUG]: Cloud-init v. 0.7.9 finished at Thu, 23 Feb 2017 15:51:45 +0000. Datasource DataSourceEc2. Up 133.79 seconds
2017-02-23 16:51:45,078 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 52 bytes
2017-02-23 16:51:45,079 - handlers.py[DEBUG]: finish: modules-final/config-final-message: SUCCESS: config-final-message ran successfully
2017-02-23 16:51:45,079 - stages.py[DEBUG]: Running module power-state-change (<module 'cloudinit.config.cc_power_state_change' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_power_state_change.py'>) with frequency once-per-instance
2017-02-23 16:51:45,079 - handlers.py[DEBUG]: start: modules-final/config-power-state-change: running config-power-state-change with frequency once-per-instance
2017-02-23 16:51:45,079 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-000000ac/sem/config_power_state_change - wb: [420] 24 bytes
2017-02-23 16:51:45,079 - helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/i-000000ac/sem/config_power_state_change'>)
2017-02-23 16:51:45,080 - cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
2017-02-23 16:51:45,080 - handlers.py[DEBUG]: finish: modules-final/config-power-state-change: SUCCESS: config-power-state-change ran successfully
2017-02-23 16:51:45,080 - main.py[DEBUG]: Ran 20 modules with 0 failures
2017-02-23 16:51:45,090 - util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
2017-02-23 16:51:45,090 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-02-23 16:51:45,090 - util.py[DEBUG]: Read 13 bytes from /proc/uptime
2017-02-23 16:51:45,090 - util.py[DEBUG]: cloud-init mode 'modules' took 26.391 seconds (113.78)
2017-02-23 16:51:45,090 - handlers.py[DEBUG]: finish: modules-final: SUCCESS: running modules for final
|