1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449 | -- Logs begin at Thu 2016-09-15 12:43:20 UTC, end at Thu 2016-09-15 12:43:51 UTC. --
Sep 15 12:43:20 ubuntu systemd-journald[370]: Runtime journal (/run/log/journal/) is 628.0K, max 4.8M, 4.2M free.
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys cpuset
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys cpu
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys cpuacct
Sep 15 12:43:20 ubuntu kernel: Linux version 4.4.0-9136-generic (buildd@lcy01-22) (gcc version 5.4.1 20160803 (Ubuntu 5.4.1-1ubuntu2) ) #55-Ubuntu SMP Fri Aug 26 05:58:34 UTC 2016 (Ubuntu 4.4.0-9136.55-generic 4.4.16)
Sep 15 12:43:20 ubuntu kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9136-generic root=LABEL=cloudimg-rootfs console=ttyS0
Sep 15 12:43:20 ubuntu kernel: KERNEL supported cpus:
Sep 15 12:43:20 ubuntu kernel: Intel GenuineIntel
Sep 15 12:43:20 ubuntu kernel: AMD AuthenticAMD
Sep 15 12:43:20 ubuntu kernel: Centaur CentaurHauls
Sep 15 12:43:20 ubuntu kernel: x86/fpu: Legacy x87 FPU detected.
Sep 15 12:43:20 ubuntu kernel: x86/fpu: Using 'lazy' FPU context switches.
Sep 15 12:43:20 ubuntu kernel: e820: BIOS-provided physical RAM map:
Sep 15 12:43:20 ubuntu kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Sep 15 12:43:20 ubuntu kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Sep 15 12:43:20 ubuntu kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Sep 15 12:43:20 ubuntu kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001ffdffff] usable
Sep 15 12:43:20 ubuntu kernel: BIOS-e820: [mem 0x000000001ffe0000-0x000000001fffffff] reserved
Sep 15 12:43:20 ubuntu kernel: BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
Sep 15 12:43:20 ubuntu kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
Sep 15 12:43:20 ubuntu kernel: NX (Execute Disable) protection: active
Sep 15 12:43:20 ubuntu kernel: SMBIOS 2.8 present.
Sep 15 12:43:20 ubuntu kernel: DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Ubuntu-1.8.2-1ubuntu1 04/01/2014
Sep 15 12:43:20 ubuntu kernel: Hypervisor detected: KVM
Sep 15 12:43:20 ubuntu kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 15 12:43:20 ubuntu kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 15 12:43:20 ubuntu kernel: e820: last_pfn = 0x1ffe0 max_arch_pfn = 0x400000000
Sep 15 12:43:20 ubuntu kernel: MTRR default type: write-back
Sep 15 12:43:20 ubuntu kernel: MTRR fixed ranges enabled:
Sep 15 12:43:20 ubuntu kernel: 00000-9FFFF write-back
Sep 15 12:43:20 ubuntu kernel: A0000-BFFFF uncachable
Sep 15 12:43:20 ubuntu kernel: C0000-FFFFF write-protect
Sep 15 12:43:20 ubuntu kernel: MTRR variable ranges enabled:
Sep 15 12:43:20 ubuntu kernel: 0 base 0080000000 mask FF80000000 uncachable
Sep 15 12:43:20 ubuntu kernel: 1 disabled
Sep 15 12:43:20 ubuntu kernel: 2 disabled
Sep 15 12:43:20 ubuntu kernel: 3 disabled
Sep 15 12:43:20 ubuntu kernel: 4 disabled
Sep 15 12:43:20 ubuntu kernel: 5 disabled
Sep 15 12:43:20 ubuntu kernel: 6 disabled
Sep 15 12:43:20 ubuntu kernel: 7 disabled
Sep 15 12:43:20 ubuntu kernel: x86/PAT: PAT not supported by CPU.
Sep 15 12:43:20 ubuntu kernel: found SMP MP-table at [mem 0x000f6620-0x000f662f] mapped at [ffff8800000f6620]
Sep 15 12:43:20 ubuntu kernel: Scanning 1 areas for low memory corruption
Sep 15 12:43:20 ubuntu kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
Sep 15 12:43:20 ubuntu kernel: BRK [0x02200000, 0x02200fff] PGTABLE
Sep 15 12:43:20 ubuntu kernel: BRK [0x02201000, 0x02201fff] PGTABLE
Sep 15 12:43:20 ubuntu kernel: BRK [0x02202000, 0x02202fff] PGTABLE
Sep 15 12:43:20 ubuntu kernel: BRK [0x02203000, 0x02203fff] PGTABLE
Sep 15 12:43:20 ubuntu kernel: RAMDISK: [mem 0x1efb3000-0x1f6f1fff]
Sep 15 12:43:20 ubuntu kernel: ACPI: Early table checksum verification disabled
Sep 15 12:43:20 ubuntu kernel: ACPI: RSDP 0x00000000000F6440 000014 (v00 BOCHS )
Sep 15 12:43:20 ubuntu kernel: ACPI: RSDT 0x000000001FFE1704 000030 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)
Sep 15 12:43:20 ubuntu kernel: ACPI: FACP 0x000000001FFE15E0 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)
Sep 15 12:43:20 ubuntu kernel: ACPI: DSDT 0x000000001FFE0040 0015A0 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)
Sep 15 12:43:20 ubuntu kernel: ACPI: FACS 0x000000001FFE0000 000040
Sep 15 12:43:20 ubuntu kernel: ACPI: APIC 0x000000001FFE1654 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)
Sep 15 12:43:20 ubuntu kernel: ACPI: HPET 0x000000001FFE16CC 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001)
Sep 15 12:43:20 ubuntu kernel: ACPI: Local APIC address 0xfee00000
Sep 15 12:43:20 ubuntu kernel: No NUMA configuration found
Sep 15 12:43:20 ubuntu kernel: Faking a node at [mem 0x0000000000000000-0x000000001ffdffff]
Sep 15 12:43:20 ubuntu kernel: NODE_DATA(0) allocated [mem 0x1ffdb000-0x1ffdffff]
Sep 15 12:43:20 ubuntu kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00
Sep 15 12:43:20 ubuntu kernel: kvm-clock: cpu 0, msr 0:1ffd7001, primary cpu clock
Sep 15 12:43:20 ubuntu kernel: kvm-clock: using sched offset of 485273028 cycles
Sep 15 12:43:20 ubuntu kernel: clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
Sep 15 12:43:20 ubuntu kernel: Zone ranges:
Sep 15 12:43:20 ubuntu kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
Sep 15 12:43:20 ubuntu kernel: DMA32 [mem 0x0000000001000000-0x000000001ffdffff]
Sep 15 12:43:20 ubuntu kernel: Normal empty
Sep 15 12:43:20 ubuntu kernel: Device empty
Sep 15 12:43:20 ubuntu kernel: Movable zone start for each node
Sep 15 12:43:20 ubuntu kernel: Early memory node ranges
Sep 15 12:43:20 ubuntu kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
Sep 15 12:43:20 ubuntu kernel: node 0: [mem 0x0000000000100000-0x000000001ffdffff]
Sep 15 12:43:20 ubuntu kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000001ffdffff]
Sep 15 12:43:20 ubuntu kernel: On node 0 totalpages: 130942
Sep 15 12:43:20 ubuntu kernel: DMA zone: 64 pages used for memmap
Sep 15 12:43:20 ubuntu kernel: DMA zone: 21 pages reserved
Sep 15 12:43:20 ubuntu kernel: DMA zone: 3998 pages, LIFO batch:0
Sep 15 12:43:20 ubuntu kernel: DMA32 zone: 1984 pages used for memmap
Sep 15 12:43:20 ubuntu kernel: DMA32 zone: 126944 pages, LIFO batch:31
Sep 15 12:43:20 ubuntu kernel: ACPI: PM-Timer IO Port: 0x608
Sep 15 12:43:20 ubuntu kernel: ACPI: Local APIC address 0xfee00000
Sep 15 12:43:20 ubuntu kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
Sep 15 12:43:20 ubuntu kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
Sep 15 12:43:20 ubuntu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Sep 15 12:43:20 ubuntu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
Sep 15 12:43:20 ubuntu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Sep 15 12:43:20 ubuntu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
Sep 15 12:43:20 ubuntu kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Sep 15 12:43:20 ubuntu kernel: ACPI: IRQ0 used by override.
Sep 15 12:43:20 ubuntu kernel: ACPI: IRQ5 used by override.
Sep 15 12:43:20 ubuntu kernel: ACPI: IRQ9 used by override.
Sep 15 12:43:20 ubuntu kernel: ACPI: IRQ10 used by override.
Sep 15 12:43:20 ubuntu kernel: ACPI: IRQ11 used by override.
Sep 15 12:43:20 ubuntu kernel: Using ACPI (MADT) for SMP configuration information
Sep 15 12:43:20 ubuntu kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Sep 15 12:43:20 ubuntu kernel: smpboot: Allowing 1 CPUs, 0 hotplug CPUs
Sep 15 12:43:20 ubuntu kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Sep 15 12:43:20 ubuntu kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Sep 15 12:43:20 ubuntu kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
Sep 15 12:43:20 ubuntu kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Sep 15 12:43:20 ubuntu kernel: e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
Sep 15 12:43:20 ubuntu kernel: Booting paravirtualized kernel on KVM
Sep 15 12:43:20 ubuntu kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Sep 15 12:43:20 ubuntu kernel: setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:1 nr_node_ids:1
Sep 15 12:43:20 ubuntu kernel: PERCPU: Embedded 33 pages/cpu @ffff88001fc00000 s98008 r8192 d28968 u2097152
Sep 15 12:43:20 ubuntu kernel: pcpu-alloc: s98008 r8192 d28968 u2097152 alloc=1*2097152
Sep 15 12:43:20 ubuntu kernel: pcpu-alloc: [0] 0
Sep 15 12:43:20 ubuntu kernel: KVM setup async PF for cpu 0
Sep 15 12:43:20 ubuntu kernel: kvm-stealtime: cpu 0, msr 1fc0d940
Sep 15 12:43:20 ubuntu kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 128873
Sep 15 12:43:20 ubuntu kernel: Policy zone: DMA32
Sep 15 12:43:20 ubuntu kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9136-generic root=LABEL=cloudimg-rootfs console=ttyS0
Sep 15 12:43:20 ubuntu kernel: PID hash table entries: 2048 (order: 2, 16384 bytes)
Sep 15 12:43:20 ubuntu kernel: Calgary: detecting Calgary via BIOS EBDA area
Sep 15 12:43:20 ubuntu kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Sep 15 12:43:20 ubuntu kernel: Memory: 489212K/523768K available (8394K kernel code, 1282K rwdata, 3944K rodata, 1480K init, 1292K bss, 34556K reserved, 0K cma-reserved)
Sep 15 12:43:20 ubuntu kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Sep 15 12:43:20 ubuntu kernel: Hierarchical RCU implementation.
Sep 15 12:43:20 ubuntu kernel: Build-time adjustment of leaf fanout to 64.
Sep 15 12:43:20 ubuntu kernel: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
Sep 15 12:43:20 ubuntu kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=1
Sep 15 12:43:20 ubuntu kernel: NR_IRQS:16640 nr_irqs:256 16
Sep 15 12:43:20 ubuntu kernel: Console: colour VGA+ 80x25
Sep 15 12:43:20 ubuntu kernel: console [ttyS0] enabled
Sep 15 12:43:20 ubuntu kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
Sep 15 12:43:20 ubuntu kernel: hpet clockevent registered
Sep 15 12:43:20 ubuntu kernel: tsc: Detected 2397.220 MHz processor
Sep 15 12:43:20 ubuntu kernel: Calibrating delay loop (skipped) preset value.. 4794.44 BogoMIPS (lpj=9588880)
Sep 15 12:43:20 ubuntu kernel: pid_max: default: 32768 minimum: 301
Sep 15 12:43:20 ubuntu kernel: ACPI: Core revision 20150930
Sep 15 12:43:20 ubuntu kernel: ACPI: 1 ACPI AML tables successfully acquired and loaded
Sep 15 12:43:20 ubuntu kernel: Security Framework initialized
Sep 15 12:43:20 ubuntu kernel: Yama: becoming mindful.
Sep 15 12:43:20 ubuntu kernel: AppArmor: AppArmor initialized
Sep 15 12:43:20 ubuntu kernel: Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
Sep 15 12:43:20 ubuntu kernel: Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
Sep 15 12:43:20 ubuntu kernel: Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
Sep 15 12:43:20 ubuntu kernel: Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys io
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys memory
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys devices
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys freezer
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys net_cls
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys perf_event
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys net_prio
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys hugetlb
Sep 15 12:43:20 ubuntu kernel: Initializing cgroup subsys pids
Sep 15 12:43:20 ubuntu kernel: mce: CPU supports 10 MCE banks
Sep 15 12:43:20 ubuntu kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Sep 15 12:43:20 ubuntu kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Sep 15 12:43:20 ubuntu kernel: Freeing SMP alternatives memory: 28K (ffffffff820b4000 - ffffffff820bb000)
Sep 15 12:43:20 ubuntu kernel: ftrace: allocating 31996 entries in 125 pages
Sep 15 12:43:20 ubuntu kernel: smpboot: Max logical packages: 1
Sep 15 12:43:20 ubuntu kernel: smpboot: APIC(0) Converting physical 0 to logical package 0
Sep 15 12:43:20 ubuntu kernel: x2apic enabled
Sep 15 12:43:20 ubuntu kernel: Switched APIC routing to physical x2apic.
Sep 15 12:43:20 ubuntu kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Sep 15 12:43:20 ubuntu kernel: smpboot: CPU0: Intel QEMU Virtual CPU version 2.4.0 (family: 0x6, model: 0x6, stepping: 0x3)
Sep 15 12:43:20 ubuntu kernel: Performance Events: Broken PMU hardware detected, using software events only.
Sep 15 12:43:20 ubuntu kernel: Failed to access perfctr msr (MSR c2 is 0)
Sep 15 12:43:20 ubuntu kernel: x86: Booted up 1 node, 1 CPUs
Sep 15 12:43:20 ubuntu kernel: smpboot: Total of 1 processors activated (4794.44 BogoMIPS)
Sep 15 12:43:20 ubuntu kernel: devtmpfs: initialized
Sep 15 12:43:20 ubuntu kernel: evm: security.selinux
Sep 15 12:43:20 ubuntu kernel: evm: security.SMACK64
Sep 15 12:43:20 ubuntu kernel: evm: security.SMACK64EXEC
Sep 15 12:43:20 ubuntu kernel: evm: security.SMACK64TRANSMUTE
Sep 15 12:43:20 ubuntu kernel: evm: security.SMACK64MMAP
Sep 15 12:43:20 ubuntu kernel: evm: security.ima
Sep 15 12:43:20 ubuntu kernel: evm: security.capability
Sep 15 12:43:20 ubuntu kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 15 12:43:20 ubuntu kernel: pinctrl core: initialized pinctrl subsystem
Sep 15 12:43:20 ubuntu kernel: RTC time: 12:43:16, date: 09/15/16
Sep 15 12:43:20 ubuntu kernel: NET: Registered protocol family 16
Sep 15 12:43:20 ubuntu kernel: cpuidle: using governor ladder
Sep 15 12:43:20 ubuntu kernel: cpuidle: using governor menu
Sep 15 12:43:20 ubuntu kernel: PCCT header not found.
Sep 15 12:43:20 ubuntu kernel: ACPI: bus type PCI registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Sep 15 12:43:20 ubuntu kernel: PCI: Using configuration type 1 for base access
Sep 15 12:43:20 ubuntu kernel: ACPI: Added _OSI(Module Device)
Sep 15 12:43:20 ubuntu kernel: ACPI: Added _OSI(Processor Device)
Sep 15 12:43:20 ubuntu kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Sep 15 12:43:20 ubuntu kernel: ACPI: Added _OSI(Processor Aggregator Device)
Sep 15 12:43:20 ubuntu kernel: ACPI: Interpreter enabled
Sep 15 12:43:20 ubuntu kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150930/hwxface-580)
Sep 15 12:43:20 ubuntu kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150930/hwxface-580)
Sep 15 12:43:20 ubuntu kernel: ACPI: (supports S0 S3 S4 S5)
Sep 15 12:43:20 ubuntu kernel: ACPI: Using IOAPIC for interrupt routing
Sep 15 12:43:20 ubuntu kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Sep 15 12:43:20 ubuntu kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
Sep 15 12:43:20 ubuntu kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Sep 15 12:43:20 ubuntu kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [3] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [4] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [5] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [6] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [7] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [8] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [9] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [10] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [11] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [12] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [13] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [14] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [15] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [16] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [17] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [18] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [19] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [20] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [21] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [22] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [23] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [24] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [25] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [26] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [27] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [28] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [29] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [30] registered
Sep 15 12:43:20 ubuntu kernel: acpiphp: Slot [31] registered
Sep 15 12:43:20 ubuntu kernel: PCI host bridge to bus 0000:00
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: root bus resource [mem 0x20000000-0xfebfffff window]
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.1: reg 0x20: [io 0xc0e0-0xc0ef]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.2: reg 0x20: [io 0xc080-0xc09f]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:02.0: [1013:00b8] type 00 class 0x030000
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:02.0: reg 0x10: [mem 0xfc000000-0xfdffffff pref]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:02.0: reg 0x14: [mem 0xfebd0000-0xfebd0fff]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:02.0: reg 0x30: [mem 0xfebc0000-0xfebcffff pref]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:03.0: reg 0x10: [io 0xc0a0-0xc0bf]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:03.0: reg 0x14: [mem 0xfebd1000-0xfebd1fff]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:03.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:04.0: reg 0x10: [io 0xc000-0xc03f]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:04.0: reg 0x14: [mem 0xfebd2000-0xfebd2fff]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:05.0: [1af4:1001] type 00 class 0x010000
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:05.0: reg 0x10: [io 0xc040-0xc07f]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:05.0: reg 0x14: [mem 0xfebd3000-0xfebd3fff]
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:06.0: [1af4:1002] type 00 class 0x00ff00
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:06.0: reg 0x10: [io 0xc0c0-0xc0df]
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
Sep 15 12:43:20 ubuntu kernel: ACPI: Enabled 16 GPEs in block 00 to 0F
Sep 15 12:43:20 ubuntu kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
Sep 15 12:43:20 ubuntu kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Sep 15 12:43:20 ubuntu kernel: vgaarb: loaded
Sep 15 12:43:20 ubuntu kernel: vgaarb: bridge control possible 0000:00:02.0
Sep 15 12:43:20 ubuntu kernel: SCSI subsystem initialized
Sep 15 12:43:20 ubuntu kernel: libata version 3.00 loaded.
Sep 15 12:43:20 ubuntu kernel: ACPI: bus type USB registered
Sep 15 12:43:20 ubuntu kernel: usbcore: registered new interface driver usbfs
Sep 15 12:43:20 ubuntu kernel: usbcore: registered new interface driver hub
Sep 15 12:43:20 ubuntu kernel: usbcore: registered new device driver usb
Sep 15 12:43:20 ubuntu kernel: PCI: Using ACPI for IRQ routing
Sep 15 12:43:20 ubuntu kernel: PCI: pci_cache_line_size set to 64 bytes
Sep 15 12:43:20 ubuntu kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Sep 15 12:43:20 ubuntu kernel: e820: reserve RAM buffer [mem 0x1ffe0000-0x1fffffff]
Sep 15 12:43:20 ubuntu kernel: NetLabel: Initializing
Sep 15 12:43:20 ubuntu kernel: NetLabel: domain hash size = 128
Sep 15 12:43:20 ubuntu kernel: NetLabel: protocols = UNLABELED CIPSOv4
Sep 15 12:43:20 ubuntu kernel: NetLabel: unlabeled traffic allowed by default
Sep 15 12:43:20 ubuntu kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Sep 15 12:43:20 ubuntu kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Sep 15 12:43:20 ubuntu kernel: hpet0: 3 comparators, 64-bit 100.000000 MHz counter
Sep 15 12:43:20 ubuntu kernel: amd_nb: Cannot enumerate AMD northbridges
Sep 15 12:43:20 ubuntu kernel: clocksource: Switched to clocksource kvm-clock
Sep 15 12:43:20 ubuntu kernel: AppArmor: AppArmor Filesystem Enabled
Sep 15 12:43:20 ubuntu kernel: pnp: PnP ACPI init
Sep 15 12:43:20 ubuntu kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
Sep 15 12:43:20 ubuntu kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
Sep 15 12:43:20 ubuntu kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
Sep 15 12:43:20 ubuntu kernel: pnp 00:03: [dma 2]
Sep 15 12:43:20 ubuntu kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)
Sep 15 12:43:20 ubuntu kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Sep 15 12:43:20 ubuntu kernel: pnp: PnP ACPI: found 5 devices
Sep 15 12:43:20 ubuntu kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Sep 15 12:43:20 ubuntu kernel: pci_bus 0000:00: resource 7 [mem 0x20000000-0xfebfffff window]
Sep 15 12:43:20 ubuntu kernel: NET: Registered protocol family 2
Sep 15 12:43:20 ubuntu kernel: TCP established hash table entries: 4096 (order: 3, 32768 bytes)
Sep 15 12:43:20 ubuntu kernel: TCP bind hash table entries: 4096 (order: 4, 65536 bytes)
Sep 15 12:43:20 ubuntu kernel: TCP: Hash tables configured (established 4096 bind 4096)
Sep 15 12:43:20 ubuntu kernel: UDP hash table entries: 256 (order: 1, 8192 bytes)
Sep 15 12:43:20 ubuntu kernel: UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
Sep 15 12:43:20 ubuntu kernel: NET: Registered protocol family 1
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.0: PIIX3: Enabling Passive Release
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
Sep 15 12:43:20 ubuntu kernel: pci 0000:00:02.0: Video device with shadowed ROM
Sep 15 12:43:20 ubuntu kernel: PCI: CLS 0 bytes, default 64
Sep 15 12:43:20 ubuntu kernel: Trying to unpack rootfs image as initramfs...
Sep 15 12:43:20 ubuntu kernel: Freeing initrd memory: 7420K (ffff88001efb3000 - ffff88001f6f2000)
Sep 15 12:43:20 ubuntu kernel: Scanning for low memory corruption every 60 seconds
Sep 15 12:43:20 ubuntu kernel: futex hash table entries: 256 (order: 2, 16384 bytes)
Sep 15 12:43:20 ubuntu kernel: audit: initializing netlink subsys (disabled)
Sep 15 12:43:20 ubuntu kernel: audit: type=2000 audit(1473943398.231:1): initialized
Sep 15 12:43:20 ubuntu kernel: Initialise system trusted keyring
Sep 15 12:43:20 ubuntu kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Sep 15 12:43:20 ubuntu kernel: zbud: loaded
Sep 15 12:43:20 ubuntu kernel: VFS: Disk quotas dquot_6.6.0
Sep 15 12:43:20 ubuntu kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 15 12:43:20 ubuntu kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Sep 15 12:43:20 ubuntu kernel: fuse init (API version 7.23)
Sep 15 12:43:20 ubuntu kernel: Key type big_key registered
Sep 15 12:43:20 ubuntu kernel: Allocating IMA MOK and blacklist keyrings.
Sep 15 12:43:20 ubuntu kernel: Key type asymmetric registered
Sep 15 12:43:20 ubuntu kernel: Asymmetric key parser 'x509' registered
Sep 15 12:43:20 ubuntu kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Sep 15 12:43:20 ubuntu kernel: io scheduler noop registered
Sep 15 12:43:20 ubuntu kernel: io scheduler deadline registered (default)
Sep 15 12:43:20 ubuntu kernel: io scheduler cfq registered
Sep 15 12:43:20 ubuntu kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Sep 15 12:43:20 ubuntu kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Sep 15 12:43:20 ubuntu kernel: intel_idle: does not run on family 6 model 6
Sep 15 12:43:20 ubuntu kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Sep 15 12:43:20 ubuntu kernel: ACPI: Power Button [PWRF]
Sep 15 12:43:20 ubuntu kernel: GHES: HEST is not enabled!
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
Sep 15 12:43:20 ubuntu kernel: virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver
Sep 15 12:43:20 ubuntu kernel: virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
Sep 15 12:43:20 ubuntu kernel: virtio-pci 0000:00:05.0: virtio_pci: leaving for legacy driver
Sep 15 12:43:20 ubuntu kernel: ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
Sep 15 12:43:20 ubuntu kernel: virtio-pci 0000:00:06.0: virtio_pci: leaving for legacy driver
Sep 15 12:43:20 ubuntu kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Sep 15 12:43:20 ubuntu kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Sep 15 12:43:20 ubuntu kernel: Linux agpgart interface v0.103
Sep 15 12:43:20 ubuntu kernel: brd: module loaded
Sep 15 12:43:20 ubuntu kernel: loop: module loaded
Sep 15 12:43:20 ubuntu kernel: GPT:Primary header thinks Alt. header is not at the end of the disk.
Sep 15 12:43:20 ubuntu kernel: GPT:4612095 != 16777215
Sep 15 12:43:20 ubuntu kernel: GPT:Alternate GPT header not at the end of the disk.
Sep 15 12:43:20 ubuntu kernel: GPT:4612095 != 16777215
Sep 15 12:43:20 ubuntu kernel: GPT: Use GNU Parted to correct GPT errors.
Sep 15 12:43:20 ubuntu kernel: vda: vda1 vda14 vda15
Sep 15 12:43:20 ubuntu kernel: ata_piix 0000:00:01.1: version 2.13
Sep 15 12:43:20 ubuntu kernel: scsi host0: ata_piix
Sep 15 12:43:20 ubuntu kernel: scsi host1: ata_piix
Sep 15 12:43:20 ubuntu kernel: ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc0e0 irq 14
Sep 15 12:43:20 ubuntu kernel: ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc0e8 irq 15
Sep 15 12:43:20 ubuntu kernel: libphy: Fixed MDIO Bus: probed
Sep 15 12:43:20 ubuntu kernel: tun: Universal TUN/TAP device driver, 1.6
Sep 15 12:43:20 ubuntu kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Sep 15 12:43:20 ubuntu kernel: PPP generic driver version 2.4.2
Sep 15 12:43:20 ubuntu kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Sep 15 12:43:20 ubuntu kernel: ehci-pci: EHCI PCI platform driver
Sep 15 12:43:20 ubuntu kernel: ehci-platform: EHCI generic platform driver
Sep 15 12:43:20 ubuntu kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Sep 15 12:43:20 ubuntu kernel: ohci-pci: OHCI PCI platform driver
Sep 15 12:43:20 ubuntu kernel: ohci-platform: OHCI generic platform driver
Sep 15 12:43:20 ubuntu kernel: uhci_hcd: USB Universal Host Controller Interface driver
Sep 15 12:43:20 ubuntu kernel: uhci_hcd 0000:00:01.2: UHCI Host Controller
Sep 15 12:43:20 ubuntu kernel: uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
Sep 15 12:43:20 ubuntu kernel: uhci_hcd 0000:00:01.2: detected 2 ports
Sep 15 12:43:20 ubuntu kernel: uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c080
Sep 15 12:43:20 ubuntu kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
Sep 15 12:43:20 ubuntu kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 15 12:43:20 ubuntu kernel: usb usb1: Product: UHCI Host Controller
Sep 15 12:43:20 ubuntu kernel: usb usb1: Manufacturer: Linux 4.4.0-9136-generic uhci_hcd
Sep 15 12:43:20 ubuntu kernel: usb usb1: SerialNumber: 0000:00:01.2
Sep 15 12:43:20 ubuntu kernel: hub 1-0:1.0: USB hub found
Sep 15 12:43:20 ubuntu kernel: hub 1-0:1.0: 2 ports detected
Sep 15 12:43:20 ubuntu kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Sep 15 12:43:20 ubuntu kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Sep 15 12:43:20 ubuntu kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Sep 15 12:43:20 ubuntu kernel: mousedev: PS/2 mouse device common for all mice
Sep 15 12:43:20 ubuntu kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
Sep 15 12:43:20 ubuntu kernel: rtc_cmos 00:00: RTC can wake from S4
Sep 15 12:43:20 ubuntu kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
Sep 15 12:43:20 ubuntu kernel: rtc_cmos 00:00: alarms up to one day, y3k, 114 bytes nvram, hpet irqs
Sep 15 12:43:20 ubuntu kernel: i2c /dev entries driver
Sep 15 12:43:20 ubuntu kernel: device-mapper: uevent: version 1.0.3
Sep 15 12:43:20 ubuntu kernel: device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Sep 15 12:43:20 ubuntu kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 15 12:43:20 ubuntu kernel: NET: Registered protocol family 10
Sep 15 12:43:20 ubuntu kernel: NET: Registered protocol family 17
Sep 15 12:43:20 ubuntu kernel: Key type dns_resolver registered
Sep 15 12:43:20 ubuntu kernel: microcode: CPU0 sig=0x663, pf=0x1, revision=0x1
Sep 15 12:43:20 ubuntu kernel: microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Sep 15 12:43:20 ubuntu kernel: registered taskstats version 1
Sep 15 12:43:20 ubuntu kernel: Loading compiled-in X.509 certificates
Sep 15 12:43:20 ubuntu kernel: Loaded X.509 cert 'Build time autogenerated kernel key: bcd1d8881be020882b5479e6531a2cb54d7ed7e6'
Sep 15 12:43:20 ubuntu kernel: zswap: loaded using pool lzo/zbud
Sep 15 12:43:20 ubuntu kernel: Key type trusted registered
Sep 15 12:43:20 ubuntu kernel: Key type encrypted registered
Sep 15 12:43:20 ubuntu kernel: AppArmor: AppArmor sha1 policy hashing enabled
Sep 15 12:43:20 ubuntu kernel: ima: No TPM chip found, activating TPM-bypass!
Sep 15 12:43:20 ubuntu kernel: evm: HMAC attrs: 0x1
Sep 15 12:43:20 ubuntu kernel: Magic number: 0:103:734
Sep 15 12:43:20 ubuntu kernel: rtc_cmos 00:00: setting system clock to 2016-09-15 12:43:18 UTC (1473943398)
Sep 15 12:43:20 ubuntu kernel: BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Sep 15 12:43:20 ubuntu kernel: EDD information not available.
Sep 15 12:43:20 ubuntu kernel: PM: Hibernation image not present or could not be loaded.
Sep 15 12:43:20 ubuntu kernel: Freeing unused kernel memory: 1480K (ffffffff81f42000 - ffffffff820b4000)
Sep 15 12:43:20 ubuntu kernel: Write protecting the kernel read-only data: 14336k
Sep 15 12:43:20 ubuntu kernel: Freeing unused kernel memory: 1832K (ffff880001836000 - ffff880001a00000)
Sep 15 12:43:20 ubuntu kernel: Freeing unused kernel memory: 152K (ffff880001dda000 - ffff880001e00000)
Sep 15 12:43:20 ubuntu kernel: random: udevadm urandom read with 2 bits of entropy available
Sep 15 12:43:20 ubuntu kernel: virtio_net virtio0 ens3: renamed from eth0
Sep 15 12:43:20 ubuntu kernel: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
Sep 15 12:43:20 ubuntu kernel: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
Sep 15 12:43:20 ubuntu kernel: FDC 0 is a S82078B
Sep 15 12:43:20 ubuntu kernel: tsc: Refined TSC clocksource calibration: 2397.215 MHz
Sep 15 12:43:20 ubuntu kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x228df07c365, max_idle_ns: 440795212327 ns
Sep 15 12:43:20 ubuntu kernel: md: linear personality registered for level -1
Sep 15 12:43:20 ubuntu kernel: md: multipath personality registered for level -4
Sep 15 12:43:20 ubuntu kernel: md: raid0 personality registered for level 0
Sep 15 12:43:20 ubuntu kernel: md: raid1 personality registered for level 1
Sep 15 12:43:20 ubuntu kernel: raid6: sse2x1 gen() 10023 MB/s
Sep 15 12:43:20 ubuntu kernel: raid6: sse2x1 xor() 7707 MB/s
Sep 15 12:43:20 ubuntu kernel: raid6: sse2x2 gen() 11893 MB/s
Sep 15 12:43:20 ubuntu kernel: raid6: sse2x2 xor() 8116 MB/s
Sep 15 12:43:20 ubuntu kernel: raid6: sse2x4 gen() 14718 MB/s
Sep 15 12:43:20 ubuntu kernel: raid6: sse2x4 xor() 10001 MB/s
Sep 15 12:43:20 ubuntu kernel: raid6: using algorithm sse2x4 gen() 14718 MB/s
Sep 15 12:43:20 ubuntu kernel: raid6: .... xor() 10001 MB/s, rmw enabled
Sep 15 12:43:20 ubuntu kernel: raid6: using intx1 recovery algorithm
Sep 15 12:43:20 ubuntu kernel: xor: measuring software checksum speed
Sep 15 12:43:20 ubuntu kernel: prefetch64-sse: 16008.000 MB/sec
Sep 15 12:43:20 ubuntu kernel: generic_sse: 14903.000 MB/sec
Sep 15 12:43:20 ubuntu kernel: xor: using function: prefetch64-sse (16008.000 MB/sec)
Sep 15 12:43:20 ubuntu kernel: async_tx: api initialized (async)
Sep 15 12:43:20 ubuntu kernel: md: raid6 personality registered for level 6
Sep 15 12:43:20 ubuntu kernel: md: raid5 personality registered for level 5
Sep 15 12:43:20 ubuntu kernel: md: raid4 personality registered for level 4
Sep 15 12:43:20 ubuntu kernel: md: raid10 personality registered for level 10
Sep 15 12:43:20 ubuntu kernel: Btrfs loaded
Sep 15 12:43:20 ubuntu kernel: EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null)
Sep 15 12:43:20 ubuntu kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Sep 15 12:43:20 ubuntu systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Sep 15 12:43:20 ubuntu systemd[1]: Detected virtualization qemu.
Sep 15 12:43:20 ubuntu systemd[1]: Detected architecture x86-64.
Sep 15 12:43:20 ubuntu systemd[1]: Set hostname to <ubuntu>.
Sep 15 12:43:20 ubuntu systemd[1]: Initializing machine ID from random generator.
Sep 15 12:43:20 ubuntu systemd[1]: Installed transient /etc/machine-id file.
Sep 15 12:43:20 ubuntu systemd[1]: multi-user.target: Found ordering cycle on multi-user.target/start
Sep 15 12:43:20 ubuntu systemd[1]: multi-user.target: Found dependency on cloud-init.target/start
Sep 15 12:43:20 ubuntu systemd[1]: multi-user.target: Found dependency on cloud-final.service/start
Sep 15 12:43:20 ubuntu systemd[1]: multi-user.target: Found dependency on multi-user.target/start
Sep 15 12:43:20 ubuntu systemd[1]: multi-user.target: Breaking ordering cycle by deleting job cloud-init.target/start
Sep 15 12:43:20 ubuntu systemd[1]: cloud-init.target: Job cloud-init.target/start deleted to break ordering cycle starting with multi-user.target/start
Sep 15 12:43:20 ubuntu systemd[1]: Created slice User and Session Slice.
Sep 15 12:43:20 ubuntu systemd[1]: Created slice System Slice.
Sep 15 12:43:20 ubuntu systemd[1]: Created slice system-serial\x2dgetty.slice.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on udev Control Socket.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on LVM2 poll daemon socket.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on Journal Socket (/dev/log).
Sep 15 12:43:20 ubuntu systemd[1]: Listening on Journal Audit Socket.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on LVM2 metadata daemon socket.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on Device-mapper event daemon FIFOs.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on udev Kernel Socket.
Sep 15 12:43:20 ubuntu systemd[1]: Reached target Encrypted Volumes.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Sep 15 12:43:20 ubuntu systemd[1]: Reached target Slices.
Sep 15 12:43:20 ubuntu systemd[1]: Reached target Swap.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on Syslog Socket.
Sep 15 12:43:20 ubuntu systemd[1]: Reached target User and Group Name Lookups.
Sep 15 12:43:20 ubuntu systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Sep 15 12:43:20 ubuntu systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Sep 15 12:43:20 ubuntu systemd[1]: Listening on Journal Socket.
Sep 15 12:43:20 ubuntu systemd[1]: Starting Uncomplicated firewall...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Nameserver information manager...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Remount Root and Kernel File Systems...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Create list of required static device nodes for the current kernel...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Load Kernel Modules...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Set the console keyboard layout...
Sep 15 12:43:20 ubuntu systemd[1]: Mounting Huge Pages File System...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Sep 15 12:43:20 ubuntu systemd[1]: Mounting Debug File System...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Journal Service...
Sep 15 12:43:20 ubuntu systemd[1]: Mounting POSIX Message Queue File System...
Sep 15 12:43:20 ubuntu systemd[1]: Mounted Huge Pages File System.
Sep 15 12:43:20 ubuntu systemd[1]: Mounted Debug File System.
Sep 15 12:43:20 ubuntu systemd[1]: Started Uncomplicated firewall.
Sep 15 12:43:20 ubuntu systemd[1]: Started Create list of required static device nodes for the current kernel.
Sep 15 12:43:20 ubuntu systemd[1]: Mounted POSIX Message Queue File System.
Sep 15 12:43:20 ubuntu systemd[1]: Starting Create Static Device Nodes in /dev...
Sep 15 12:43:20 ubuntu systemd[1]: Started Nameserver information manager.
Sep 15 12:43:20 ubuntu kernel: EXT4-fs (vda1): re-mounted. Opts: (null)
Sep 15 12:43:20 ubuntu systemd[1]: Started Remount Root and Kernel File Systems.
Sep 15 12:43:20 ubuntu systemd[1]: Starting Load/Save Random Seed...
Sep 15 12:43:20 ubuntu systemd[1]: Starting udev Coldplug all Devices...
Sep 15 12:43:20 ubuntu systemd[1]: Started Load/Save Random Seed.
Sep 15 12:43:20 ubuntu systemd[1]: Started Create Static Device Nodes in /dev.
Sep 15 12:43:20 ubuntu systemd[1]: Starting udev Kernel Device Manager...
Sep 15 12:43:20 ubuntu systemd[1]: Started LVM2 metadata daemon.
Sep 15 12:43:20 ubuntu kernel: Loading iSCSI transport class v2.0-870.
Sep 15 12:43:20 ubuntu systemd[1]: Started udev Kernel Device Manager.
Sep 15 12:43:20 ubuntu kernel: iscsi: registered transport (tcp)
Sep 15 12:43:20 ubuntu systemd-journald[370]: Journal started
Sep 15 12:43:20 ubuntu systemd[1]: Started Journal Service.
Sep 15 12:43:20 ubuntu systemd-modules-load[360]: Inserted module 'iscsi_tcp'
Sep 15 12:43:20 ubuntu systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 15 12:43:20 ubuntu systemd[1]: Started Flush Journal to Persistent Storage.
Sep 15 12:43:20 ubuntu keyboard-setup.sh[361]: * Setting up keyboard layout...
Sep 15 12:43:20 ubuntu systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Sep 15 12:43:20 ubuntu systemd-modules-load[360]: Inserted module 'ib_iser'
Sep 15 12:43:20 ubuntu kernel: iscsi: registered transport (iser)
Sep 15 12:43:20 ubuntu systemd[1]: Started Load Kernel Modules.
Sep 15 12:43:20 ubuntu systemd[1]: Mounting FUSE Control File System...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Apply Kernel Variables...
Sep 15 12:43:20 ubuntu systemd[1]: Mounted FUSE Control File System.
Sep 15 12:43:20 ubuntu systemd[1]: Started Apply Kernel Variables.
Sep 15 12:43:20 ubuntu systemd[1]: Started udev Coldplug all Devices.
Sep 15 12:43:20 ubuntu keyboard-setup.sh[361]: ...done.
Sep 15 12:43:20 ubuntu systemd[1]: Started Set the console keyboard layout.
Sep 15 12:43:20 ubuntu systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Sep 15 12:43:20 ubuntu systemd[1]: Reached target Local File Systems (Pre).
Sep 15 12:43:20 ubuntu systemd[1]: Found device /dev/disk/by-label/UEFI.
Sep 15 12:43:20 ubuntu systemd[1]: Mounting /boot/efi...
Sep 15 12:43:20 ubuntu systemd[1]: Mounted /boot/efi.
Sep 15 12:43:20 ubuntu systemd[1]: Reached target Local File Systems.
Sep 15 12:43:20 ubuntu systemd[1]: Starting Create Volatile Files and Directories...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Commit a transient machine-id on disk...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Sep 15 12:43:20 ubuntu systemd-tmpfiles[475]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Sep 15 12:43:20 ubuntu systemd[1]: Starting Initial cloud-init job (pre-networking)...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Set console font and keymap...
Sep 15 12:43:20 ubuntu systemd[1]: Starting AppArmor initialization...
Sep 15 12:43:20 ubuntu systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
Sep 15 12:43:20 ubuntu systemd[1]: Started Set console font and keymap.
Sep 15 12:43:20 ubuntu systemd[1]: Started Create Volatile Files and Directories.
Sep 15 12:43:20 ubuntu systemd[1]: Starting Network Time Synchronization...
Sep 15 12:43:20 ubuntu systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Sep 15 12:43:20 ubuntu systemd[1]: Started Commit a transient machine-id on disk.
Sep 15 12:43:20 ubuntu systemd[1]: Started Update UTMP about System Boot/Shutdown.
Sep 15 12:43:20 ubuntu apparmor[490]: * Starting AppArmor profiles
Sep 15 12:43:21 ubuntu systemd[1]: Found device /dev/ttyS0.
Sep 15 12:43:21 ubuntu systemd[1]: Started Network Time Synchronization.
Sep 15 12:43:21 ubuntu systemd[1]: Reached target System Time Synchronized.
Sep 15 12:43:21 ubuntu systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 15 12:43:21 ubuntu kernel: ppdev: user-space parallel port driver
Sep 15 12:43:21 ubuntu audit[531]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=531 comm="apparmor_parser"
Sep 15 12:43:21 ubuntu audit[531]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=531 comm="apparmor_parser"
Sep 15 12:43:21 ubuntu audit[531]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=531 comm="apparmor_parser"
Sep 15 12:43:21 ubuntu audit[531]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=531 comm="apparmor_parser"
Sep 15 12:43:21 ubuntu kernel: audit: type=1400 audit(1473943401.684:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=531 comm="apparmor_parser"
Sep 15 12:43:21 ubuntu kernel: audit: type=1400 audit(1473943401.688:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=531 comm="apparmor_parser"
Sep 15 12:43:21 ubuntu kernel: audit: type=1400 audit(1473943401.688:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=531 comm="apparmor_parser"
Sep 15 12:43:21 ubuntu kernel: audit: type=1400 audit(1473943401.692:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=531 comm="apparmor_parser"
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 running 'init-local' at Thu, 15 Sep 2016 12:43:21 +0000. Up 4.84 seconds.
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] stages.py[DEBUG]: no cache found
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: no cache found
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] __init__.py[DEBUG]: Looking for for data source in: ['NoCloud', 'ConfigDrive', 'OpenNebula', 'Azure', 'AltCloud', 'OVF', 'MAAS', 'GCE', 'OpenStack', 'CloudSigma', 'SmartOS', 'Ec2', 'CloudStack', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] __init__.py[DEBUG]: Searching for local data source in: ['DataSourceNoCloud', 'DataSourceConfigDrive', 'DataSourceOpenNebula', 'DataSourceOVF', 'DataSourceSmartOS']
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] handlers.py[DEBUG]: start: init-local/search-NoCloud: searching for local data from DataSourceNoCloud
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloud'>
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/network-config (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/network-config (quiet=False)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 15 12:43:21 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] DataSourceNoCloud.py[DEBUG]: Attempting to use data from /dev/vdb
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 2107 bytes from /proc/mounts
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Fetched {'sysfs': {'fstype': 'sysfs', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys'}, 'debugfs': {'fstype': 'debugfs', 'opts': 'rw,relatime', 'mountpoint': '/sys/kernel/debug'}, 'pstore': {'fstype': 'pstore', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/fs/pstore'}, 'hugetlbfs': {'fstype': 'hugetlbfs', 'opts': 'rw,relatime', 'mountpoint': '/dev/hugepages'}, 'proc': {'fstype': 'proc', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/proc'}, 'cgroup': {'fstype': 'cgroup', 'opts': 'rw,nosuid,nodev,noexec,relatime,memory', 'mountpoint': '/sys/fs/cgroup/memory'}, '/dev/vda1': {'fstype': 'ext4', 'opts': 'rw,relatime,data=ordered', 'mountpoint': '/'}, 'securityfs': {'fstype': 'securityfs', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/kernel/security'}, 'mqueue': {'fstype': 'mqueue', 'opts': 'rw,relatime', 'mountpoint': '/dev/mqueue'}, 'tmpfs': {'fstype': 'tmpfs', 'opts': 'ro,nosuid,nodev,noexec,mode=755', 'mountpoint': '/sys/fs/cgroup'}, 'fusectl': {'fstype': 'fusectl', 'opts': 'rw,relatime', 'mountpoint': '/sys/fs/fuse/connections'}, '/dev/vda15': {'fstype': 'vfat', 'opts': 'rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro', 'mountpoint': '/boot/efi'}, 'devpts': {'fstype': 'devpts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'mountpoint': '/dev/pts'}, 'udev': {'fstype': 'devtmpfs', 'opts': 'rw,nosuid,relatime,size=244620k,nr_inodes=61155,mode=755', 'mountpoint': '/dev'}, 'systemd-1': {'fstype': 'autofs', 'opts': 'rw,relatime,fd=35,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'mountpoint': '/proc/sys/fs/binfmt_misc'}} mounts from proc
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['mount', '-o', 'ro,sync', '-t', 'auto', '/dev/vdb', '/tmp/tmp9s0lh187'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:22 ubuntu audit[613]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=613 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu kernel: audit: type=1400 audit(1473943402.072:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=613 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu audit[613]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=613 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu audit[613]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=613 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu audit[613]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=613 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Sep 15 12:43:22 ubuntu kernel: audit: type=1400 audit(1473943402.080:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=613 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu kernel: audit: type=1400 audit(1473943402.080:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=613 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu kernel: audit: type=1400 audit(1473943402.080:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=613 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp9s0lh187//user-data (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 5188 bytes from /tmp/tmp9s0lh187//user-data
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp9s0lh187//meta-data (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 52 bytes from /tmp/tmp9s0lh187//meta-data
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp9s0lh187//vendor-data (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp9s0lh187//network-config (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['umount', '/tmp/tmp9s0lh187'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:22 ubuntu kernel: ISO 9660 Extensions: RRIP_1991A
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Recursively deleting /tmp/tmp9s0lh187
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 52 with allowed root types (<class 'dict'>,)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] DataSourceNoCloud.py[DEBUG]: Using data from /dev/vdb
Sep 15 12:43:22 ubuntu audit[654]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=654 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-local/search-NoCloud: SUCCESS: found local data from DataSourceNoCloud
Sep 15 12:43:22 ubuntu kernel: audit: type=1400 audit(1473943402.092:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=654 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] stages.py[INFO]: Loaded datasource DataSourceNoCloud - DataSourceNoCloud [seed=/dev/vdb][dsmode=net]
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 3018 bytes from /etc/cloud/cloud.cfg
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 3018 with allowed root types (<class 'dict'>,)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860'
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/datasource (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/datasource - wb: [420] 65 bytes
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 65 bytes
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] stages.py[DEBUG]: previous iid found to be NO_PREVIOUS_INSTANCE_ID
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 37 bytes
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [420] 37 bytes
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 24 bytes
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 10832 bytes
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] main.py[DEBUG]: [local] init will now be targeting instance id: f885583e-7b41-11e6-9d2e-ecb1d7746860. new=True
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 3018 bytes from /etc/cloud/cloud.cfg
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 3018 with allowed root types (<class 'dict'>,)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/carrier (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/dormant (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/operstate (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 5 bytes from /sys/class/net/ens3/operstate
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/address (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens3/address
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'subnets': [{'type': 'dhcp'}], 'mac_address': '52:54:00:d7:38:db', 'type': 'physical', 'name': 'ens3'}]}
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/operstate (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 5 bytes from /sys/class/net/ens3/operstate
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/address (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens3/address
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] __init__.py[DEBUG]: no work necessary for renaming of [['52:54:00:d7:38:db', 'ens3']]
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] stages.py[INFO]: Applying network configuration from fallback bringup=False: {'version': 1, 'config': [{'subnets': [{'type': 'dhcp'}], 'mac_address': '52:54:00:d7:38:db', 'type': 'physical', 'name': 'ens3'}]}
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 367 bytes
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] main.py[DEBUG]: [local] Exiting. datasource DataSourceNoCloud [seed=/dev/vdb][dsmode=net] not in local mode.
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: Read 10 bytes from /proc/uptime
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'init' took 0.417 seconds (0.41)
Sep 15 12:43:22 ubuntu cloud-init[483]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
Sep 15 12:43:22 ubuntu cloud-init[483]: Cloud-init v. 0.7.7 running 'init-local' at Thu, 15 Sep 2016 12:43:21 +0000. Up 4.84 seconds.
Sep 15 12:43:22 ubuntu audit[658]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lxd/lxd-bridge-proxy" pid=658 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu systemd[1]: Started Initial cloud-init job (pre-networking).
Sep 15 12:43:22 ubuntu systemd[1]: Reached target Network (Pre).
Sep 15 12:43:22 ubuntu audit[662]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=662 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu apparmor[490]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Sep 15 12:43:22 ubuntu audit[669]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=669 comm="apparmor_parser"
Sep 15 12:43:22 ubuntu apparmor[490]: ...done.
Sep 15 12:43:22 ubuntu systemd[1]: Started AppArmor initialization.
Sep 15 12:43:22 ubuntu systemd[1]: Starting Raise network interfaces...
Sep 15 12:43:22 ubuntu systemd[1]: Reached target System Initialization.
Sep 15 12:43:22 ubuntu systemd[1]: Starting Socket activation for snappy daemon.
Sep 15 12:43:22 ubuntu systemd[1]: Started ACPI Events Check.
Sep 15 12:43:22 ubuntu systemd[1]: Reached target Paths.
Sep 15 12:43:22 ubuntu systemd[1]: Listening on ACPID Listen Socket.
Sep 15 12:43:22 ubuntu systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 15 12:43:22 ubuntu systemd[1]: apt-daily.timer: Adding 8h 19min 40.061865s random time.
Sep 15 12:43:22 ubuntu systemd[1]: Started Daily apt activities.
Sep 15 12:43:22 ubuntu systemd[1]: snapd.refresh.timer: Adding 3h 18min 3.129648s random time.
Sep 15 12:43:22 ubuntu systemd[1]: snapd.refresh.timer: Adding 1h 50min 15.672689s random time.
Sep 15 12:43:22 ubuntu systemd[1]: Started Timer to automatically refresh installed snaps.
Sep 15 12:43:22 ubuntu systemd[1]: Reached target Timers.
Sep 15 12:43:22 ubuntu systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 15 12:43:22 ubuntu systemd[1]: Starting LXD - unix socket.
Sep 15 12:43:22 ubuntu systemd[1]: Listening on UUID daemon activation socket.
Sep 15 12:43:22 ubuntu systemd[1]: Listening on Socket activation for snappy daemon.
Sep 15 12:43:22 ubuntu systemd[1]: Listening on LXD - unix socket.
Sep 15 12:43:22 ubuntu systemd[1]: Reached target Sockets.
Sep 15 12:43:22 ubuntu systemd[1]: Reached target Basic System.
Sep 15 12:43:22 ubuntu systemd[1]: Started Regular background program processing daemon.
Sep 15 12:43:22 ubuntu systemd[1]: Started FUSE filesystem for LXC.
Sep 15 12:43:22 ubuntu systemd[1]: Started D-Bus System Message Bus.
Sep 15 12:43:22 ubuntu cron[706]: (CRON) INFO (pidfile fd = 3)
Sep 15 12:43:22 ubuntu cron[706]: (CRON) INFO (Running @reboot jobs)
Sep 15 12:43:22 ubuntu kernel: cgroup: new mount options do not match the existing superblock, will be ignored
Sep 15 12:43:22 ubuntu lxcfs[707]: hierarchies:
Sep 15 12:43:22 ubuntu lxcfs[707]: 0: memory
Sep 15 12:43:22 ubuntu lxcfs[707]: 1: blkio
Sep 15 12:43:22 ubuntu lxcfs[707]: 2: hugetlb
Sep 15 12:43:22 ubuntu lxcfs[707]: 3: perf_event
Sep 15 12:43:22 ubuntu lxcfs[707]: 4: cpuset
Sep 15 12:43:22 ubuntu lxcfs[707]: 5: devices
Sep 15 12:43:22 ubuntu lxcfs[707]: 6: cpu,cpuacct
Sep 15 12:43:22 ubuntu lxcfs[707]: 7: freezer
Sep 15 12:43:22 ubuntu lxcfs[707]: 8: pids
Sep 15 12:43:22 ubuntu lxcfs[707]: 9: net_cls,net_prio
Sep 15 12:43:22 ubuntu lxcfs[707]: 10: name=systemd
Sep 15 12:43:22 ubuntu dbus[710]: [system] AppArmor D-Bus mediation is enabled
Sep 15 12:43:22 ubuntu systemd[1]: Starting LSB: Record successful boot for GRUB...
Sep 15 12:43:22 ubuntu systemd[1]: Starting System Logging Service...
Sep 15 12:43:22 ubuntu systemd[1]: Started Snappy daemon.
Sep 15 12:43:22 ubuntu systemd[1]: Started ACPI event daemon.
Sep 15 12:43:22 ubuntu systemd[1]: Starting Login Service...
Sep 15 12:43:22 ubuntu systemd[1]: Starting Accounts Service...
Sep 15 12:43:22 ubuntu acpid[732]: starting up with netlink and the input layer
Sep 15 12:43:22 ubuntu systemd[1]: Started Deferred execution scheduler.
Sep 15 12:43:22 ubuntu acpid[732]: 1 rule loaded
Sep 15 12:43:22 ubuntu systemd[1]: Starting LXD - container startup/shutdown...
Sep 15 12:43:22 ubuntu acpid[732]: waiting for events: event logging is off
Sep 15 12:43:22 ubuntu systemd[1]: Started System Logging Service.
Sep 15 12:43:22 ubuntu systemd-logind[734]: Watching system buttons on /dev/input/event0 (Power Button)
Sep 15 12:43:22 ubuntu systemd-logind[734]: New seat seat0.
Sep 15 12:43:22 ubuntu systemd[1]: Started Login Service.
Sep 15 12:43:22 ubuntu grub-common[725]: * Recording successful boot for GRUB
Sep 15 12:43:22 ubuntu dbus[710]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkitd.service'
Sep 15 12:43:22 ubuntu systemd[1]: Starting Authenticate and Authorize Users to Run Privileged Tasks...
Sep 15 12:43:22 ubuntu systemd[1]: Reloading.
Sep 15 12:43:22 ubuntu polkitd[767]: started daemon version 0.105 using authority implementation `local' version `0.105'
Sep 15 12:43:22 ubuntu grub-common[725]: ...done.
Sep 15 12:43:22 ubuntu dbus[710]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Sep 15 12:43:22 ubuntu accounts-daemon[737]: started daemon version 0.6.40
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/system-info
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/login
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/logout
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/icons/{name}/icon
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/find
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/snaps
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/snaps/{name}
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/interfaces
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/assertions
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/assertions/{assertType}
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/events
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/changes/{id}
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/changes
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/create-user
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/buy
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/buy/methods
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:192: DEBUG: adding /v2/snapctl
Sep 15 12:43:22 ubuntu /usr/lib/snapd/snapd[727]: daemon.go:182: DEBUG: init done in 847.546µs
Sep 15 12:43:22 ubuntu systemd[1]: snapd.refresh.timer: Adding 5min 41.137607s random time.
Sep 15 12:43:22 ubuntu systemd[1]: snapd.refresh.timer: Adding 3h 21min 36.368480s random time.
Sep 15 12:43:22 ubuntu systemd[1]: apt-daily.timer: Adding 5h 48min 55.204010s random time.
Sep 15 12:43:22 ubuntu systemd[1]: Started Accounts Service.
Sep 15 12:43:22 ubuntu systemd[1]: Started Authenticate and Authorize Users to Run Privileged Tasks.
Sep 15 12:43:22 ubuntu systemd[1]: Started LSB: Record successful boot for GRUB.
Sep 15 12:43:22 ubuntu systemd[1]: Reloading.
Sep 15 12:43:22 ubuntu systemd[1]: snapd.refresh.timer: Adding 4h 58min 37.862378s random time.
Sep 15 12:43:22 ubuntu systemd[1]: snapd.refresh.timer: Adding 5h 52min 45.028285s random time.
Sep 15 12:43:22 ubuntu systemd[1]: apt-daily.timer: Adding 5h 12min 48.963279s random time.
Sep 15 12:43:22 ubuntu dhclient[850]: Internet Systems Consortium DHCP Client 4.3.3
Sep 15 12:43:22 ubuntu ifup[683]: Internet Systems Consortium DHCP Client 4.3.3
Sep 15 12:43:22 ubuntu dhclient[850]: Copyright 2004-2015 Internet Systems Consortium.
Sep 15 12:43:22 ubuntu ifup[683]: Copyright 2004-2015 Internet Systems Consortium.
Sep 15 12:43:22 ubuntu dhclient[850]: All rights reserved.
Sep 15 12:43:22 ubuntu ifup[683]: All rights reserved.
Sep 15 12:43:22 ubuntu dhclient[850]: For info, please visit https://www.isc.org/software/dhcp/
Sep 15 12:43:22 ubuntu ifup[683]: For info, please visit https://www.isc.org/software/dhcp/
Sep 15 12:43:22 ubuntu dhclient[850]:
Sep 15 12:43:22 ubuntu dhclient[850]: Listening on LPF/ens3/52:54:00:d7:38:db
Sep 15 12:43:22 ubuntu ifup[683]: Listening on LPF/ens3/52:54:00:d7:38:db
Sep 15 12:43:22 ubuntu dhclient[850]: Sending on LPF/ens3/52:54:00:d7:38:db
Sep 15 12:43:22 ubuntu ifup[683]: Sending on LPF/ens3/52:54:00:d7:38:db
Sep 15 12:43:22 ubuntu dhclient[850]: Sending on Socket/fallback
Sep 15 12:43:22 ubuntu ifup[683]: Sending on Socket/fallback
Sep 15 12:43:22 ubuntu dhclient[850]: DHCPDISCOVER on ens3 to 255.255.255.255 port 67 interval 3 (xid=0xa295d84f)
Sep 15 12:43:22 ubuntu ifup[683]: DHCPDISCOVER on ens3 to 255.255.255.255 port 67 interval 3 (xid=0xa295d84f)
Sep 15 12:43:23 ubuntu systemd[1]: Started LXD - container startup/shutdown.
Sep 15 12:43:24 ubuntu dhclient[850]: DHCPREQUEST of 192.168.122.113 on ens3 to 255.255.255.255 port 67 (xid=0x4fd895a2)
Sep 15 12:43:24 ubuntu ifup[683]: DHCPREQUEST of 192.168.122.113 on ens3 to 255.255.255.255 port 67 (xid=0x4fd895a2)
Sep 15 12:43:24 ubuntu ifup[683]: DHCPOFFER of 192.168.122.113 from 192.168.122.1
Sep 15 12:43:24 ubuntu ifup[683]: DHCPACK of 192.168.122.113 from 192.168.122.1
Sep 15 12:43:24 ubuntu dhclient[850]: DHCPOFFER of 192.168.122.113 from 192.168.122.1
Sep 15 12:43:24 ubuntu dhclient[850]: DHCPACK of 192.168.122.113 from 192.168.122.1
Sep 15 12:43:25 ubuntu dhclient[850]: bound to 192.168.122.113 -- renewal in 1630 seconds.
Sep 15 12:43:25 ubuntu ifup[683]: bound to 192.168.122.113 -- renewal in 1630 seconds.
Sep 15 12:43:25 ubuntu systemd[1]: Reloading.
Sep 15 12:43:25 ubuntu systemd[1]: snapd.refresh.timer: Adding 35min 18.216657s random time.
Sep 15 12:43:25 ubuntu systemd[1]: snapd.refresh.timer: Adding 4h 1min 40.611181s random time.
Sep 15 12:43:25 ubuntu systemd[1]: apt-daily.timer: Adding 8h 12min 31.165011s random time.
Sep 15 12:43:25 ubuntu systemd[1]: Reloading.
Sep 15 12:43:25 ubuntu systemd[1]: snapd.refresh.timer: Adding 3h 6min 2.044431s random time.
Sep 15 12:43:25 ubuntu systemd[1]: snapd.refresh.timer: Adding 2h 41min 20.843402s random time.
Sep 15 12:43:25 ubuntu systemd[1]: apt-daily.timer: Adding 3h 6min 49.136033s random time.
Sep 15 12:43:25 ubuntu systemd[1]: Started Raise network interfaces.
Sep 15 12:43:25 ubuntu systemd[1]: Reached target Network.
Sep 15 12:43:25 ubuntu systemd[1]: Starting Network Name Resolution...
Sep 15 12:43:25 ubuntu systemd[1]: Starting Initial cloud-init job (metadata service crawler)...
Sep 15 12:43:25 ubuntu systemd-resolved[975]: Positive Trust Anchors:
Sep 15 12:43:25 ubuntu systemd-resolved[975]: . IN DS 19036 8 2 49aac11d7b6f6446702e54a1607371607a1a41855200fd2ce1cdde32f24e8fb5
Sep 15 12:43:25 ubuntu systemd-resolved[975]: Negative trust anchors: 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa corp home internal intranet lan local private test
Sep 15 12:43:25 ubuntu systemd-resolved[975]: Using system hostname 'ubuntu'.
Sep 15 12:43:25 ubuntu systemd-resolved[975]: Switching to system DNS server 192.168.122.1.
Sep 15 12:43:25 ubuntu systemd[1]: Started Network Name Resolution.
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 running 'init' at Thu, 15 Sep 2016 12:43:25 +0000. Up 8.57 seconds.
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 10832 bytes from /var/lib/cloud/instance/obj.pkl
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /run/cloud-init/.instance-id (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 37 bytes from /run/cloud-init/.instance-id
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: restored from cache with run check: DataSourceNoCloud [seed=/dev/vdb][dsmode=net]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: restored from cache with run check: DataSourceNoCloud [seed=/dev/vdb][dsmode=net]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 3018 bytes from /etc/cloud/cloud.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 3018 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860'
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/datasource (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 65 bytes from /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/datasource
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/datasource - wb: [420] 65 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 65 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 37 bytes from /var/lib/cloud/data/instance-id
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: previous iid found to be f885583e-7b41-11e6-9d2e-ecb1d7746860
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 37 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [420] 37 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 37 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 10934 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] main.py[DEBUG]: [net] init will now be targeting instance id: f885583e-7b41-11e6-9d2e-ecb1d7746860. new=False
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 3018 bytes from /etc/cloud/cloud.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 3018 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/carrier (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 2 bytes from /sys/class/net/ens3/carrier
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/address (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens3/address
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: applying net config names for {'config': [{'mac_address': '52:54:00:d7:38:db', 'type': 'physical', 'subnets': [{'type': 'dhcp'}], 'name': 'ens3'}], 'version': 1}
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/operstate (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 3 bytes from /sys/class/net/ens3/operstate
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens3/address (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens3/address
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: no work necessary for renaming of [['52:54:00:d7:38:db', 'ens3']]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: not a new instance. network config is not applied.
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/user-data.txt - wb: [384] 5188 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 5188 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/user-data.txt.i - wb: [384] 5493 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/vendor-data.txt - wb: [384] 0 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/vendor-data.txt.i - wb: [384] 308 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/consume_data - wb: [420] 24 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/consume_data'>)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/consume-user-data: reading and applying user-data
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/cloud-config-jsonp', 'text/cloud-config'} from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: {'Content-Type': 'text/cloud-config', 'Content-Disposition': 'attachment; filename="part-001"', 'MIME-Version': '1.0'}
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (text/cloud-config, part-001, 3) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 5188 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/cloud-config.txt - wb: [384] 5483 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/consume-user-data: SUCCESS: reading and applying user-data
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/consume-vendor-data: reading and applying vendor-data
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: no vendordata from datasource
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/consume-vendor-data: SUCCESS: reading and applying vendor-data
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 3018 bytes from /etc/cloud/cloud.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 3018 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 5483 bytes from /var/lib/cloud/instance/cloud-config.txt
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 5483 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 5483 bytes from /var/lib/cloud/instance/cloud-config.txt
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 5483 with allowed root types (<class 'dict'>,)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-migrator: running config-migrator with frequency always
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7fcf245adfd0>)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-migrator: SUCCESS: config-migrator ran successfully
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] stages.py[DEBUG]: Running module ubuntu-init-switch (<module 'cloudinit.config.cc_ubuntu_init_switch' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ubuntu_init_switch.py'>) with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-ubuntu-init-switch: running config-ubuntu-init-switch with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ubuntu_init_switch - wb: [420] 24 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-ubuntu-init-switch using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ubuntu_init_switch'>)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] cc_ubuntu_init_switch.py[DEBUG]: ubuntu-init-switch: target=None. nothing to do
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-ubuntu-init-switch: SUCCESS: config-ubuntu-init-switch ran successfully
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-seed_random: running config-seed_random with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_seed_random - wb: [420] 24 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_seed_random'>)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] cc_seed_random.py[DEBUG]: no command provided
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-seed_random: SUCCESS: config-seed_random ran successfully
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-bootcmd: running config-bootcmd with frequency always
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7fcf245ad898>)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-bootcmd: SUCCESS: config-bootcmd ran successfully
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-write-files: running config-write-files with frequency once-per-instance
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_write_files - wb: [420] 22 bytes
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_write_files'>)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-write-files: SUCCESS: config-write-files ran successfully
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-growpart: running config-growpart with frequency always
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7fcf245b4e80>)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] cc_growpart.py[DEBUG]: No 'growpart' entry in cfg. Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/976/mountinfo (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 2888 bytes from /proc/976/mountinfo
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/block/vda1/partition (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 2 bytes from /sys/class/block/vda1/partition
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/dev (quiet=False)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 6 bytes from /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/dev
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/vda', '1'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:25 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['growpart', '/dev/vda', '1'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: resize_devices took 0.385 seconds
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] cc_growpart.py[INFO]: '/' resized: changed (/dev/vda, 1) from 2244984320 to 8473525760
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-growpart: SUCCESS: config-growpart ran successfully
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-resizefs: running config-resizefs with frequency always
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7fcf245adc88>)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/976/mountinfo (quiet=False)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 2888 bytes from /proc/976/mountinfo
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] cc_resizefs.py[DEBUG]: resize_info: dev=/dev/vda1 mnt_point=/ path=/
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 154 bytes from /proc/1/environ
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 888 bytes from /proc/self/status
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/vda1
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ('resize2fs', '/dev/vda1') with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:26 ubuntu kernel: EXT4-fs (vda1): resizing filesystem from 548091 to 2068731 blocks
Sep 15 12:43:26 ubuntu kernel: EXT4-fs (vda1): resized filesystem to 2068731
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Resizing took 0.343 seconds
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-resizefs: SUCCESS: config-resizefs ran successfully
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-set_hostname: running config-set_hostname with frequency once-per-instance
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_set_hostname - wb: [420] 24 bytes
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_set_hostname'>)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 221 bytes from /etc/hosts
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] cc_set_hostname.py[DEBUG]: Setting the hostname to ubuntu (sm-y2)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 7 bytes from /etc/hostname
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/hostname - wb: [420] 6 bytes
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Non-persistently setting the system hostname to sm-y2
Sep 15 12:43:26 ubuntu cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['hostname', 'sm-y2'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:26 sm-y2 systemd-resolved[975]: System hostname changed to 'sm-y2'.
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-set_hostname: SUCCESS: config-set_hostname ran successfully
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-update_hostname: running config-update_hostname with frequency always
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7fcf245ad358>)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 221 bytes from /etc/hosts
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] cc_update_hostname.py[DEBUG]: Updating hostname to sm-y2 (sm-y2)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 6 bytes from /etc/hostname
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Attempting to update hostname to sm-y2 in 1 files
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [420] 6 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-update_hostname: SUCCESS: config-update_hostname ran successfully
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-update_etc_hosts: running config-update_etc_hosts with frequency always
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7fcf245ad4a8>)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 221 bytes from /etc/hosts
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] cc_update_etc_hosts.py[DEBUG]: Managing localhost in /etc/hosts
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 221 bytes from /etc/hosts
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/hosts - wb: [420] 244 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-update_etc_hosts: SUCCESS: config-update_etc_hosts ran successfully
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-ca-certs: running config-ca-certs with frequency once-per-instance
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ca_certs - wb: [420] 24 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ca_certs'>)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-ca-certs: SUCCESS: config-ca-certs ran successfully
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-rsyslog: running config-rsyslog with frequency once-per-instance
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_rsyslog - wb: [420] 24 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_rsyslog'>)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] cc_rsyslog.py[DEBUG]: Skipping module named rsyslog, no 'rsyslog' key in configuration
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-rsyslog: SUCCESS: config-rsyslog ran successfully
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-users-groups: running config-users-groups with frequency once-per-instance
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_users_groups - wb: [420] 24 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_users_groups'>)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] __init__.py[DEBUG]: Adding user ubuntu
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running hidden command to protect sensitive input/output logstring: ['useradd', 'ubuntu', '--comment', 'Ubuntu', '--shell', '/bin/bash', '--groups', 'adm,audio,cdrom,dialout,dip,floppy,lxd,netdev,plugdev,sudo,video', '-m']
Sep 15 12:43:26 sm-y2 useradd[1073]: new group: name=ubuntu, GID=1000
Sep 15 12:43:26 sm-y2 useradd[1073]: new user: name=ubuntu, UID=1000, GID=1000, home=/home/ubuntu, shell=/bin/bash
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'adm'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'dialout'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'cdrom'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'floppy'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'sudo'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'audio'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'dip'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'video'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'plugdev'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'netdev'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to group 'lxd'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'adm'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'dialout'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'cdrom'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'floppy'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'sudo'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'audio'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'dip'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'video'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'plugdev'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'netdev'
Sep 15 12:43:26 sm-y2 useradd[1073]: add 'ubuntu' to shadow group 'lxd'
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Running command ['passwd', '-l', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:26 sm-y2 passwd[1078]: password for 'ubuntu' changed by 'root'
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 755 bytes from /etc/sudoers
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - wb: [288] 123 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-users-groups: SUCCESS: config-users-groups ran successfully
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] 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
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-ssh: running config-ssh with frequency once-per-instance
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ssh - wb: [420] 24 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ssh'>)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/ssh/ssh_host_dsa_key.pub - wb: [384] 604 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/ssh/ssh_host_dsa_key - wb: [384] 672 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/ssh/ssh_host_ecdsa_key - wb: [384] 227 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/ssh/ssh_host_ecdsa_key.pub - wb: [384] 176 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/ssh/ssh_host_rsa_key.pub - wb: [384] 396 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/ssh/ssh_host_ed25519_key.pub - wb: [384] 96 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/ssh/ssh_host_rsa_key - wb: [384] 1679 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/ssh/ssh_host_ed25519_key - wb: [384] 411 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh to 1000:1000
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 2506 bytes from /etc/ssh/sshd_config
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [384] 396 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1000:1000
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /root/.ssh to 0:0
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 2506 bytes from /etc/ssh/sshd_config
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [384] 551 bytes
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-ssh: SUCCESS: config-ssh ran successfully
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] main.py[DEBUG]: Ran 14 modules with 0 failures
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: Read 10 bytes from /proc/uptime
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'init' took 1.153 seconds (1.16)
Sep 15 12:43:26 sm-y2 cloud-init[976]: [CLOUDINIT] handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
Sep 15 12:43:26 sm-y2 cloud-init[976]: Cloud-init v. 0.7.7 running 'init' at Thu, 15 Sep 2016 12:43:25 +0000. Up 8.57 seconds.
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: ++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: +--------+------+-----------------+---------------+-------+-------------------+
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: +--------+------+-----------------+---------------+-------+-------------------+
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: | lo: | True | 127.0.0.1 | 255.0.0.0 | . | . |
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: | lo: | True | . | . | d | . |
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: | ens3: | True | 192.168.122.113 | 255.255.255.0 | . | 52:54:00:d7:38:db |
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: | ens3: | True | . | . | d | 52:54:00:d7:38:db |
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: +--------+------+-----------------+---------------+-------+-------------------+
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: +-------+---------------+---------------+---------------+-----------+-------+
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: +-------+---------------+---------------+---------------+-----------+-------+
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: | 0 | 0.0.0.0 | 192.168.122.1 | 0.0.0.0 | ens3 | UG |
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: | 1 | 192.168.122.0 | 0.0.0.0 | 255.255.255.0 | ens3 | U |
Sep 15 12:43:26 sm-y2 cloud-init[976]: ci-info: +-------+---------------+---------------+---------------+-----------+-------+
Sep 15 12:43:26 sm-y2 systemd[1]: Started Initial cloud-init job (metadata service crawler).
Sep 15 12:43:26 sm-y2 systemd[1]: Reached target Network is Online.
Sep 15 12:43:26 sm-y2 systemd[1]: Starting Pollinate to seed the pseudo random number generator...
Sep 15 12:43:26 sm-y2 systemd[1]: Starting iSCSI initiator daemon (iscsid)...
Sep 15 12:43:26 sm-y2 systemd[1]: Reached target Cloud-config availability.
Sep 15 12:43:26 sm-y2 systemd[1]: Starting Apply the settings specified in cloud-config...
Sep 15 12:43:26 sm-y2 iscsid[1101]: iSCSI logger with pid=1104 started!
Sep 15 12:43:26 sm-y2 systemd[1]: iscsid.service: Failed to read PID from file /run/iscsid.pid: Invalid argument
Sep 15 12:43:26 sm-y2 iscsid[1104]: iSCSI daemon with pid=1105 started!
Sep 15 12:43:26 sm-y2 systemd[1]: Started iSCSI initiator daemon (iscsid).
Sep 15 12:43:26 sm-y2 systemd[1]: Starting Login to default iSCSI targets...
Sep 15 12:43:26 sm-y2 iscsiadm[1111]: iscsiadm: No records found
Sep 15 12:43:26 sm-y2 systemd[1]: Started Login to default iSCSI targets.
Sep 15 12:43:26 sm-y2 systemd[1]: Reached target Remote File Systems (Pre).
Sep 15 12:43:26 sm-y2 systemd[1]: Reached target Remote File Systems.
Sep 15 12:43:26 sm-y2 systemd[1]: Starting Permit User Sessions...
Sep 15 12:43:26 sm-y2 systemd[1]: Starting LSB: daemon to balance interrupts for SMP systems...
Sep 15 12:43:26 sm-y2 systemd[1]: Starting LSB: automatic crash report generation...
Sep 15 12:43:26 sm-y2 systemd[1]: Started Permit User Sessions.
Sep 15 12:43:26 sm-y2 systemd[1]: Starting Terminate Plymouth Boot Screen...
Sep 15 12:43:26 sm-y2 systemd[1]: Starting Hold until boot process finishes up...
Sep 15 12:43:26 sm-y2 systemd[1]: Started Hold until boot process finishes up.
Sep 15 12:43:26 sm-y2 systemd[1]: Starting Set console scheme...
Sep 15 12:43:26 sm-y2 systemd[1]: Started Serial Getty on ttyS0.
Sep 15 12:43:26 sm-y2 systemd[1]: Started Terminate Plymouth Boot Screen.
Sep 15 12:43:26 sm-y2 systemd[1]: Started Set console scheme.
Sep 15 12:43:26 sm-y2 systemd[1]: Created slice system-getty.slice.
Sep 15 12:43:26 sm-y2 systemd[1]: Started Getty on tty1.
Sep 15 12:43:26 sm-y2 systemd[1]: Reached target Login Prompts.
Sep 15 12:43:26 sm-y2 apport[1123]: * Starting automatic crash report generation: apport
Sep 15 12:43:26 sm-y2 irqbalance[1119]: * Starting SMP IRQ Balancer: irqbalance
Sep 15 12:43:26 sm-y2 apport[1123]: ...done.
Sep 15 12:43:26 sm-y2 systemd[1]: Started LSB: automatic crash report generation.
Sep 15 12:43:26 sm-y2 /usr/sbin/irqbalance[1153]: Balancing is ineffective on systems with a single cpu. Shutting down
Sep 15 12:43:26 sm-y2 irqbalance[1119]: ...done.
Sep 15 12:43:26 sm-y2 systemd[1]: Started LSB: daemon to balance interrupts for SMP systems.
Sep 15 12:43:26 sm-y2 pollinate[1168]: client sent challenge to [https://entropy.ubuntu.com/]
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 running 'modules:config' at Thu, 15 Sep 2016 12:43:27 +0000. Up 10.20 seconds.
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-emit_upstart: running config-emit_upstart with frequency always
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7f0c11426128>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_emit_upstart.py[DEBUG]: not upstart system, 'emit_upstart' disabled
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-emit_upstart: SUCCESS: config-emit_upstart ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-disk_setup: running config-disk_setup with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_disk_setup - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-disk_setup using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_disk_setup'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-disk_setup: SUCCESS: config-disk_setup ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-mounts: running config-mounts with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_mounts - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-mounts using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_mounts'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of ephemeral0
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount ephemeral0
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_mounts.py[DEBUG]: Attempting to determine the real name of swap
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount swap
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_mounts.py[DEBUG]: no need to setup swap
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_mounts.py[DEBUG]: No modifications to fstab needed.
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-mounts: SUCCESS: config-mounts ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-ntp: running config-ntp with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ntp - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-ntp using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ntp'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_ntp.py[DEBUG]: Skipping module named ntp,not present or disabled by cfg
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-ntp: SUCCESS: config-ntp ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-ssh-import-id: running config-ssh-import-id with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ssh_import_id - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ssh_import_id'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-ssh-import-id: SUCCESS: config-ssh-import-id ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-locale: running config-locale with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_locale - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_locale'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Running command ['locale-gen', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: Generating locales (this might take a while)...
Sep 15 12:43:27 sm-y2 cloud-init[1092]: en_US.UTF-8... done
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Running command ['update-locale', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: Generation complete.
Sep 15 12:43:27 sm-y2 kernel: random: nonblocking pool is initialized
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/default/locale - wb: [420] 87 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-locale: SUCCESS: config-locale ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-set-passwords: running config-set-passwords with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_set_passwords - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_set_passwords'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-set-passwords: SUCCESS: config-set-passwords ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-grub-dpkg: running config-grub-dpkg with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_grub_dpkg - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_grub_dpkg'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/vda','false'
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-grub-dpkg: SUCCESS: config-grub-dpkg ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-apt-pipelining: running config-apt-pipelining with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_apt_pipelining - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_apt_pipelining'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [420] 80 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-apt-pipelining: SUCCESS: config-apt-pipelining ran successfully
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-apt-configure: running config-apt-configure with frequency once-per-instance
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_apt_configure - wb: [420] 25 bytes
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_apt_configure'>)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_apt_configure.py[DEBUG]: handling apt (module apt-configure) with apt config '{}'
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Running command ['lsb_release', '--all'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:27 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_apt_configure.py[DEBUG]: got primary mirror: None
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_apt_configure.py[DEBUG]: got security mirror: None
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] __init__.py[DEBUG]: filtered distro mirror info: {'security': 'http://security.ubuntu.com/ubuntu', 'primary': 'http://archive.ubuntu.com/ubuntu'}
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_apt_configure.py[DEBUG]: Apt Mirror info: {'security': 'http://security.ubuntu.com/ubuntu', 'SECURITY': 'http://security.ubuntu.com/ubuntu', 'primary': 'http://archive.ubuntu.com/ubuntu', 'MIRROR': 'http://archive.ubuntu.com/ubuntu', 'PRIMARY': 'http://archive.ubuntu.com/ubuntu'}
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_apt_configure.py[DEBUG]: debconf_selections was not set in config
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_apt_configure.py[INFO]: No custom template provided, fall back to builtin
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/templates/sources.list.ubuntu.tmpl (quiet=False)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Read 2841 bytes from /etc/cloud/templates/sources.list.ubuntu.tmpl
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/sources.list - wb: [420] 3147 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-apt-configure: SUCCESS: config-apt-configure ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-timezone: running config-timezone with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_timezone - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_timezone'>)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-timezone: SUCCESS: config-timezone ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-disable-ec2-metadata: running config-disable-ec2-metadata with frequency always
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7f0c11418240>)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-disable-ec2-metadata: SUCCESS: config-disable-ec2-metadata ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-runcmd: running config-runcmd with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_runcmd - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_runcmd'>)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_runcmd.py[DEBUG]: Skipping module named runcmd, no 'runcmd' key in configuration
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-runcmd: SUCCESS: config-runcmd ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-byobu: running config-byobu with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_byobu - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_byobu'>)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-byobu: SUCCESS: config-byobu ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] main.py[DEBUG]: Ran 14 modules with 0 failures
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: Read 11 bytes from /proc/uptime
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 0.875 seconds (0.87)
Sep 15 12:43:28 sm-y2 cloud-init[1092]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config: SUCCESS: running modules for config
Sep 15 12:43:28 sm-y2 cloud-init[1092]: Cloud-init v. 0.7.7 running 'modules:config' at Thu, 15 Sep 2016 12:43:27 +0000. Up 10.20 seconds.
Sep 15 12:43:28 sm-y2 systemd[1]: Started Apply the settings specified in cloud-config.
Sep 15 12:43:28 sm-y2 pollinate[1227]: client verified challenge/response with [https://entropy.ubuntu.com/]
Sep 15 12:43:28 sm-y2 pollinate[1234]: client hashed response from [https://entropy.ubuntu.com/]
Sep 15 12:43:28 sm-y2 pollinate[1235]: client successfully seeded [/dev/urandom]
Sep 15 12:43:28 sm-y2 systemd[1]: Started Pollinate to seed the pseudo random number generator.
Sep 15 12:43:28 sm-y2 systemd[1]: Starting OpenBSD Secure Shell server...
Sep 15 12:43:28 sm-y2 sshd[1239]: Server listening on 0.0.0.0 port 22.
Sep 15 12:43:28 sm-y2 sshd[1239]: Server listening on :: port 22.
Sep 15 12:43:28 sm-y2 systemd[1]: Started OpenBSD Secure Shell server.
Sep 15 12:43:28 sm-y2 systemd[1]: Reached target Multi-User System.
Sep 15 12:43:28 sm-y2 systemd[1]: Starting Execute cloud user/final scripts...
Sep 15 12:43:28 sm-y2 systemd[1]: Reached target Graphical Interface.
Sep 15 12:43:28 sm-y2 systemd[1]: Starting Update UTMP about System Runlevel Changes...
Sep 15 12:43:28 sm-y2 systemd[1]: Started Update UTMP about System Runlevel Changes.
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 running 'modules:final' at Thu, 15 Sep 2016 12:43:28 +0000. Up 11.53 seconds.
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-snappy: running config-snappy with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_snappy - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-snappy using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_snappy'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/system-image/channel.ini (quiet=True)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Read 0 bytes from /etc/system-image/channel.ini
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_snappy.py[DEBUG]: snappy: 'auto' mode, and system not snappy
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-snappy: SUCCESS: config-snappy ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-package-update-upgrade-install: running config-package-update-upgrade-install with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_package_update_upgrade_install - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_package_update_upgrade_install'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-package-update-upgrade-install: SUCCESS: config-package-update-upgrade-install ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-fan: running config-fan with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_fan - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-fan using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_fan'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_fan.py[DEBUG]: fan: no 'fan' config entry. disabling
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-fan: SUCCESS: config-fan ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-landscape: running config-landscape with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_landscape - wb: [420] 24 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_landscape'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-landscape: SUCCESS: config-landscape ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-lxd: running config-lxd with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_lxd - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-lxd using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_lxd'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_lxd.py[DEBUG]: Skipping module named lxd, not present or disabled by cfg
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-lxd: SUCCESS: config-lxd ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-puppet: running config-puppet with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_puppet - wb: [420] 24 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_puppet'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-puppet: SUCCESS: config-puppet ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-chef: running config-chef with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_chef - wb: [420] 24 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_chef'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-chef: SUCCESS: config-chef ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-salt-minion: running config-salt-minion with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_salt_minion - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_salt_minion'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-salt-minion: SUCCESS: config-salt-minion ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-mcollective: running config-mcollective with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_mcollective - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_mcollective'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-mcollective: SUCCESS: config-mcollective ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-rightscale_userdata: running config-rightscale_userdata with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_rightscale_userdata - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_rightscale_userdata'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-rightscale_userdata: SUCCESS: config-rightscale_userdata ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-vendor: running config-scripts-vendor with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_scripts_vendor - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_scripts_vendor'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-vendor: SUCCESS: config-scripts-vendor ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-per-once: running config-scripts-per-once with frequency once
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-per-once: SUCCESS: config-scripts-per-once ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-per-boot: running config-scripts-per-boot with frequency always
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f555cdfb780>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-per-boot: SUCCESS: config-scripts-per-boot ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-per-instance: running config-scripts-per-instance with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_scripts_per_instance - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_scripts_per_instance'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-per-instance: SUCCESS: config-scripts-per-instance ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-user: running config-scripts-user with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_scripts_user - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_scripts_user'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-user: SUCCESS: config-scripts-user ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-ssh-authkey-fingerprints: running config-ssh-authkey-fingerprints with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ssh_authkey_fingerprints - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_ssh_authkey_fingerprints'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Read 2506 bytes from /etc/ssh/sshd_config
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Read 396 bytes from /home/ubuntu/.ssh/authorized_keys
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-ssh-authkey-fingerprints: SUCCESS: config-ssh-authkey-fingerprints ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-keys-to-console: running config-keys-to-console with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_keys_to_console - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_keys_to_console'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Running command ['/usr/lib/cloud-init/write-ssh-key-fingerprints', '', 'ssh-dss'] with allowed return codes [0] (shell=False, capture=True)
Sep 15 12:43:28 sm-y2 ec2[1258]:
Sep 15 12:43:28 sm-y2 ec2[1258]: #############################################################
Sep 15 12:43:28 sm-y2 ec2[1258]: -----BEGIN SSH HOST KEY FINGERPRINTS-----
Sep 15 12:43:28 sm-y2 ec2[1258]: 1024 SHA256:PNRP7km9m4mmhFQMH0li7oYejgihqZFffz89Ec1LPBw root@localhost (DSA)
Sep 15 12:43:28 sm-y2 ec2[1258]: 256 SHA256:bFSAR0P+uK1KtcJPM76lHJaoYGT9xivukEcDOgjpNEY root@localhost (ECDSA)
Sep 15 12:43:28 sm-y2 ec2[1258]: 256 SHA256:8wuIbW9TQBHv3ikuJ62s5ND9Xp6bYgcPiFSaRvsTYbE root@localhost (ED25519)
Sep 15 12:43:28 sm-y2 ec2[1258]: 2048 SHA256:pt2PArR+3BOHqHZ91Fzam4uoUaOF9cUugcGAe++w6xg root@localhost (RSA)
Sep 15 12:43:28 sm-y2 ec2[1258]: -----END SSH HOST KEY FINGERPRINTS-----
Sep 15 12:43:28 sm-y2 ec2[1258]: #############################################################
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-keys-to-console: SUCCESS: config-keys-to-console ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-phone-home: running config-phone-home with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_phone_home - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_phone_home'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-phone-home: SUCCESS: config-phone-home ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-final-message: running config-final-message with frequency always
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f555cda0eb8>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Read 11 bytes from /proc/uptime
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 finished at Thu, 15 Sep 2016 12:43:28 +0000. Datasource DataSourceNoCloud [seed=/dev/vdb][dsmode=net]. Up 11.66 seconds
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 51 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-final-message: SUCCESS: config-final-message ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] 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
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-power-state-change: running config-power-state-change with frequency once-per-instance
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_power_state_change - wb: [420] 25 bytes
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/f885583e-7b41-11e6-9d2e-ecb1d7746860/sem/config_power_state_change'>)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-power-state-change: SUCCESS: config-power-state-change ran successfully
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] main.py[DEBUG]: Ran 20 modules with 0 failures
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: Read 11 bytes from /proc/uptime
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 0.134 seconds (0.14)
Sep 15 12:43:28 sm-y2 cloud-init[1242]: [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final: SUCCESS: running modules for final
Sep 15 12:43:28 sm-y2 cloud-init[1242]: Cloud-init v. 0.7.7 running 'modules:final' at Thu, 15 Sep 2016 12:43:28 +0000. Up 11.53 seconds.
Sep 15 12:43:28 sm-y2 cloud-init[1242]: Cloud-init v. 0.7.7 finished at Thu, 15 Sep 2016 12:43:28 +0000. Datasource DataSourceNoCloud [seed=/dev/vdb][dsmode=net]. Up 11.66 seconds
Sep 15 12:43:28 sm-y2 systemd[1]: Started Execute cloud user/final scripts.
Sep 15 12:43:28 sm-y2 systemd[1]: Startup finished in 3.559s (kernel) + 8.154s (userspace) = 11.713s.
Sep 15 12:43:45 sm-y2 sshd[1273]: Accepted publickey for ubuntu from 192.168.122.1 port 39438 ssh2: RSA SHA256:eHCzeGhZ8g5j6zdPuftbToIZfGBM7Y+4J9AH/DnG/b8
Sep 15 12:43:45 sm-y2 sshd[1273]: pam_unix(sshd:session): session opened for user ubuntu by (uid=0)
Sep 15 12:43:45 sm-y2 systemd[1]: Created slice User Slice of ubuntu.
Sep 15 12:43:45 sm-y2 systemd[1]: Starting User Manager for UID 1000...
Sep 15 12:43:45 sm-y2 systemd[1275]: pam_unix(systemd-user:session): session opened for user ubuntu by (uid=0)
Sep 15 12:43:45 sm-y2 systemd[1]: Started Session 1 of user ubuntu.
Sep 15 12:43:45 sm-y2 systemd-logind[734]: New session 1 of user ubuntu.
Sep 15 12:43:45 sm-y2 systemd[1275]: Reached target Paths.
Sep 15 12:43:45 sm-y2 systemd[1275]: Reached target Sockets.
Sep 15 12:43:45 sm-y2 systemd[1275]: Reached target Timers.
Sep 15 12:43:45 sm-y2 systemd[1275]: Reached target Basic System.
Sep 15 12:43:45 sm-y2 systemd[1275]: Reached target Default.
Sep 15 12:43:45 sm-y2 systemd[1275]: Startup finished in 19ms.
Sep 15 12:43:45 sm-y2 systemd[1]: Started User Manager for UID 1000.
Sep 15 12:43:51 sm-y2 systemd-timesyncd[505]: Synchronized to time server 91.189.89.199:123 (ntp.ubuntu.com).
|