Ubuntu Pastebin

Paste from ubuntu at Mon, 27 Nov 2017 20:46:16 +0000

Download as text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
2017-11-27 20:42:12,244 - util.py[DEBUG]: Cloud-init v. 17.1 running 'init-local' at Mon, 27 Nov 2017 20:42:12 +0000. Up 51.03 seconds.
2017-11-27 20:42:12,244 - main.py[INFO]: wrote cloud-config data from cloud-config-url='http://10.10.0.113/MAAS/metadata/latest/by-id/x678dw/?op=get_preseed' to /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg
2017-11-27 20:42:12,244 - main.py[DEBUG]: Closing stdin.
2017-11-27 20:42:12,250 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2017-11-27 20:42:12,251 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-11-27 20:42:12,251 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2017-11-27 20:42:12,251 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2017-11-27 20:42:12,251 - handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
2017-11-27 20:42:12,271 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST', 'headers': {'Authorization': 'OAuth oauth_nonce="15748743633161626521511815332", oauth_timestamp="1511815332", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}} configuration
2017-11-27 20:42:12,277 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:12,277 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-11-27 20:42:12,277 - stages.py[DEBUG]: no cache found
2017-11-27 20:42:12,277 - handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: no cache found
2017-11-27 20:42:12,277 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST', 'headers': {'Authorization': 'OAuth oauth_nonce="161408028118495181961511815332", oauth_timestamp="1511815332", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}} configuration
2017-11-27 20:42:12,283 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:12,283 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-27 20:42:12,293 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-27 20:42:12,293 - __init__.py[DEBUG]: Looking for for data source in: ['MAAS'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2017-11-27 20:42:12,298 - __init__.py[DEBUG]: Searching for local data source in: []
2017-11-27 20:42:12,299 - main.py[DEBUG]: No local datasource found
2017-11-27 20:42:12,299 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/address (quiet=False)
2017-11-27 20:42:12,299 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp2s0/address
2017-11-27 20:42:12,299 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/address (quiet=False)
2017-11-27 20:42:12,299 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp4s0f1/address
2017-11-27 20:42:12,299 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/address (quiet=False)
2017-11-27 20:42:12,299 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp1s0/address
2017-11-27 20:42:12,299 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/address (quiet=False)
2017-11-27 20:42:12,299 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp4s0f0/address
2017-11-27 20:42:12,299 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-27 20:42:12,300 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-27 20:42:12,300 - util.py[DEBUG]: Reading from /run/net-enp1s0.conf (quiet=False)
2017-11-27 20:42:12,300 - util.py[DEBUG]: Read 329 bytes from /run/net-enp1s0.conf
2017-11-27 20:42:12,301 - stages.py[DEBUG]: applying net config names for {'config': [{'name': 'enp1s0', 'type': 'physical', 'subnets': [{'gateway': '10.10.0.1', 'control': 'manual', 'broadcast': '10.10.255.255', 'type': 'dhcp', 'netmask': '255.255.0.0', 'dns_search': ['talentiq.io'], 'dns_nameservers': ['10.10.0.1']}], 'mac_address': '00:25:90:49:2f:38'}], 'version': 1}
2017-11-27 20:42:12,301 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/device/device (quiet=False)
2017-11-27 20:42:12,301 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp1s0/device/device
2017-11-27 20:42:12,302 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/addr_assign_type (quiet=False)
2017-11-27 20:42:12,302 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp2s0/addr_assign_type
2017-11-27 20:42:12,302 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/uevent (quiet=False)
2017-11-27 20:42:12,302 - util.py[DEBUG]: Read 27 bytes from /sys/class/net/enp2s0/uevent
2017-11-27 20:42:12,302 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/address (quiet=False)
2017-11-27 20:42:12,302 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp2s0/address
2017-11-27 20:42:12,302 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/device/device (quiet=False)
2017-11-27 20:42:12,302 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp2s0/device/device
2017-11-27 20:42:12,302 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/addr_assign_type (quiet=False)
2017-11-27 20:42:12,302 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp4s0f1/addr_assign_type
2017-11-27 20:42:12,303 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/uevent (quiet=False)
2017-11-27 20:42:12,303 - util.py[DEBUG]: Read 29 bytes from /sys/class/net/enp4s0f1/uevent
2017-11-27 20:42:12,303 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/address (quiet=False)
2017-11-27 20:42:12,303 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp4s0f1/address
2017-11-27 20:42:12,303 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/device/device (quiet=False)
2017-11-27 20:42:12,303 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp4s0f1/device/device
2017-11-27 20:42:12,303 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/addr_assign_type (quiet=False)
2017-11-27 20:42:12,303 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp1s0/addr_assign_type
2017-11-27 20:42:12,303 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/uevent (quiet=False)
2017-11-27 20:42:12,304 - util.py[DEBUG]: Read 27 bytes from /sys/class/net/enp1s0/uevent
2017-11-27 20:42:12,304 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/address (quiet=False)
2017-11-27 20:42:12,304 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp1s0/address
2017-11-27 20:42:12,304 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/device/device (quiet=False)
2017-11-27 20:42:12,304 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp1s0/device/device
2017-11-27 20:42:12,304 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/addr_assign_type (quiet=False)
2017-11-27 20:42:12,304 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp4s0f0/addr_assign_type
2017-11-27 20:42:12,304 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/uevent (quiet=False)
2017-11-27 20:42:12,304 - util.py[DEBUG]: Read 29 bytes from /sys/class/net/enp4s0f0/uevent
2017-11-27 20:42:12,304 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/address (quiet=False)
2017-11-27 20:42:12,305 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp4s0f0/address
2017-11-27 20:42:12,305 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/device/device (quiet=False)
2017-11-27 20:42:12,305 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp4s0f0/device/device
2017-11-27 20:42:12,305 - util.py[DEBUG]: Reading from /sys/class/net/lo/addr_assign_type (quiet=False)
2017-11-27 20:42:12,305 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/lo/addr_assign_type
2017-11-27 20:42:12,305 - util.py[DEBUG]: Reading from /sys/class/net/lo/uevent (quiet=False)
2017-11-27 20:42:12,305 - util.py[DEBUG]: Read 23 bytes from /sys/class/net/lo/uevent
2017-11-27 20:42:12,305 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-27 20:42:12,305 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-27 20:42:12,305 - util.py[DEBUG]: Reading from /sys/class/net/lo/device/device (quiet=False)
2017-11-27 20:42:12,306 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/operstate (quiet=False)
2017-11-27 20:42:12,306 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp2s0/operstate
2017-11-27 20:42:12,306 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/operstate (quiet=False)
2017-11-27 20:42:12,306 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp4s0f1/operstate
2017-11-27 20:42:12,306 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/operstate (quiet=False)
2017-11-27 20:42:12,306 - util.py[DEBUG]: Read 3 bytes from /sys/class/net/enp1s0/operstate
2017-11-27 20:42:12,306 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/operstate (quiet=False)
2017-11-27 20:42:12,306 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp4s0f0/operstate
2017-11-27 20:42:12,306 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-11-27 20:42:12,306 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-11-27 20:42:12,307 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:12,336 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:12,338 - __init__.py[DEBUG]: no work necessary for renaming of [['00:25:90:49:2f:38', 'enp1s0', 'e1000e', '0x10d3']]
2017-11-27 20:42:12,338 - stages.py[INFO]: Applying network configuration from cmdline bringup=False: {'config': [{'name': 'enp1s0', 'type': 'physical', 'subnets': [{'gateway': '10.10.0.1', 'control': 'manual', 'broadcast': '10.10.255.255', 'type': 'dhcp', 'netmask': '255.255.0.0', 'dns_search': ['talentiq.io'], 'dns_nameservers': ['10.10.0.1']}], 'mac_address': '00:25:90:49:2f:38'}], 'version': 1}
2017-11-27 20:42:12,339 - __init__.py[DEBUG]: Selected renderer 'eni' from priority list: None
2017-11-27 20:42:12,344 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [644] 490 bytes
2017-11-27 20:42:12,345 - util.py[DEBUG]: Writing to /etc/udev/rules.d/70-persistent-net.rules - wb: [644] 98 bytes
2017-11-27 20:42:12,345 - main.py[DEBUG]: [local] Exiting without datasource in local mode
2017-11-27 20:42:12,346 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-27 20:42:12,346 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-11-27 20:42:12,346 - util.py[DEBUG]: cloud-init mode 'init' took 0.333 seconds (0.34)
2017-11-27 20:42:12,346 - handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
2017-11-27 20:42:12,346 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST', 'headers': {'Authorization': 'OAuth oauth_nonce="57370607813465474041511815332", oauth_timestamp="1511815332", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}} configuration
2017-11-27 20:42:12,444 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,197 - util.py[DEBUG]: Cloud-init v. 17.1 running 'init' at Mon, 27 Nov 2017 20:42:13 +0000. Up 51.96 seconds.
2017-11-27 20:42:13,197 - main.py[INFO]: wrote cloud-config data from cloud-config-url='http://10.10.0.113/MAAS/metadata/latest/by-id/x678dw/?op=get_preseed' to /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg
2017-11-27 20:42:13,197 - main.py[DEBUG]: Closing stdin.
2017-11-27 20:42:13,202 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2017-11-27 20:42:13,204 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-11-27 20:42:13,204 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-27 20:42:13,219 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-27 20:42:13,229 - util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-27 20:42:13,235 - 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-11-27 20:42:13,235 - main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
2017-11-27 20:42:13,236 - handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
2017-11-27 20:42:13,246 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="147460088235255693951511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,252 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,252 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-11-27 20:42:13,253 - stages.py[DEBUG]: no cache found
2017-11-27 20:42:13,253 - handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: no cache found
2017-11-27 20:42:13,253 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="19962914353796235931511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,259 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,259 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-27 20:42:13,263 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-27 20:42:13,264 - __init__.py[DEBUG]: Looking for for data source in: ['MAAS'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2017-11-27 20:42:13,265 - __init__.py[DEBUG]: Searching for network data source in: ['DataSourceMAAS']
2017-11-27 20:42:13,266 - handlers.py[DEBUG]: start: init-network/search-MAAS: searching for network data from DataSourceMAAS
2017-11-27 20:42:13,266 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="33331886924969352761511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,273 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,273 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceMAAS.DataSourceMAAS'>
2017-11-27 20:42:13,274 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/instance-id' with {'method': 'GET', 'url': 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/instance-id', 'headers': {'Authorization': 'OAuth oauth_nonce="136630135418299949081511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"', 'User-Agent': 'Cloud-Init/17.1'}, 'timeout': 50.0, 'allow_redirects': True} configuration
2017-11-27 20:42:13,364 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/instance-id (200, 6b) after 1 attempts
2017-11-27 20:42:13,364 - DataSourceMAAS.py[DEBUG]: Using metadata source: 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/instance-id'
2017-11-27 20:42:13,364 - url_helper.py[DEBUG]: [0/2] open 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/instance-id' with {'method': 'GET', 'url': 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/instance-id', 'headers': {'Authorization': 'OAuth oauth_nonce="47539599953463937741511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,429 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/instance-id (200, 6b) after 1 attempts
2017-11-27 20:42:13,429 - url_helper.py[DEBUG]: [0/2] open 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/local-hostname' with {'method': 'GET', 'url': 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/local-hostname', 'headers': {'Authorization': 'OAuth oauth_nonce="177261528787050723901511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,492 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/local-hostname (200, 16b) after 1 attempts
2017-11-27 20:42:13,493 - url_helper.py[DEBUG]: [0/2] open 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/public-keys' with {'method': 'GET', 'url': 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/public-keys', 'headers': {'Authorization': 'OAuth oauth_nonce="75292538399011042451511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,540 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/public-keys (200, 1217b) after 1 attempts
2017-11-27 20:42:13,540 - url_helper.py[DEBUG]: [0/2] open 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/vendor-data' with {'method': 'GET', 'url': 'http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/vendor-data', 'headers': {'Authorization': 'OAuth oauth_nonce="91546277909588439021511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,625 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/2012-03-01/meta-data/vendor-data (200, 38b) after 1 attempts
2017-11-27 20:42:13,626 - url_helper.py[DEBUG]: [0/2] open 'http://10.10.0.113/MAAS/metadata/2012-03-01/user-data' with {'method': 'GET', 'url': 'http://10.10.0.113/MAAS/metadata/2012-03-01/user-data', 'headers': {'Authorization': 'OAuth oauth_nonce="62499598729179534551511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,800 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/2012-03-01/user-data (200, 101789b) after 1 attempts
2017-11-27 20:42:13,800 - util.py[DEBUG]: Attempting to load yaml from string of length 38 with allowed root types <class 'object'>
2017-11-27 20:42:13,800 - handlers.py[DEBUG]: finish: init-network/search-MAAS: SUCCESS: found network data from DataSourceMAAS
2017-11-27 20:42:13,801 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="106831772073353248791511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,807 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,807 - stages.py[INFO]: Loaded datasource DataSourceMAAS - DataSourceMAAS [http://10.10.0.113/MAAS/metadata/]
2017-11-27 20:42:13,807 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-27 20:42:13,807 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-27 20:42:13,807 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,827 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg (quiet=False)
2017-11-27 20:42:13,827 - util.py[DEBUG]: Read 3271 bytes from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg
2017-11-27 20:42:13,827 - util.py[DEBUG]: Attempting to load yaml from string of length 3271 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,842 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-27 20:42:13,842 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-27 20:42:13,842 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,845 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-27 20:42:13,845 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-27 20:42:13,845 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,851 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-27 20:42:13,851 - util.py[DEBUG]: Read 45 bytes from /run/cloud-init/cloud.cfg
2017-11-27 20:42:13,851 - util.py[DEBUG]: Attempting to load yaml from string of length 45 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,852 - util.py[DEBUG]: Attempting to load yaml from string of length 29 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,854 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-27 20:42:13,854 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/x678dw'
2017-11-27 20:42:13,856 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/x678dw/datasource (quiet=False)
2017-11-27 20:42:13,856 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/datasource - wb: [644] 67 bytes
2017-11-27 20:42:13,856 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [644] 67 bytes
2017-11-27 20:42:13,857 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2017-11-27 20:42:13,857 - stages.py[DEBUG]: previous iid found to be NO_PREVIOUS_INSTANCE_ID
2017-11-27 20:42:13,857 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [644] 7 bytes
2017-11-27 20:42:13,858 - util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [644] 7 bytes
2017-11-27 20:42:13,858 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [644] 24 bytes
2017-11-27 20:42:13,860 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 111300 bytes
2017-11-27 20:42:13,860 - main.py[DEBUG]: [net] init will now be targeting instance id: x678dw. new=True
2017-11-27 20:42:13,860 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-27 20:42:13,861 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-27 20:42:13,861 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,879 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg (quiet=False)
2017-11-27 20:42:13,880 - util.py[DEBUG]: Read 3271 bytes from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg
2017-11-27 20:42:13,880 - util.py[DEBUG]: Attempting to load yaml from string of length 3271 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,895 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-27 20:42:13,895 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-27 20:42:13,895 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,898 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-27 20:42:13,898 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-27 20:42:13,898 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,904 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-27 20:42:13,904 - util.py[DEBUG]: Read 45 bytes from /run/cloud-init/cloud.cfg
2017-11-27 20:42:13,904 - util.py[DEBUG]: Attempting to load yaml from string of length 45 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,905 - util.py[DEBUG]: Attempting to load yaml from string of length 29 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,907 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/address (quiet=False)
2017-11-27 20:42:13,907 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp2s0/address
2017-11-27 20:42:13,907 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/address (quiet=False)
2017-11-27 20:42:13,907 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp4s0f1/address
2017-11-27 20:42:13,907 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/address (quiet=False)
2017-11-27 20:42:13,907 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp1s0/address
2017-11-27 20:42:13,907 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/address (quiet=False)
2017-11-27 20:42:13,907 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp4s0f0/address
2017-11-27 20:42:13,908 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-27 20:42:13,908 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-27 20:42:13,908 - util.py[DEBUG]: Reading from /run/net-enp1s0.conf (quiet=False)
2017-11-27 20:42:13,908 - util.py[DEBUG]: Read 329 bytes from /run/net-enp1s0.conf
2017-11-27 20:42:13,910 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'mac_address': '00:25:90:49:2f:38', 'type': 'physical', 'name': 'enp1s0', 'subnets': [{'dns_search': ['talentiq.io'], 'gateway': '10.10.0.1', 'netmask': '255.255.0.0', 'control': 'manual', 'type': 'dhcp', 'broadcast': '10.10.255.255', 'dns_nameservers': ['10.10.0.1']}]}]}
2017-11-27 20:42:13,910 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-27 20:42:13,910 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/device/device (quiet=False)
2017-11-27 20:42:13,911 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp1s0/device/device
2017-11-27 20:42:13,911 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/addr_assign_type (quiet=False)
2017-11-27 20:42:13,911 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp2s0/addr_assign_type
2017-11-27 20:42:13,911 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/uevent (quiet=False)
2017-11-27 20:42:13,911 - util.py[DEBUG]: Read 27 bytes from /sys/class/net/enp2s0/uevent
2017-11-27 20:42:13,911 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/address (quiet=False)
2017-11-27 20:42:13,911 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp2s0/address
2017-11-27 20:42:13,911 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/device/device (quiet=False)
2017-11-27 20:42:13,911 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp2s0/device/device
2017-11-27 20:42:13,912 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/addr_assign_type (quiet=False)
2017-11-27 20:42:13,912 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp4s0f1/addr_assign_type
2017-11-27 20:42:13,912 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/uevent (quiet=False)
2017-11-27 20:42:13,912 - util.py[DEBUG]: Read 29 bytes from /sys/class/net/enp4s0f1/uevent
2017-11-27 20:42:13,912 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/address (quiet=False)
2017-11-27 20:42:13,912 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp4s0f1/address
2017-11-27 20:42:13,912 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/device/device (quiet=False)
2017-11-27 20:42:13,912 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp4s0f1/device/device
2017-11-27 20:42:13,912 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/addr_assign_type (quiet=False)
2017-11-27 20:42:13,913 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp1s0/addr_assign_type
2017-11-27 20:42:13,913 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/uevent (quiet=False)
2017-11-27 20:42:13,913 - util.py[DEBUG]: Read 27 bytes from /sys/class/net/enp1s0/uevent
2017-11-27 20:42:13,913 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/address (quiet=False)
2017-11-27 20:42:13,913 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp1s0/address
2017-11-27 20:42:13,913 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/device/device (quiet=False)
2017-11-27 20:42:13,913 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp1s0/device/device
2017-11-27 20:42:13,913 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/addr_assign_type (quiet=False)
2017-11-27 20:42:13,914 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/enp4s0f0/addr_assign_type
2017-11-27 20:42:13,914 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/uevent (quiet=False)
2017-11-27 20:42:13,914 - util.py[DEBUG]: Read 29 bytes from /sys/class/net/enp4s0f0/uevent
2017-11-27 20:42:13,914 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/address (quiet=False)
2017-11-27 20:42:13,914 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/enp4s0f0/address
2017-11-27 20:42:13,914 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/device/device (quiet=False)
2017-11-27 20:42:13,914 - util.py[DEBUG]: Read 7 bytes from /sys/class/net/enp4s0f0/device/device
2017-11-27 20:42:13,914 - util.py[DEBUG]: Reading from /sys/class/net/lo/addr_assign_type (quiet=False)
2017-11-27 20:42:13,914 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/lo/addr_assign_type
2017-11-27 20:42:13,915 - util.py[DEBUG]: Reading from /sys/class/net/lo/uevent (quiet=False)
2017-11-27 20:42:13,915 - util.py[DEBUG]: Read 23 bytes from /sys/class/net/lo/uevent
2017-11-27 20:42:13,915 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-27 20:42:13,915 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-27 20:42:13,915 - util.py[DEBUG]: Reading from /sys/class/net/lo/device/device (quiet=False)
2017-11-27 20:42:13,915 - util.py[DEBUG]: Reading from /sys/class/net/enp2s0/operstate (quiet=False)
2017-11-27 20:42:13,915 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp2s0/operstate
2017-11-27 20:42:13,915 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f1/operstate (quiet=False)
2017-11-27 20:42:13,915 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp4s0f1/operstate
2017-11-27 20:42:13,916 - util.py[DEBUG]: Reading from /sys/class/net/enp1s0/operstate (quiet=False)
2017-11-27 20:42:13,916 - util.py[DEBUG]: Read 3 bytes from /sys/class/net/enp1s0/operstate
2017-11-27 20:42:13,916 - util.py[DEBUG]: Reading from /sys/class/net/enp4s0f0/operstate (quiet=False)
2017-11-27 20:42:13,916 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/enp4s0f0/operstate
2017-11-27 20:42:13,916 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-11-27 20:42:13,916 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-11-27 20:42:13,916 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:13,919 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:13,921 - __init__.py[DEBUG]: no work necessary for renaming of [['00:25:90:49:2f:38', 'enp1s0', 'e1000e', '0x10d3']]
2017-11-27 20:42:13,921 - stages.py[INFO]: Applying network configuration from cmdline bringup=True: {'version': 1, 'config': [{'mac_address': '00:25:90:49:2f:38', 'type': 'physical', 'name': 'enp1s0', 'subnets': [{'dns_search': ['talentiq.io'], 'gateway': '10.10.0.1', 'netmask': '255.255.0.0', 'control': 'manual', 'type': 'dhcp', 'broadcast': '10.10.255.255', 'dns_nameservers': ['10.10.0.1']}]}]}
2017-11-27 20:42:13,922 - __init__.py[DEBUG]: Selected renderer 'eni' from priority list: None
2017-11-27 20:42:13,927 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [644] 490 bytes
2017-11-27 20:42:13,928 - util.py[DEBUG]: Writing to /etc/udev/rules.d/70-persistent-net.rules - wb: [644] 98 bytes
2017-11-27 20:42:13,928 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/user-data.txt - wb: [600] 101789 bytes
2017-11-27 20:42:13,946 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/user-data.txt.i - wb: [600] 101811 bytes
2017-11-27 20:42:13,947 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/vendor-data.txt - wb: [600] 17 bytes
2017-11-27 20:42:13,947 - util.py[DEBUG]: Attempting to load yaml from string of length 17 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,949 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/vendor-data.txt.i - wb: [600] 322 bytes
2017-11-27 20:42:13,950 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/consume_data - wb: [644] 25 bytes
2017-11-27 20:42:13,950 - helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/consume_data'>)
2017-11-27 20:42:13,951 - handlers.py[DEBUG]: start: init-network/consume-user-data: reading and applying user-data
2017-11-27 20:42:13,951 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="49334396142155393761511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,957 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,957 - stages.py[DEBUG]: Added default handler for {'text/cloud-config-jsonp', 'text/cloud-config'} from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2017-11-27 20:42:13,958 - stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
2017-11-27 20:42:13,958 - stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
2017-11-27 20:42:13,958 - stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
2017-11-27 20:42:13,958 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2017-11-27 20:42:13,958 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,958 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,958 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,959 - __init__.py[DEBUG]: {'Content-Type': 'text/x-shellscript; charset="utf-8"', 'MIME-Version': '1.0', 'Content-Transfer-Encoding': 'base64', 'Content-Disposition': 'attachment; filename="user_data.sh"'}
2017-11-27 20:42:13,960 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (text/x-shellscript, user_data.sh, 2) with frequency once-per-instance
2017-11-27 20:42:13,960 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/scripts/user_data.sh - wb: [700] 75098 bytes
2017-11-27 20:42:13,961 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2017-11-27 20:42:13,961 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/cloud-config.txt - wb: [600] 0 bytes
2017-11-27 20:42:13,962 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,962 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,962 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,962 - handlers.py[DEBUG]: finish: init-network/consume-user-data: SUCCESS: reading and applying user-data
2017-11-27 20:42:13,963 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="166827626318907831681511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,968 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,968 - handlers.py[DEBUG]: start: init-network/consume-vendor-data: reading and applying vendor-data
2017-11-27 20:42:13,969 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="122672283964808031441511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,976 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,976 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-27 20:42:13,976 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-27 20:42:13,976 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,977 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-27 20:42:13,977 - stages.py[DEBUG]: vendor data will be consumed. disabled_handlers=None
2017-11-27 20:42:13,977 - stages.py[DEBUG]: Added default handler for {'text/cloud-config-jsonp', 'text/cloud-config'} from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2017-11-27 20:42:13,977 - stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
2017-11-27 20:42:13,977 - stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
2017-11-27 20:42:13,978 - stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
2017-11-27 20:42:13,978 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2017-11-27 20:42:13,978 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,978 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,978 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,978 - __init__.py[DEBUG]: {'Content-Type': 'text/cloud-config', 'MIME-Version': '1.0', 'Content-Disposition': 'attachment; filename="part-001"'}
2017-11-27 20:42:13,979 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (text/cloud-config, part-001, 3) with frequency once-per-instance
2017-11-27 20:42:13,979 - util.py[DEBUG]: Attempting to load yaml from string of length 17 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:13,979 - cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
2017-11-27 20:42:13,979 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2017-11-27 20:42:13,979 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/vendor-cloud-config.txt - wb: [600] 53 bytes
2017-11-27 20:42:13,980 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,980 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,980 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2017-11-27 20:42:13,981 - handlers.py[DEBUG]: finish: init-network/consume-vendor-data: SUCCESS: reading and applying vendor-data
2017-11-27 20:42:13,981 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="79740001561551960081511815333", oauth_timestamp="1511815333", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:13,987 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:13,988 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-27 20:42:13,988 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-27 20:42:13,988 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,007 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg (quiet=False)
2017-11-27 20:42:14,007 - util.py[DEBUG]: Read 3271 bytes from /etc/cloud/cloud.cfg.d/91_kernel_cmdline_url.cfg
2017-11-27 20:42:14,007 - util.py[DEBUG]: Attempting to load yaml from string of length 3271 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,022 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-27 20:42:14,023 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-27 20:42:14,023 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,025 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-27 20:42:14,025 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-27 20:42:14,026 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,032 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-27 20:42:14,032 - util.py[DEBUG]: Read 45 bytes from /run/cloud-init/cloud.cfg
2017-11-27 20:42:14,032 - util.py[DEBUG]: Attempting to load yaml from string of length 45 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,033 - util.py[DEBUG]: Attempting to load yaml from string of length 29 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,034 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-27 20:42:14,034 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-27 20:42:14,034 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,034 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-27 20:42:14,034 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/vendor-cloud-config.txt (quiet=False)
2017-11-27 20:42:14,034 - util.py[DEBUG]: Read 53 bytes from /var/lib/cloud/instance/vendor-cloud-config.txt
2017-11-27 20:42:14,034 - util.py[DEBUG]: Attempting to load yaml from string of length 53 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,036 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-27 20:42:14,036 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-27 20:42:14,036 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,036 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-27 20:42:14,036 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/vendor-cloud-config.txt (quiet=False)
2017-11-27 20:42:14,037 - util.py[DEBUG]: Read 53 bytes from /var/lib/cloud/instance/vendor-cloud-config.txt
2017-11-27 20:42:14,037 - util.py[DEBUG]: Attempting to load yaml from string of length 53 with allowed root types (<class 'dict'>,)
2017-11-27 20:42:14,040 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 209172 bytes
2017-11-27 20:42:14,041 - main.py[DEBUG]: used datasource 'DataSourceMAAS [http://10.10.0.113/MAAS/metadata/]' from 'MAAS' was in di_report's list: ['MAAS', 'None']
2017-11-27 20:42:14,220 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-27 20:42:14,221 - 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-11-27 20:42:14,221 - handlers.py[DEBUG]: start: init-network/config-migrator: running config-migrator with frequency always
2017-11-27 20:42:14,222 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="133659829944709339071511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,228 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,228 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7f22a5157f60>)
2017-11-27 20:42:14,229 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2017-11-27 20:42:14,229 - handlers.py[DEBUG]: finish: init-network/config-migrator: SUCCESS: config-migrator ran successfully
2017-11-27 20:42:14,229 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="54510950299663859361511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,236 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,236 - 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-11-27 20:42:14,237 - handlers.py[DEBUG]: start: init-network/config-seed_random: running config-seed_random with frequency once-per-instance
2017-11-27 20:42:14,237 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="90604056318432479921511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,242 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,243 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_seed_random - wb: [644] 25 bytes
2017-11-27 20:42:14,244 - helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_seed_random'>)
2017-11-27 20:42:14,244 - cc_seed_random.py[DEBUG]: no command provided
2017-11-27 20:42:14,244 - handlers.py[DEBUG]: finish: init-network/config-seed_random: SUCCESS: config-seed_random ran successfully
2017-11-27 20:42:14,244 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="31292278167724350241511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,251 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,251 - 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-11-27 20:42:14,251 - handlers.py[DEBUG]: start: init-network/config-bootcmd: running config-bootcmd with frequency always
2017-11-27 20:42:14,252 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="172445319928784380811511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,257 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,257 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7f22a5185518>)
2017-11-27 20:42:14,257 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2017-11-27 20:42:14,257 - handlers.py[DEBUG]: finish: init-network/config-bootcmd: SUCCESS: config-bootcmd ran successfully
2017-11-27 20:42:14,258 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="98470012023889915511511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,263 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,263 - 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-11-27 20:42:14,264 - handlers.py[DEBUG]: start: init-network/config-write-files: running config-write-files with frequency once-per-instance
2017-11-27 20:42:14,264 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="53250614350553078221511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,270 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,271 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_write_files - wb: [644] 25 bytes
2017-11-27 20:42:14,271 - helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_write_files'>)
2017-11-27 20:42:14,271 - cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
2017-11-27 20:42:14,272 - handlers.py[DEBUG]: finish: init-network/config-write-files: SUCCESS: config-write-files ran successfully
2017-11-27 20:42:14,272 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="109055750450791429151511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,278 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,278 - 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-11-27 20:42:14,279 - handlers.py[DEBUG]: start: init-network/config-growpart: running config-growpart with frequency always
2017-11-27 20:42:14,279 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="179153587696280776401511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,285 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,285 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7f22a50df7f0>)
2017-11-27 20:42:14,285 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg.  Using default: {'mode': 'auto', 'devices': ['/'], 'ignore_growroot_disabled': False}
2017-11-27 20:42:14,286 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,296 - util.py[DEBUG]: Reading from /proc/1163/mountinfo (quiet=False)
2017-11-27 20:42:14,296 - util.py[DEBUG]: Read 2869 bytes from /proc/1163/mountinfo
2017-11-27 20:42:14,296 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,298 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,300 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,302 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-27 20:42:14,302 - util.py[DEBUG]: Read 421 bytes from /proc/1/environ
2017-11-27 20:42:14,302 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-27 20:42:14,302 - util.py[DEBUG]: Read 1266 bytes from /proc/self/status
2017-11-27 20:42:14,303 - util.py[DEBUG]: resize_devices took 0.007 seconds
2017-11-27 20:42:14,303 - cc_growpart.py[DEBUG]: '/' SKIPPED: stat of 'overlayroot' failed: [Errno 2] No such file or directory: 'overlayroot'
2017-11-27 20:42:14,303 - handlers.py[DEBUG]: finish: init-network/config-growpart: SUCCESS: config-growpart ran successfully
2017-11-27 20:42:14,304 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="17214220472720460551511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,311 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,311 - 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-11-27 20:42:14,311 - handlers.py[DEBUG]: start: init-network/config-resizefs: running config-resizefs with frequency always
2017-11-27 20:42:14,312 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="82797653094929637141511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,317 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,317 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7f22a50a4668>)
2017-11-27 20:42:14,318 - schema.py[DEBUG]: Ignoring schema validation. python-jsonschema is not present
2017-11-27 20:42:14,318 - util.py[DEBUG]: Reading from /proc/1163/mountinfo (quiet=False)
2017-11-27 20:42:14,318 - util.py[DEBUG]: Read 2869 bytes from /proc/1163/mountinfo
2017-11-27 20:42:14,318 - cc_resizefs.py[DEBUG]: resize_info: dev=overlayroot mnt_point=/ path=/
2017-11-27 20:42:14,318 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,321 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,322 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,324 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-27 20:42:14,324 - util.py[DEBUG]: Read 421 bytes from /proc/1/environ
2017-11-27 20:42:14,324 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-27 20:42:14,325 - util.py[DEBUG]: Read 1266 bytes from /proc/self/status
2017-11-27 20:42:14,325 - cc_resizefs.py[DEBUG]: Not attempting to resize devpath 'overlayroot': dev=overlayroot mnt_point=/ path=/
2017-11-27 20:42:14,325 - handlers.py[DEBUG]: finish: init-network/config-resizefs: SUCCESS: config-resizefs ran successfully
2017-11-27 20:42:14,325 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="176591499375617502841511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,332 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,332 - 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-11-27 20:42:14,332 - handlers.py[DEBUG]: start: init-network/config-disk_setup: running config-disk_setup with frequency once-per-instance
2017-11-27 20:42:14,333 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="149249661354955309561511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,338 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,339 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_disk_setup - wb: [644] 25 bytes
2017-11-27 20:42:14,339 - helpers.py[DEBUG]: Running config-disk_setup using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_disk_setup'>)
2017-11-27 20:42:14,340 - handlers.py[DEBUG]: finish: init-network/config-disk_setup: SUCCESS: config-disk_setup ran successfully
2017-11-27 20:42:14,340 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="86102427312128744371511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,346 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,346 - 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-11-27 20:42:14,346 - handlers.py[DEBUG]: start: init-network/config-mounts: running config-mounts with frequency once-per-instance
2017-11-27 20:42:14,347 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="131139625678478054541511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,353 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,354 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_mounts - wb: [644] 24 bytes
2017-11-27 20:42:14,354 - helpers.py[DEBUG]: Running config-mounts using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_mounts'>)
2017-11-27 20:42:14,354 - cc_mounts.py[DEBUG]: mounts configuration is []
2017-11-27 20:42:14,355 - cc_mounts.py[DEBUG]: Attempting to determine the real name of ephemeral0
2017-11-27 20:42:14,355 - cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount ephemeral0
2017-11-27 20:42:14,355 - cc_mounts.py[DEBUG]: Attempting to determine the real name of swap
2017-11-27 20:42:14,355 - cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount swap
2017-11-27 20:42:14,355 - cc_mounts.py[DEBUG]: no need to setup swap
2017-11-27 20:42:14,355 - cc_mounts.py[DEBUG]: No modifications to fstab needed.
2017-11-27 20:42:14,355 - handlers.py[DEBUG]: finish: init-network/config-mounts: SUCCESS: config-mounts ran successfully
2017-11-27 20:42:14,355 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="173442277927427920611511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,362 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,362 - 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-11-27 20:42:14,362 - handlers.py[DEBUG]: start: init-network/config-set_hostname: running config-set_hostname with frequency once-per-instance
2017-11-27 20:42:14,362 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="146913061149867656481511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,372 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,372 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_set_hostname - wb: [644] 24 bytes
2017-11-27 20:42:14,373 - helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_set_hostname'>)
2017-11-27 20:42:14,373 - cc_set_hostname.py[DEBUG]: Setting the hostname to brief-stork.maas (brief-stork)
2017-11-27 20:42:14,373 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-11-27 20:42:14,373 - util.py[DEBUG]: Read 7 bytes from /etc/hostname
2017-11-27 20:42:14,374 - util.py[DEBUG]: Writing to /etc/hostname - wb: [644] 12 bytes
2017-11-27 20:42:14,374 - __init__.py[DEBUG]: Non-persistently setting the system hostname to brief-stork
2017-11-27 20:42:14,374 - util.py[DEBUG]: Running command ['hostname', 'brief-stork'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,382 - handlers.py[DEBUG]: finish: init-network/config-set_hostname: SUCCESS: config-set_hostname ran successfully
2017-11-27 20:42:14,383 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="24731755063974315201511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,392 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,392 - 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-11-27 20:42:14,392 - handlers.py[DEBUG]: start: init-network/config-update_hostname: running config-update_hostname with frequency always
2017-11-27 20:42:14,393 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="62059427268846622621511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,399 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,399 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7f22a50a21d0>)
2017-11-27 20:42:14,399 - cc_update_hostname.py[DEBUG]: Updating hostname to brief-stork.maas (brief-stork)
2017-11-27 20:42:14,399 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-11-27 20:42:14,399 - util.py[DEBUG]: Read 12 bytes from /etc/hostname
2017-11-27 20:42:14,399 - __init__.py[DEBUG]: Attempting to update hostname to brief-stork in 1 files
2017-11-27 20:42:14,399 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2017-11-27 20:42:14,399 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [644] 12 bytes
2017-11-27 20:42:14,400 - handlers.py[DEBUG]: finish: init-network/config-update_hostname: SUCCESS: config-update_hostname ran successfully
2017-11-27 20:42:14,401 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="122949263377364726291511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,407 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,407 - 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-11-27 20:42:14,407 - handlers.py[DEBUG]: start: init-network/config-update_etc_hosts: running config-update_etc_hosts with frequency always
2017-11-27 20:42:14,408 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="161778395363025226721511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,413 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,413 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7f22a50a2240>)
2017-11-27 20:42:14,414 - util.py[DEBUG]: Reading from /etc/cloud/templates/hosts.debian.tmpl (quiet=False)
2017-11-27 20:42:14,419 - util.py[DEBUG]: Read 901 bytes from /etc/cloud/templates/hosts.debian.tmpl
2017-11-27 20:42:14,419 - templater.py[DEBUG]: Rendering content of '/etc/cloud/templates/hosts.debian.tmpl' using renderer jinja
2017-11-27 20:42:14,423 - util.py[DEBUG]: Writing to /etc/hosts - wb: [644] 610 bytes
2017-11-27 20:42:14,424 - handlers.py[DEBUG]: finish: init-network/config-update_etc_hosts: SUCCESS: config-update_etc_hosts ran successfully
2017-11-27 20:42:14,424 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="74856097130143600851511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,431 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,431 - 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-11-27 20:42:14,431 - handlers.py[DEBUG]: start: init-network/config-ca-certs: running config-ca-certs with frequency once-per-instance
2017-11-27 20:42:14,432 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="24365177489942539021511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,438 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,438 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_ca_certs - wb: [644] 25 bytes
2017-11-27 20:42:14,439 - helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_ca_certs'>)
2017-11-27 20:42:14,439 - cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
2017-11-27 20:42:14,439 - handlers.py[DEBUG]: finish: init-network/config-ca-certs: SUCCESS: config-ca-certs ran successfully
2017-11-27 20:42:14,439 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="176882356955036743821511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,445 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,446 - 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-11-27 20:42:14,446 - handlers.py[DEBUG]: start: init-network/config-rsyslog: running config-rsyslog with frequency once-per-instance
2017-11-27 20:42:14,446 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="173795873159465086931511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,452 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,453 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_rsyslog - wb: [644] 24 bytes
2017-11-27 20:42:14,453 - helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_rsyslog'>)
2017-11-27 20:42:14,454 - util.py[DEBUG]: Writing to /etc/rsyslog.d/20-cloud-config.conf - wb: [644] 58 bytes
2017-11-27 20:42:14,456 - util.py[DEBUG]: Running command ['systemctl', 'reload-or-try-restart', 'rsyslog'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,464 - cc_rsyslog.py[DEBUG]: rsyslog configured ['/etc/rsyslog.d/20-cloud-config.conf'] files
2017-11-27 20:42:14,464 - handlers.py[DEBUG]: finish: init-network/config-rsyslog: SUCCESS: config-rsyslog ran successfully
2017-11-27 20:42:14,465 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="176417010391544765511511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,471 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,471 - 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-11-27 20:42:14,472 - handlers.py[DEBUG]: start: init-network/config-users-groups: running config-users-groups with frequency once-per-instance
2017-11-27 20:42:14,472 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="182612990742635587971511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,478 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,478 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_users_groups - wb: [644] 25 bytes
2017-11-27 20:42:14,479 - helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_users_groups'>)
2017-11-27 20:42:14,479 - util.py[DEBUG]: Reading from /etc/os-release (quiet=True)
2017-11-27 20:42:14,480 - util.py[DEBUG]: Read 298 bytes from /etc/os-release
2017-11-27 20:42:14,480 - util.py[DEBUG]: Reading from /etc/system-image/channel.ini (quiet=True)
2017-11-27 20:42:14,480 - util.py[DEBUG]: Read 0 bytes from /etc/system-image/channel.ini
2017-11-27 20:42:14,481 - __init__.py[DEBUG]: Adding user ubuntu
2017-11-27 20:42:14,481 - util.py[DEBUG]: Running hidden command to protect sensitive input/output logstring: ['useradd', 'ubuntu', '--comment', 'Ubuntu', '--groups', 'adm,audio,cdrom,dialout,dip,floppy,lxd,netdev,plugdev,sudo,video', '--shell', '/bin/bash', '-m']
2017-11-27 20:42:14,550 - util.py[DEBUG]: Running command ['passwd', '-l', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:14,568 - util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
2017-11-27 20:42:14,568 - util.py[DEBUG]: Read 755 bytes from /etc/sudoers
2017-11-27 20:42:14,569 - util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - wb: [440] 122 bytes
2017-11-27 20:42:14,571 - handlers.py[DEBUG]: finish: init-network/config-users-groups: SUCCESS: config-users-groups ran successfully
2017-11-27 20:42:14,571 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="78760626504031055361511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,578 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,578 - 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-11-27 20:42:14,579 - handlers.py[DEBUG]: start: init-network/config-ssh: running config-ssh with frequency once-per-instance
2017-11-27 20:42:14,579 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="16150186158364504021511815334", oauth_timestamp="1511815334", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:14,588 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:14,588 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_ssh - wb: [644] 25 bytes
2017-11-27 20:42:14,589 - helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_ssh'>)
2017-11-27 20:42:14,591 - 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-11-27 20:42:14,784 - 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-11-27 20:42:15,015 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ecdsa', '-N', '', '-f', '/etc/ssh/ssh_host_ecdsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:15,020 - 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-11-27 20:42:15,028 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh to 1000:1000
2017-11-27 20:42:15,029 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-11-27 20:42:15,029 - util.py[DEBUG]: Read 2540 bytes from /etc/ssh/sshd_config
2017-11-27 20:42:15,031 - util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [600] 1218 bytes
2017-11-27 20:42:15,031 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1000:1000
2017-11-27 20:42:15,033 - util.py[DEBUG]: Changing the ownership of /root/.ssh to 0:0
2017-11-27 20:42:15,034 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-11-27 20:42:15,034 - util.py[DEBUG]: Read 2540 bytes from /etc/ssh/sshd_config
2017-11-27 20:42:15,035 - util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [600] 1683 bytes
2017-11-27 20:42:15,036 - util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
2017-11-27 20:42:15,036 - handlers.py[DEBUG]: finish: init-network/config-ssh: SUCCESS: config-ssh ran successfully
2017-11-27 20:42:15,037 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="158587520056314338801511815335", oauth_timestamp="1511815335", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:15,044 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:15,044 - main.py[DEBUG]: Ran 15 modules with 0 failures
2017-11-27 20:42:15,045 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-27 20:42:15,045 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-11-27 20:42:15,045 - util.py[DEBUG]: cloud-init mode 'init' took 2.050 seconds (2.05)
2017-11-27 20:42:15,045 - handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
2017-11-27 20:42:15,046 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'method': 'POST', 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="58551591846229864511511815335", oauth_timestamp="1511815335", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True} configuration
2017-11-27 20:42:15,120 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:16,520 - util.py[DEBUG]: Cloud-init v. 17.1 running 'modules:config' at Mon, 27 Nov 2017 20:42:16 +0000. Up 55.15 seconds.
2017-11-27 20:42:17,317 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-27 20:42:17,318 - 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-11-27 20:42:17,319 - handlers.py[DEBUG]: start: modules-config/config-emit_upstart: running config-emit_upstart with frequency always
2017-11-27 20:42:17,345 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="85230393845211177051511815337", oauth_timestamp="1511815337", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:17,358 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:17,358 - helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7f576bf441d0>)
2017-11-27 20:42:17,358 - cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
2017-11-27 20:42:17,358 - cc_emit_upstart.py[DEBUG]: not upstart system, 'emit_upstart' disabled
2017-11-27 20:42:17,359 - handlers.py[DEBUG]: finish: modules-config/config-emit_upstart: SUCCESS: config-emit_upstart ran successfully
2017-11-27 20:42:17,359 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="34397942652455138821511815337", oauth_timestamp="1511815337", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:17,365 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:17,366 - 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-11-27 20:42:17,366 - handlers.py[DEBUG]: start: modules-config/config-snap_config: running config-snap_config with frequency once-per-instance
2017-11-27 20:42:17,366 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="22111753987404044011511815337", oauth_timestamp="1511815337", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:17,371 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:17,372 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_snap_config - wb: [644] 25 bytes
2017-11-27 20:42:17,372 - helpers.py[DEBUG]: Running config-snap_config using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_snap_config'>)
2017-11-27 20:42:17,372 - cc_snap_config.py[DEBUG]: No snappy config provided, skipping
2017-11-27 20:42:17,372 - handlers.py[DEBUG]: finish: modules-config/config-snap_config: SUCCESS: config-snap_config ran successfully
2017-11-27 20:42:17,373 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="181476285024319998641511815337", oauth_timestamp="1511815337", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:17,379 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:17,379 - 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-11-27 20:42:17,379 - handlers.py[DEBUG]: start: modules-config/config-ssh-import-id: running config-ssh-import-id with frequency once-per-instance
2017-11-27 20:42:17,379 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="42247892777299894131511815337", oauth_timestamp="1511815337", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:17,385 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:17,385 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_ssh_import_id - wb: [644] 25 bytes
2017-11-27 20:42:17,386 - helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_ssh_import_id'>)
2017-11-27 20:42:17,386 - handlers.py[DEBUG]: finish: modules-config/config-ssh-import-id: SUCCESS: config-ssh-import-id ran successfully
2017-11-27 20:42:17,387 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="26874678566173688201511815337", oauth_timestamp="1511815337", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:17,394 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:17,394 - 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-11-27 20:42:17,394 - handlers.py[DEBUG]: start: modules-config/config-locale: running config-locale with frequency once-per-instance
2017-11-27 20:42:17,395 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="132218817734487134431511815337", oauth_timestamp="1511815337", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:17,400 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:17,400 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_locale - wb: [644] 25 bytes
2017-11-27 20:42:17,401 - helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_locale'>)
2017-11-27 20:42:17,401 - util.py[DEBUG]: Reading from /etc/default/locale (quiet=False)
2017-11-27 20:42:17,401 - util.py[DEBUG]: Read 35 bytes from /etc/default/locale
2017-11-27 20:42:17,401 - cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
2017-11-27 20:42:17,401 - util.py[DEBUG]: Reading from /etc/default/locale (quiet=False)
2017-11-27 20:42:17,401 - util.py[DEBUG]: Read 35 bytes from /etc/default/locale
2017-11-27 20:42:17,402 - debian.py[DEBUG]: Generating locales for en_US.UTF-8
2017-11-27 20:42:17,402 - util.py[DEBUG]: Running command ['locale-gen', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
2017-11-27 20:42:18,594 - debian.py[DEBUG]: Updating /etc/default/locale with locale setting LANG=en_US.UTF-8
2017-11-27 20:42:18,595 - util.py[DEBUG]: Running command ['update-locale', '--locale-file=/etc/default/locale', 'LANG=en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
2017-11-27 20:42:18,652 - handlers.py[DEBUG]: finish: modules-config/config-locale: SUCCESS: config-locale ran successfully
2017-11-27 20:42:18,652 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="25117867055760804461511815338", oauth_timestamp="1511815338", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:18,661 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:18,661 - 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-11-27 20:42:18,661 - handlers.py[DEBUG]: start: modules-config/config-set-passwords: running config-set-passwords with frequency once-per-instance
2017-11-27 20:42:18,662 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="34241848978697618211511815338", oauth_timestamp="1511815338", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:18,668 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:18,668 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_set_passwords - wb: [644] 25 bytes
2017-11-27 20:42:18,669 - helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_set_passwords'>)
2017-11-27 20:42:18,669 - handlers.py[DEBUG]: finish: modules-config/config-set-passwords: SUCCESS: config-set-passwords ran successfully
2017-11-27 20:42:18,670 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="167660987835513260481511815338", oauth_timestamp="1511815338", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:18,693 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:18,693 - 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-11-27 20:42:18,693 - handlers.py[DEBUG]: start: modules-config/config-grub-dpkg: running config-grub-dpkg with frequency once-per-instance
2017-11-27 20:42:18,694 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="161430791801729761681511815338", oauth_timestamp="1511815338", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:18,700 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:18,700 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_grub_dpkg - wb: [644] 25 bytes
2017-11-27 20:42:18,701 - helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_grub_dpkg'>)
2017-11-27 20:42:18,701 - cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/sda','false'
2017-11-27 20:42:18,701 - util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:19,135 - handlers.py[DEBUG]: finish: modules-config/config-grub-dpkg: SUCCESS: config-grub-dpkg ran successfully
2017-11-27 20:42:19,136 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="147400837390445056491511815339", oauth_timestamp="1511815339", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:19,143 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:19,143 - 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-11-27 20:42:19,144 - handlers.py[DEBUG]: start: modules-config/config-apt-pipelining: running config-apt-pipelining with frequency once-per-instance
2017-11-27 20:42:19,144 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="76544650895644835131511815339", oauth_timestamp="1511815339", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:19,149 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:19,149 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_apt_pipelining - wb: [644] 25 bytes
2017-11-27 20:42:19,150 - helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_apt_pipelining'>)
2017-11-27 20:42:19,151 - util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [644] 80 bytes
2017-11-27 20:42:19,152 - cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
2017-11-27 20:42:19,152 - handlers.py[DEBUG]: finish: modules-config/config-apt-pipelining: SUCCESS: config-apt-pipelining ran successfully
2017-11-27 20:42:19,153 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="95137917194871465701511815339", oauth_timestamp="1511815339", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:19,159 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:19,159 - 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-11-27 20:42:19,159 - handlers.py[DEBUG]: start: modules-config/config-apt-configure: running config-apt-configure with frequency once-per-instance
2017-11-27 20:42:19,159 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="31917243219465139661511815339", oauth_timestamp="1511815339", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:19,165 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:19,165 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_apt_configure - wb: [644] 25 bytes
2017-11-27 20:42:19,165 - helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_apt_configure'>)
2017-11-27 20:42:19,166 - cc_apt_configure.py[DEBUG]: apt config: convert V2 to V3 format for keys 'apt_proxy'
2017-11-27 20:42:19,166 - cc_apt_configure.py[DEBUG]: apt config: V1/2 and V3 format specified, preferring V3
2017-11-27 20:42:19,166 - cc_apt_configure.py[DEBUG]: debconf_selections was not set in config
2017-11-27 20:42:19,166 - cc_apt_configure.py[DEBUG]: handling apt config: {'preserve_sources_list': False, 'proxy': 'http://10.10.0.113:8000/', 'security': [{'arches': ['default'], 'uri': 'http://archive.ubuntu.com/ubuntu'}], 'sources': {'curtin-daily_3': {'source': 'ppa:curtin-dev/daily', 'key': '-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFazYtEBEADXrW53tDOvwcnHwchLapTKK89+wBWR2qQKXx5Mymtjkrb688FsciXcCsvC\nlnNGJ9bEhrJTucyb7WF0KcDVQcvOd0C4HOSEAc0DANBu1Mdp/tmCWuiW1TbbhomyHAcHNdbu\nSZeMDh5xi9M3DYPVq72PwYwjrE4lotVxHeX5nYEH304U+5nJtBNpVon91k3ItymQ6Jii+9gV\noQ7ujiH1/Gw4/J/1/5zQ3C1mOjq68vLunz5iw1Kn7TMVyID6qwq2UFEgudpseLfFZcb/p7Kg\nI0m3S/OViwzSc44m63ggTPMmbeHW51xA1rpUChSU+cm0cJ4tNtAcYHRYRltWAo/3J1OzB6Ut\n5P7vIC5r+QcCyyMbku9NjYawdWX4DDKqW3is3qJ/7EeOKPL4N8wuKwuWUC7s2wqsIZL8Emsv\nR+ZOnTJ3bHZFvsLgp/OKqmhxMGYXiXOWDOEJ+vwboPxrvhD90JZl8weNGPnpla+EkxRDBSpE\nb31Vgt5XAIoxE7XxwfuXS3MGMA7fSqkGPGHfSLYQFFk+CAIeTUV+ypKW94hIxXKgqRxa7dxz\nYmqs+wgIGaWJCnx7z1Kpd3HD9iTAYjyWyhlQ/Tjt43kwUBdALhTL0vYUTGQyTgKttAriVf5b\nqHb6Hj5PS5YZQ/+YoCUI2OTrAWWNyH9rIEZGsFc30oJFPHj3fQARAQABtCNMYXVuY2hwYWQg\nUFBBIGZvciBjdXJ0aW4gZGV2ZWxvcGVyc4kCOAQTAQIAIgUCVrNi0QIbAwYLCQgHAwIGFQgC\nCQoLBBYCAwECHgECF4AACgkQVf58jAFlAT4TGg//SV7vWmkJqr5TSlT9JqCBfmtFjgudxTGG\n8XM2zwnta+m/3YVOMo0ZjyGL4fUKjCmNeh6eYihwpRtfdawziaEOydDxNfdjwscV4Qcy7FjH\nX+DQnNzQyzK+WgWRJwNWloCwskg2tF+EDRajalTRjHJAn+5zAilXVn71T/hhOCxkF0PBiH9s\n/e7pW/KcgBEC1MYVFs0fLST8SYhsIxttVRWuRkJDrtEY1zeVhkvk+PN6UuCY6/gyRSQ1rhhB\nF3ePqibaCmLiUjnJMEm1OJOkuD33IMNPKQi99TZhr8y3AGCcrmAQtJsYLvVDPcsOsjGQHXP4\n2qQXK+jE/AAUycCQ6tgrAqCcUNQiClP8xUPkZOiDNvVMiPvIj/s79ShkoRaWLMb7n9jyDOhs\n3L7dtmKQwHWq9qJ56fzx1L0/jxSanzm+ZJ/Q7t6E/GFxY1RsAk7xtI1CSzSmrGKmtlbWlOyq\nqQb6zhULIJpaXvh/GaYyo0xI3rA+QvPDt/fgUJEBiSidwabWQ8JU9iI5HXQxbVq1gSdy/z31\nfue5JuZSqjnjCjgho/UrXa4i1RPtqsY3FoTk7HmoC1z2cJc8HQI8JnEX/4qJXvPMRM2JsMD9\nDqvgsUJG5M9Qchy8cymYY+xeiBVYzJI+WHCq6LHqnVxYZ+RM858lSsD6wetN44vguIjL3qJJ\n+wU=\n=Dmkm\n-----END PGP PUBLIC KEY BLOCK-----'}}, 'primary': [{'arches': ['default'], 'uri': 'http://archive.ubuntu.com/ubuntu'}]}
2017-11-27 20:42:19,166 - util.py[DEBUG]: Running command ['lsb_release', '--all'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:19,263 - util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:19,265 - cc_apt_configure.py[DEBUG]: got primary mirror: http://archive.ubuntu.com/ubuntu
2017-11-27 20:42:19,266 - cc_apt_configure.py[DEBUG]: got security mirror: http://archive.ubuntu.com/ubuntu
2017-11-27 20:42:19,266 - cc_apt_configure.py[DEBUG]: Apt Mirror info: {'PRIMARY': 'http://archive.ubuntu.com/ubuntu', 'SECURITY': 'http://archive.ubuntu.com/ubuntu', 'MIRROR': 'http://archive.ubuntu.com/ubuntu'}
2017-11-27 20:42:19,266 - cc_apt_configure.py[INFO]: No custom template provided, fall back to builtin
2017-11-27 20:42:19,267 - util.py[DEBUG]: Reading from /etc/cloud/templates/sources.list.ubuntu.tmpl (quiet=False)
2017-11-27 20:42:19,271 - util.py[DEBUG]: Read 2841 bytes from /etc/cloud/templates/sources.list.ubuntu.tmpl
2017-11-27 20:42:19,282 - util.py[DEBUG]: Writing to /etc/apt/sources.list - wb: [644] 3119 bytes
2017-11-27 20:42:19,283 - util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:19,287 - cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_InRelease to /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-security_InRelease
2017-11-27 20:42:19,291 - cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_main_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-security_main_binary-amd64_Packages
2017-11-27 20:42:19,357 - cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_main_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-security_main_i18n_Translation-en
2017-11-27 20:42:19,394 - cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_restricted_binary-amd64_Packages to /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-security_restricted_binary-amd64_Packages
2017-11-27 20:42:19,396 - cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_restricted_i18n_Translation-en to /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-security_restricted_i18n_Translation-en
2017-11-27 20:42:19,396 - cc_apt_configure.py[DEBUG]: write apt proxy info to /etc/apt/apt.conf.d/90cloud-init-aptproxy
2017-11-27 20:42:19,396 - util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-aptproxy - wb: [644] 49 bytes
2017-11-27 20:42:19,397 - cc_apt_configure.py[DEBUG]: adding source/key '{'source': 'ppa:curtin-dev/daily', 'key': '-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFazYtEBEADXrW53tDOvwcnHwchLapTKK89+wBWR2qQKXx5Mymtjkrb688FsciXcCsvC\nlnNGJ9bEhrJTucyb7WF0KcDVQcvOd0C4HOSEAc0DANBu1Mdp/tmCWuiW1TbbhomyHAcHNdbu\nSZeMDh5xi9M3DYPVq72PwYwjrE4lotVxHeX5nYEH304U+5nJtBNpVon91k3ItymQ6Jii+9gV\noQ7ujiH1/Gw4/J/1/5zQ3C1mOjq68vLunz5iw1Kn7TMVyID6qwq2UFEgudpseLfFZcb/p7Kg\nI0m3S/OViwzSc44m63ggTPMmbeHW51xA1rpUChSU+cm0cJ4tNtAcYHRYRltWAo/3J1OzB6Ut\n5P7vIC5r+QcCyyMbku9NjYawdWX4DDKqW3is3qJ/7EeOKPL4N8wuKwuWUC7s2wqsIZL8Emsv\nR+ZOnTJ3bHZFvsLgp/OKqmhxMGYXiXOWDOEJ+vwboPxrvhD90JZl8weNGPnpla+EkxRDBSpE\nb31Vgt5XAIoxE7XxwfuXS3MGMA7fSqkGPGHfSLYQFFk+CAIeTUV+ypKW94hIxXKgqRxa7dxz\nYmqs+wgIGaWJCnx7z1Kpd3HD9iTAYjyWyhlQ/Tjt43kwUBdALhTL0vYUTGQyTgKttAriVf5b\nqHb6Hj5PS5YZQ/+YoCUI2OTrAWWNyH9rIEZGsFc30oJFPHj3fQARAQABtCNMYXVuY2hwYWQg\nUFBBIGZvciBjdXJ0aW4gZGV2ZWxvcGVyc4kCOAQTAQIAIgUCVrNi0QIbAwYLCQgHAwIGFQgC\nCQoLBBYCAwECHgECF4AACgkQVf58jAFlAT4TGg//SV7vWmkJqr5TSlT9JqCBfmtFjgudxTGG\n8XM2zwnta+m/3YVOMo0ZjyGL4fUKjCmNeh6eYihwpRtfdawziaEOydDxNfdjwscV4Qcy7FjH\nX+DQnNzQyzK+WgWRJwNWloCwskg2tF+EDRajalTRjHJAn+5zAilXVn71T/hhOCxkF0PBiH9s\n/e7pW/KcgBEC1MYVFs0fLST8SYhsIxttVRWuRkJDrtEY1zeVhkvk+PN6UuCY6/gyRSQ1rhhB\nF3ePqibaCmLiUjnJMEm1OJOkuD33IMNPKQi99TZhr8y3AGCcrmAQtJsYLvVDPcsOsjGQHXP4\n2qQXK+jE/AAUycCQ6tgrAqCcUNQiClP8xUPkZOiDNvVMiPvIj/s79ShkoRaWLMb7n9jyDOhs\n3L7dtmKQwHWq9qJ56fzx1L0/jxSanzm+ZJ/Q7t6E/GFxY1RsAk7xtI1CSzSmrGKmtlbWlOyq\nqQb6zhULIJpaXvh/GaYyo0xI3rA+QvPDt/fgUJEBiSidwabWQ8JU9iI5HXQxbVq1gSdy/z31\nfue5JuZSqjnjCjgho/UrXa4i1RPtqsY3FoTk7HmoC1z2cJc8HQI8JnEX/4qJXvPMRM2JsMD9\nDqvgsUJG5M9Qchy8cymYY+xeiBVYzJI+WHCq6LHqnVxYZ+RM858lSsD6wetN44vguIjL3qJJ\n+wU=\n=Dmkm\n-----END PGP PUBLIC KEY BLOCK-----'}'
2017-11-27 20:42:19,397 - cc_apt_configure.py[DEBUG]: Adding key:
'-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: SKS 1.1.6
Comment: Hostname: keyserver.ubuntu.com

mQINBFazYtEBEADXrW53tDOvwcnHwchLapTKK89+wBWR2qQKXx5Mymtjkrb688FsciXcCsvC
lnNGJ9bEhrJTucyb7WF0KcDVQcvOd0C4HOSEAc0DANBu1Mdp/tmCWuiW1TbbhomyHAcHNdbu
SZeMDh5xi9M3DYPVq72PwYwjrE4lotVxHeX5nYEH304U+5nJtBNpVon91k3ItymQ6Jii+9gV
oQ7ujiH1/Gw4/J/1/5zQ3C1mOjq68vLunz5iw1Kn7TMVyID6qwq2UFEgudpseLfFZcb/p7Kg
I0m3S/OViwzSc44m63ggTPMmbeHW51xA1rpUChSU+cm0cJ4tNtAcYHRYRltWAo/3J1OzB6Ut
5P7vIC5r+QcCyyMbku9NjYawdWX4DDKqW3is3qJ/7EeOKPL4N8wuKwuWUC7s2wqsIZL8Emsv
R+ZOnTJ3bHZFvsLgp/OKqmhxMGYXiXOWDOEJ+vwboPxrvhD90JZl8weNGPnpla+EkxRDBSpE
b31Vgt5XAIoxE7XxwfuXS3MGMA7fSqkGPGHfSLYQFFk+CAIeTUV+ypKW94hIxXKgqRxa7dxz
Ymqs+wgIGaWJCnx7z1Kpd3HD9iTAYjyWyhlQ/Tjt43kwUBdALhTL0vYUTGQyTgKttAriVf5b
qHb6Hj5PS5YZQ/+YoCUI2OTrAWWNyH9rIEZGsFc30oJFPHj3fQARAQABtCNMYXVuY2hwYWQg
UFBBIGZvciBjdXJ0aW4gZGV2ZWxvcGVyc4kCOAQTAQIAIgUCVrNi0QIbAwYLCQgHAwIGFQgC
CQoLBBYCAwECHgECF4AACgkQVf58jAFlAT4TGg//SV7vWmkJqr5TSlT9JqCBfmtFjgudxTGG
8XM2zwnta+m/3YVOMo0ZjyGL4fUKjCmNeh6eYihwpRtfdawziaEOydDxNfdjwscV4Qcy7FjH
X+DQnNzQyzK+WgWRJwNWloCwskg2tF+EDRajalTRjHJAn+5zAilXVn71T/hhOCxkF0PBiH9s
/e7pW/KcgBEC1MYVFs0fLST8SYhsIxttVRWuRkJDrtEY1zeVhkvk+PN6UuCY6/gyRSQ1rhhB
F3ePqibaCmLiUjnJMEm1OJOkuD33IMNPKQi99TZhr8y3AGCcrmAQtJsYLvVDPcsOsjGQHXP4
2qQXK+jE/AAUycCQ6tgrAqCcUNQiClP8xUPkZOiDNvVMiPvIj/s79ShkoRaWLMb7n9jyDOhs
3L7dtmKQwHWq9qJ56fzx1L0/jxSanzm+ZJ/Q7t6E/GFxY1RsAk7xtI1CSzSmrGKmtlbWlOyq
qQb6zhULIJpaXvh/GaYyo0xI3rA+QvPDt/fgUJEBiSidwabWQ8JU9iI5HXQxbVq1gSdy/z31
fue5JuZSqjnjCjgho/UrXa4i1RPtqsY3FoTk7HmoC1z2cJc8HQI8JnEX/4qJXvPMRM2JsMD9
DqvgsUJG5M9Qchy8cymYY+xeiBVYzJI+WHCq6LHqnVxYZ+RM858lSsD6wetN44vguIjL3qJJ
+wU=
=Dmkm
-----END PGP PUBLIC KEY BLOCK-----'
2017-11-27 20:42:19,398 - util.py[DEBUG]: Running command ['apt-key', 'add', '-'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:19,773 - util.py[DEBUG]: Running command ['add-apt-repository', 'ppa:curtin-dev/daily'] with allowed return codes [0] (shell=False, capture=True)
2017-11-27 20:42:21,993 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/update_sources - wb: [644] 24 bytes
2017-11-27 20:42:21,994 - helpers.py[DEBUG]: Running update-sources using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/update_sources'>)
2017-11-27 20:42:21,996 - util.py[DEBUG]: Running command ['eatmydata', 'apt-get', '--option=Dpkg::Options::=--force-confold', '--option=Dpkg::options::=--force-unsafe-io', '--assume-yes', '--quiet', 'update'] with allowed return codes [0] (shell=False, capture=False)
2017-11-27 20:42:22,831 - util.py[DEBUG]: apt-update [eatmydata apt-get --option=Dpkg::Options::=--force-confold --option=Dpkg::options::=--force-unsafe-io --assume-yes --quiet update] took 0.835 seconds
2017-11-27 20:42:22,832 - handlers.py[DEBUG]: finish: modules-config/config-apt-configure: SUCCESS: config-apt-configure ran successfully
2017-11-27 20:42:22,832 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="6160325525380409301511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,840 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,840 - 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-11-27 20:42:22,841 - handlers.py[DEBUG]: start: modules-config/config-ntp: running config-ntp with frequency once-per-instance
2017-11-27 20:42:22,841 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="109680195251164989221511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,847 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,847 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_ntp - wb: [644] 25 bytes
2017-11-27 20:42:22,848 - helpers.py[DEBUG]: Running config-ntp using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_ntp'>)
2017-11-27 20:42:22,848 - cc_ntp.py[DEBUG]: Skipping module named ntp, not present or disabled by cfg
2017-11-27 20:42:22,848 - handlers.py[DEBUG]: finish: modules-config/config-ntp: SUCCESS: config-ntp ran successfully
2017-11-27 20:42:22,849 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="11490582521226405411511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,856 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,856 - 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-11-27 20:42:22,857 - handlers.py[DEBUG]: start: modules-config/config-timezone: running config-timezone with frequency once-per-instance
2017-11-27 20:42:22,857 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="3325701532878446541511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,864 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,864 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_timezone - wb: [644] 24 bytes
2017-11-27 20:42:22,865 - helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_timezone'>)
2017-11-27 20:42:22,865 - cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
2017-11-27 20:42:22,865 - handlers.py[DEBUG]: finish: modules-config/config-timezone: SUCCESS: config-timezone ran successfully
2017-11-27 20:42:22,865 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="88828640622002793591511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,871 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,871 - 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-11-27 20:42:22,872 - handlers.py[DEBUG]: start: modules-config/config-disable-ec2-metadata: running config-disable-ec2-metadata with frequency always
2017-11-27 20:42:22,872 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="110865071483336704471511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,878 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,878 - helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7f576b751da0>)
2017-11-27 20:42:22,878 - cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
2017-11-27 20:42:22,878 - handlers.py[DEBUG]: finish: modules-config/config-disable-ec2-metadata: SUCCESS: config-disable-ec2-metadata ran successfully
2017-11-27 20:42:22,878 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="181708355795950933701511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,885 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,885 - 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-11-27 20:42:22,885 - handlers.py[DEBUG]: start: modules-config/config-runcmd: running config-runcmd with frequency once-per-instance
2017-11-27 20:42:22,886 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="158314848672443843371511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,891 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,891 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_runcmd - wb: [644] 25 bytes
2017-11-27 20:42:22,892 - helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_runcmd'>)
2017-11-27 20:42:22,892 - cc_runcmd.py[DEBUG]: Skipping module named runcmd, no 'runcmd' key in configuration
2017-11-27 20:42:22,892 - handlers.py[DEBUG]: finish: modules-config/config-runcmd: SUCCESS: config-runcmd ran successfully
2017-11-27 20:42:22,892 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="83994081391666646421511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,899 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,900 - 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-11-27 20:42:22,900 - handlers.py[DEBUG]: start: modules-config/config-byobu: running config-byobu with frequency once-per-instance
2017-11-27 20:42:22,900 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="53439809728327160291511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,907 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,907 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_byobu - wb: [644] 25 bytes
2017-11-27 20:42:22,908 - helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_byobu'>)
2017-11-27 20:42:22,908 - cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
2017-11-27 20:42:22,908 - handlers.py[DEBUG]: finish: modules-config/config-byobu: SUCCESS: config-byobu ran successfully
2017-11-27 20:42:22,908 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="116042334083953990681511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:22,915 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:22,915 - main.py[DEBUG]: Ran 13 modules with 0 failures
2017-11-27 20:42:22,916 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-27 20:42:22,916 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-11-27 20:42:22,916 - util.py[DEBUG]: cloud-init mode 'modules' took 6.606 seconds (6.61)
2017-11-27 20:42:22,916 - handlers.py[DEBUG]: finish: modules-config: SUCCESS: running modules for config
2017-11-27 20:42:22,917 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'headers': {'Authorization': 'OAuth oauth_nonce="136467760367099407371511815342", oauth_timestamp="1511815342", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'method': 'POST'} configuration
2017-11-27 20:42:23,006 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,494 - util.py[DEBUG]: Cloud-init v. 17.1 running 'modules:final' at Mon, 27 Nov 2017 20:42:23 +0000. Up 62.22 seconds.
2017-11-27 20:42:23,561 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-27 20:42:23,562 - 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-11-27 20:42:23,571 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="145803531685473931271511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,582 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,583 - handlers.py[DEBUG]: start: modules-final/config-snappy: running config-snappy with frequency once-per-instance
2017-11-27 20:42:23,583 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_snappy - wb: [644] 24 bytes
2017-11-27 20:42:23,584 - helpers.py[DEBUG]: Running config-snappy using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_snappy'>)
2017-11-27 20:42:23,584 - util.py[DEBUG]: Reading from /etc/os-release (quiet=True)
2017-11-27 20:42:23,584 - util.py[DEBUG]: Read 298 bytes from /etc/os-release
2017-11-27 20:42:23,585 - util.py[DEBUG]: Reading from /etc/system-image/channel.ini (quiet=True)
2017-11-27 20:42:23,585 - util.py[DEBUG]: Read 0 bytes from /etc/system-image/channel.ini
2017-11-27 20:42:23,585 - cc_snappy.py[DEBUG]: snappy: 'auto' mode, and system not snappy
2017-11-27 20:42:23,586 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="46680632323903841341511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,592 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,592 - handlers.py[DEBUG]: finish: modules-final/config-snappy: SUCCESS: config-snappy ran successfully
2017-11-27 20:42:23,592 - 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-11-27 20:42:23,593 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="159270913938959734961511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,600 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,600 - handlers.py[DEBUG]: start: modules-final/config-package-update-upgrade-install: running config-package-update-upgrade-install with frequency once-per-instance
2017-11-27 20:42:23,600 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_package_update_upgrade_install - wb: [644] 25 bytes
2017-11-27 20:42:23,601 - helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_package_update_upgrade_install'>)
2017-11-27 20:42:23,601 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="110144076484736529171511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,611 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,611 - handlers.py[DEBUG]: finish: modules-final/config-package-update-upgrade-install: SUCCESS: config-package-update-upgrade-install ran successfully
2017-11-27 20:42:23,611 - 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-11-27 20:42:23,612 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="165632244355730229611511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,618 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,619 - handlers.py[DEBUG]: start: modules-final/config-fan: running config-fan with frequency once-per-instance
2017-11-27 20:42:23,619 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_fan - wb: [644] 25 bytes
2017-11-27 20:42:23,619 - helpers.py[DEBUG]: Running config-fan using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_fan'>)
2017-11-27 20:42:23,620 - cc_fan.py[DEBUG]: fan: no 'fan' config entry. disabling
2017-11-27 20:42:23,620 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="29104096397766673761511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,626 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,626 - handlers.py[DEBUG]: finish: modules-final/config-fan: SUCCESS: config-fan ran successfully
2017-11-27 20:42:23,626 - 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-11-27 20:42:23,627 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="15518781218547476661511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,634 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,634 - handlers.py[DEBUG]: start: modules-final/config-landscape: running config-landscape with frequency once-per-instance
2017-11-27 20:42:23,634 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_landscape - wb: [644] 25 bytes
2017-11-27 20:42:23,635 - helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_landscape'>)
2017-11-27 20:42:23,635 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="80858035880983319641511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,641 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,642 - handlers.py[DEBUG]: finish: modules-final/config-landscape: SUCCESS: config-landscape ran successfully
2017-11-27 20:42:23,642 - 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-11-27 20:42:23,642 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="38426726793172786431511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,648 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,648 - handlers.py[DEBUG]: start: modules-final/config-lxd: running config-lxd with frequency once-per-instance
2017-11-27 20:42:23,649 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_lxd - wb: [644] 25 bytes
2017-11-27 20:42:23,649 - helpers.py[DEBUG]: Running config-lxd using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_lxd'>)
2017-11-27 20:42:23,649 - cc_lxd.py[DEBUG]: Skipping module named lxd, not present or disabled by cfg
2017-11-27 20:42:23,650 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="8380128217773230841511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,656 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,656 - handlers.py[DEBUG]: finish: modules-final/config-lxd: SUCCESS: config-lxd ran successfully
2017-11-27 20:42:23,656 - 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-11-27 20:42:23,657 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="125543300578569743261511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,663 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,663 - handlers.py[DEBUG]: start: modules-final/config-puppet: running config-puppet with frequency once-per-instance
2017-11-27 20:42:23,663 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_puppet - wb: [644] 25 bytes
2017-11-27 20:42:23,664 - helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_puppet'>)
2017-11-27 20:42:23,664 - cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
2017-11-27 20:42:23,665 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="106628552541535157511511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,671 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,671 - handlers.py[DEBUG]: finish: modules-final/config-puppet: SUCCESS: config-puppet ran successfully
2017-11-27 20:42:23,671 - 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-11-27 20:42:23,672 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="67744116213505277451511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,678 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,678 - handlers.py[DEBUG]: start: modules-final/config-chef: running config-chef with frequency once-per-instance
2017-11-27 20:42:23,678 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_chef - wb: [644] 25 bytes
2017-11-27 20:42:23,679 - helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_chef'>)
2017-11-27 20:42:23,679 - cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
2017-11-27 20:42:23,679 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="77407800177335833751511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,685 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,685 - handlers.py[DEBUG]: finish: modules-final/config-chef: SUCCESS: config-chef ran successfully
2017-11-27 20:42:23,685 - 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-11-27 20:42:23,686 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="140324440940978921431511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,693 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,693 - handlers.py[DEBUG]: start: modules-final/config-salt-minion: running config-salt-minion with frequency once-per-instance
2017-11-27 20:42:23,693 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_salt_minion - wb: [644] 25 bytes
2017-11-27 20:42:23,694 - helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_salt_minion'>)
2017-11-27 20:42:23,694 - cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
2017-11-27 20:42:23,694 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="52585225568961957511511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,701 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,701 - handlers.py[DEBUG]: finish: modules-final/config-salt-minion: SUCCESS: config-salt-minion ran successfully
2017-11-27 20:42:23,701 - 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-11-27 20:42:23,702 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="12078542648108781691511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,709 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,709 - handlers.py[DEBUG]: start: modules-final/config-mcollective: running config-mcollective with frequency once-per-instance
2017-11-27 20:42:23,709 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_mcollective - wb: [644] 25 bytes
2017-11-27 20:42:23,710 - helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_mcollective'>)
2017-11-27 20:42:23,710 - cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
2017-11-27 20:42:23,710 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="45358821949840228171511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,717 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,717 - handlers.py[DEBUG]: finish: modules-final/config-mcollective: SUCCESS: config-mcollective ran successfully
2017-11-27 20:42:23,717 - 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-11-27 20:42:23,718 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="113797999397710705601511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,725 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,725 - handlers.py[DEBUG]: start: modules-final/config-rightscale_userdata: running config-rightscale_userdata with frequency once-per-instance
2017-11-27 20:42:23,725 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_rightscale_userdata - wb: [644] 25 bytes
2017-11-27 20:42:23,726 - helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_rightscale_userdata'>)
2017-11-27 20:42:23,726 - cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
2017-11-27 20:42:23,726 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="175697163051918307211511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,732 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,732 - handlers.py[DEBUG]: finish: modules-final/config-rightscale_userdata: SUCCESS: config-rightscale_userdata ran successfully
2017-11-27 20:42:23,732 - 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-11-27 20:42:23,733 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="27596688857572278291511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,738 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,739 - handlers.py[DEBUG]: start: modules-final/config-scripts-vendor: running config-scripts-vendor with frequency once-per-instance
2017-11-27 20:42:23,739 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_scripts_vendor - wb: [644] 24 bytes
2017-11-27 20:42:23,739 - helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_scripts_vendor'>)
2017-11-27 20:42:23,740 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="176269446728062730511511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,746 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,746 - handlers.py[DEBUG]: finish: modules-final/config-scripts-vendor: SUCCESS: config-scripts-vendor ran successfully
2017-11-27 20:42:23,746 - 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-11-27 20:42:23,747 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="21672839848917137081511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,754 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,754 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-once: running config-scripts-per-once with frequency once
2017-11-27 20:42:23,754 - util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [644] 25 bytes
2017-11-27 20:42:23,755 - helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
2017-11-27 20:42:23,755 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="111217560281791217511511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,762 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,762 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-once: SUCCESS: config-scripts-per-once ran successfully
2017-11-27 20:42:23,762 - 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-11-27 20:42:23,762 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="72633466871004924701511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,768 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,769 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-boot: running config-scripts-per-boot with frequency always
2017-11-27 20:42:23,769 - helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f5ee965ae48>)
2017-11-27 20:42:23,769 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="60440081186545790681511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,775 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,775 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-boot: SUCCESS: config-scripts-per-boot ran successfully
2017-11-27 20:42:23,776 - 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-11-27 20:42:23,776 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="109509915192116380011511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,782 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,782 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-instance: running config-scripts-per-instance with frequency once-per-instance
2017-11-27 20:42:23,782 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_scripts_per_instance - wb: [644] 25 bytes
2017-11-27 20:42:23,783 - helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_scripts_per_instance'>)
2017-11-27 20:42:23,783 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="37869927846855382531511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,789 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,789 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-instance: SUCCESS: config-scripts-per-instance ran successfully
2017-11-27 20:42:23,789 - 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-11-27 20:42:23,790 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="18549753540295622501511815343", oauth_timestamp="1511815343", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:23,795 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:23,795 - handlers.py[DEBUG]: start: modules-final/config-scripts-user: running config-scripts-user with frequency once-per-instance
2017-11-27 20:42:23,795 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_scripts_user - wb: [644] 24 bytes
2017-11-27 20:42:23,796 - helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_scripts_user'>)
2017-11-27 20:42:23,796 - util.py[DEBUG]: Running command ['/var/lib/cloud/instance/scripts/user_data.sh'] with allowed return codes [0] (shell=False, capture=False)
2017-11-27 20:42:37,070 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="150339689090979788341511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,078 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,078 - handlers.py[DEBUG]: finish: modules-final/config-scripts-user: SUCCESS: config-scripts-user ran successfully
2017-11-27 20:42:37,078 - 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-11-27 20:42:37,079 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="112392988661771966651511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,085 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,085 - handlers.py[DEBUG]: start: modules-final/config-ssh-authkey-fingerprints: running config-ssh-authkey-fingerprints with frequency once-per-instance
2017-11-27 20:42:37,085 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_ssh_authkey_fingerprints - wb: [644] 24 bytes
2017-11-27 20:42:37,086 - helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_ssh_authkey_fingerprints'>)
2017-11-27 20:42:37,087 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-11-27 20:42:37,087 - util.py[DEBUG]: Read 2540 bytes from /etc/ssh/sshd_config
2017-11-27 20:42:37,088 - util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
2017-11-27 20:42:37,088 - util.py[DEBUG]: Read 1218 bytes from /home/ubuntu/.ssh/authorized_keys
2017-11-27 20:42:37,090 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="141757472746888591851511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,096 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,096 - handlers.py[DEBUG]: finish: modules-final/config-ssh-authkey-fingerprints: SUCCESS: config-ssh-authkey-fingerprints ran successfully
2017-11-27 20:42:37,096 - 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-11-27 20:42:37,097 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="113987685681238867881511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,109 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,109 - handlers.py[DEBUG]: start: modules-final/config-keys-to-console: running config-keys-to-console with frequency once-per-instance
2017-11-27 20:42:37,109 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_keys_to_console - wb: [644] 25 bytes
2017-11-27 20:42:37,110 - helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_keys_to_console'>)
2017-11-27 20:42:37,111 - 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-11-27 20:42:37,136 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="171803085253650296801511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,144 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,144 - handlers.py[DEBUG]: finish: modules-final/config-keys-to-console: SUCCESS: config-keys-to-console ran successfully
2017-11-27 20:42:37,144 - 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-11-27 20:42:37,145 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="14270640430877496901511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,164 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,164 - handlers.py[DEBUG]: start: modules-final/config-phone-home: running config-phone-home with frequency once-per-instance
2017-11-27 20:42:37,164 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_phone_home - wb: [644] 25 bytes
2017-11-27 20:42:37,165 - helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_phone_home'>)
2017-11-27 20:42:37,165 - cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
2017-11-27 20:42:37,165 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="33145494620891743451511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,173 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,173 - handlers.py[DEBUG]: finish: modules-final/config-phone-home: SUCCESS: config-phone-home ran successfully
2017-11-27 20:42:37,173 - 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-11-27 20:42:37,174 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="55246976487208018151511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,193 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,193 - handlers.py[DEBUG]: start: modules-final/config-final-message: running config-final-message with frequency always
2017-11-27 20:42:37,193 - helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f5ee9638390>)
2017-11-27 20:42:37,193 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-27 20:42:37,193 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-11-27 20:42:37,198 - util.py[DEBUG]: Cloud-init v. 17.1 finished at Mon, 27 Nov 2017 20:42:37 +0000. Datasource DataSourceMAAS [http://10.10.0.113/MAAS/metadata/].  Up 76.03 seconds
2017-11-27 20:42:37,198 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [644] 50 bytes
2017-11-27 20:42:37,199 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="47413208905069408201511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,205 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,205 - handlers.py[DEBUG]: finish: modules-final/config-final-message: SUCCESS: config-final-message ran successfully
2017-11-27 20:42:37,205 - 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-11-27 20:42:37,206 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="80120974975048351451511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,212 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,212 - handlers.py[DEBUG]: start: modules-final/config-power-state-change: running config-power-state-change with frequency once-per-instance
2017-11-27 20:42:37,212 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/x678dw/sem/config_power_state_change - wb: [644] 24 bytes
2017-11-27 20:42:37,213 - helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/x678dw/sem/config_power_state_change'>)
2017-11-27 20:42:37,213 - cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
2017-11-27 20:42:37,213 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="41848991073669222871511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,218 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,218 - handlers.py[DEBUG]: finish: modules-final/config-power-state-change: SUCCESS: config-power-state-change ran successfully
2017-11-27 20:42:37,219 - main.py[DEBUG]: Ran 20 modules with 0 failures
2017-11-27 20:42:37,219 - util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
2017-11-27 20:42:37,220 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-27 20:42:37,220 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-11-27 20:42:37,220 - util.py[DEBUG]: cloud-init mode 'modules' took 13.842 seconds (13.84)
2017-11-27 20:42:37,220 - url_helper.py[DEBUG]: [0/1] open 'http://10.10.0.113/MAAS/metadata/status/x678dw' with {'headers': {'Authorization': 'OAuth oauth_nonce="712261639259893461511815357", oauth_timestamp="1511815357", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_consumer_key="aHEUx8xsXwwmdeagm2", oauth_token="2ErWJj6TKewJpfv5wV", oauth_signature="%26wMhRpe934rPUaanhzf3zE9ZgLUeswUry"'}, 'allow_redirects': True, 'url': 'http://10.10.0.113/MAAS/metadata/status/x678dw', 'method': 'POST'} configuration
2017-11-27 20:42:37,315 - url_helper.py[DEBUG]: Read from http://10.10.0.113/MAAS/metadata/status/x678dw (204, 0b) after 1 attempts
2017-11-27 20:42:37,315 - handlers.py[DEBUG]: finish: modules-final: SUCCESS: running modules for final
Download as text