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 | -- Logs begin at Tue 2015-08-11 15:57:43 UTC, end at Tue 2015-08-11 15:58:56 UTC. --
Aug 11 15:57:43 lw1 systemd-journal[322]: Runtime journal (/run/log/journal/) is currently using 4.9M.
Maximum allowed usage is set to 39.5M.
Leaving at least 59.2M free (of currently available 390.1M of space).
Enforced usage limit is thus 39.5M.
Aug 11 15:57:43 lw1 systemd-journal[322]: Permanent journal (/var/log/journal/) is currently using 8.0M.
Maximum allowed usage is set to 2.9G.
Leaving at least 4.0G free (of currently available 25.1G of space).
Enforced usage limit is thus 2.9G.
Aug 11 15:57:43 lw1 systemd-journal[322]: Time spent on flushing to /var is 495us for 2 entries.
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys cpuset
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys cpu
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys cpuacct
Aug 11 15:57:43 lw1 kernel: Linux version 4.1.0-3-generic (buildd@lgw01-43) (gcc version 4.9.3 (Ubuntu 4.9.3-2ubuntu1) ) #3-Ubuntu SMP Tue Jul 28 12:25:10 UTC 2015 (Ubuntu 4.1.0-3.3-generic 4.1.3)
Aug 11 15:57:43 lw1 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic root=UUID=2a7a888e-6292-491b-a2ef-c9b001174905 ro console=tty1 console=ttyS0
Aug 11 15:57:43 lw1 kernel: KERNEL supported cpus:
Aug 11 15:57:43 lw1 kernel: Intel GenuineIntel
Aug 11 15:57:43 lw1 kernel: AMD AuthenticAMD
Aug 11 15:57:43 lw1 kernel: Centaur CentaurHauls
Aug 11 15:57:43 lw1 kernel: e820: BIOS-provided physical RAM map:
Aug 11 15:57:43 lw1 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Aug 11 15:57:43 lw1 kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Aug 11 15:57:43 lw1 kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Aug 11 15:57:43 lw1 kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bfffdfff] usable
Aug 11 15:57:43 lw1 kernel: BIOS-e820: [mem 0x00000000bfffe000-0x00000000bfffffff] reserved
Aug 11 15:57:43 lw1 kernel: BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
Aug 11 15:57:43 lw1 kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
Aug 11 15:57:43 lw1 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
Aug 11 15:57:43 lw1 kernel: NX (Execute Disable) protection: active
Aug 11 15:57:43 lw1 kernel: SMBIOS 2.4 present.
Aug 11 15:57:43 lw1 kernel: DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Bochs 01/01/2011
Aug 11 15:57:43 lw1 kernel: Hypervisor detected: KVM
Aug 11 15:57:43 lw1 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Aug 11 15:57:43 lw1 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Aug 11 15:57:43 lw1 kernel: AGP: No AGP bridge found
Aug 11 15:57:43 lw1 kernel: e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
Aug 11 15:57:43 lw1 kernel: MTRR default type: write-back
Aug 11 15:57:43 lw1 kernel: MTRR fixed ranges enabled:
Aug 11 15:57:43 lw1 kernel: 00000-9FFFF write-back
Aug 11 15:57:43 lw1 kernel: A0000-BFFFF uncachable
Aug 11 15:57:43 lw1 kernel: C0000-FFFFF write-protect
Aug 11 15:57:43 lw1 kernel: MTRR variable ranges enabled:
Aug 11 15:57:43 lw1 kernel: 0 base 00C0000000 mask FFC0000000 uncachable
Aug 11 15:57:43 lw1 kernel: 1 disabled
Aug 11 15:57:43 lw1 kernel: 2 disabled
Aug 11 15:57:43 lw1 kernel: 3 disabled
Aug 11 15:57:43 lw1 kernel: 4 disabled
Aug 11 15:57:43 lw1 kernel: 5 disabled
Aug 11 15:57:43 lw1 kernel: 6 disabled
Aug 11 15:57:43 lw1 kernel: 7 disabled
Aug 11 15:57:43 lw1 kernel: PAT not supported by CPU.
Aug 11 15:57:43 lw1 kernel: e820: last_pfn = 0xbfffe max_arch_pfn = 0x400000000
Aug 11 15:57:43 lw1 kernel: found SMP MP-table at [mem 0x000f0b50-0x000f0b5f] mapped at [ffff8800000f0b50]
Aug 11 15:57:43 lw1 kernel: Scanning 1 areas for low memory corruption
Aug 11 15:57:43 lw1 kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
Aug 11 15:57:43 lw1 kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
Aug 11 15:57:43 lw1 kernel: [mem 0x00000000-0x000fffff] page 4k
Aug 11 15:57:43 lw1 kernel: BRK [0x01ffe000, 0x01ffefff] PGTABLE
Aug 11 15:57:43 lw1 kernel: BRK [0x01fff000, 0x01ffffff] PGTABLE
Aug 11 15:57:43 lw1 kernel: BRK [0x02000000, 0x02000fff] PGTABLE
Aug 11 15:57:43 lw1 kernel: init_memory_mapping: [mem 0x13fe00000-0x13fffffff]
Aug 11 15:57:43 lw1 kernel: [mem 0x13fe00000-0x13fffffff] page 2M
Aug 11 15:57:43 lw1 kernel: BRK [0x02001000, 0x02001fff] PGTABLE
Aug 11 15:57:43 lw1 kernel: init_memory_mapping: [mem 0x120000000-0x13fdfffff]
Aug 11 15:57:43 lw1 kernel: [mem 0x120000000-0x13fdfffff] page 2M
Aug 11 15:57:43 lw1 kernel: init_memory_mapping: [mem 0x00100000-0xbfffdfff]
Aug 11 15:57:43 lw1 kernel: [mem 0x00100000-0x001fffff] page 4k
Aug 11 15:57:43 lw1 kernel: [mem 0x00200000-0xbfdfffff] page 2M
Aug 11 15:57:43 lw1 kernel: [mem 0xbfe00000-0xbfffdfff] page 4k
Aug 11 15:57:43 lw1 kernel: init_memory_mapping: [mem 0x100000000-0x11fffffff]
Aug 11 15:57:43 lw1 kernel: [mem 0x100000000-0x11fffffff] page 2M
Aug 11 15:57:43 lw1 kernel: RAMDISK: [mem 0x36bce000-0x375defff]
Aug 11 15:57:43 lw1 kernel: ACPI: Early table checksum verification disabled
Aug 11 15:57:43 lw1 kernel: ACPI: RSDP 0x00000000000F09A0 000014 (v00 BOCHS )
Aug 11 15:57:43 lw1 kernel: ACPI: RSDT 0x00000000BFFFFBC1 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)
Aug 11 15:57:43 lw1 kernel: ACPI: FACP 0x00000000BFFFF1C0 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)
Aug 11 15:57:43 lw1 kernel: ACPI: DSDT 0x00000000BFFFE040 001180 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)
Aug 11 15:57:43 lw1 kernel: ACPI: FACS 0x00000000BFFFE000 000040
Aug 11 15:57:43 lw1 kernel: ACPI: SSDT 0x00000000BFFFF234 0008DD (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001)
Aug 11 15:57:43 lw1 kernel: ACPI: APIC 0x00000000BFFFFB11 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)
Aug 11 15:57:43 lw1 kernel: ACPI: HPET 0x00000000BFFFFB89 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001)
Aug 11 15:57:43 lw1 kernel: ACPI: Local APIC address 0xfee00000
Aug 11 15:57:43 lw1 kernel: No NUMA configuration found
Aug 11 15:57:43 lw1 kernel: Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
Aug 11 15:57:43 lw1 kernel: NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffcfff]
Aug 11 15:57:43 lw1 kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00
Aug 11 15:57:43 lw1 kernel: kvm-clock: cpu 0, msr 1:3fff4001, primary cpu clock
Aug 11 15:57:43 lw1 kernel: clocksource kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
Aug 11 15:57:43 lw1 kernel: [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013b600000-ffff88013f5fffff] on node 0
Aug 11 15:57:43 lw1 kernel: Zone ranges:
Aug 11 15:57:43 lw1 kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
Aug 11 15:57:43 lw1 kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Aug 11 15:57:43 lw1 kernel: Normal [mem 0x0000000100000000-0x000000013fffffff]
Aug 11 15:57:43 lw1 kernel: Movable zone start for each node
Aug 11 15:57:43 lw1 kernel: Early memory node ranges
Aug 11 15:57:43 lw1 kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
Aug 11 15:57:43 lw1 kernel: node 0: [mem 0x0000000000100000-0x00000000bfffdfff]
Aug 11 15:57:43 lw1 kernel: node 0: [mem 0x0000000100000000-0x000000013fffffff]
Aug 11 15:57:43 lw1 kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
Aug 11 15:57:43 lw1 kernel: On node 0 totalpages: 1048476
Aug 11 15:57:43 lw1 kernel: DMA zone: 64 pages used for memmap
Aug 11 15:57:43 lw1 kernel: DMA zone: 21 pages reserved
Aug 11 15:57:43 lw1 kernel: DMA zone: 3998 pages, LIFO batch:0
Aug 11 15:57:43 lw1 kernel: DMA32 zone: 12224 pages used for memmap
Aug 11 15:57:43 lw1 kernel: DMA32 zone: 782334 pages, LIFO batch:31
Aug 11 15:57:43 lw1 kernel: Normal zone: 4096 pages used for memmap
Aug 11 15:57:43 lw1 kernel: Normal zone: 262144 pages, LIFO batch:31
Aug 11 15:57:43 lw1 kernel: ACPI: PM-Timer IO Port: 0xb008
Aug 11 15:57:43 lw1 kernel: ACPI: Local APIC address 0xfee00000
Aug 11 15:57:43 lw1 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
Aug 11 15:57:43 lw1 kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
Aug 11 15:57:43 lw1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 11 15:57:43 lw1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
Aug 11 15:57:43 lw1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 11 15:57:43 lw1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
Aug 11 15:57:43 lw1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Aug 11 15:57:43 lw1 kernel: ACPI: IRQ0 used by override.
Aug 11 15:57:43 lw1 kernel: ACPI: IRQ5 used by override.
Aug 11 15:57:43 lw1 kernel: ACPI: IRQ9 used by override.
Aug 11 15:57:43 lw1 kernel: ACPI: IRQ10 used by override.
Aug 11 15:57:43 lw1 kernel: ACPI: IRQ11 used by override.
Aug 11 15:57:43 lw1 kernel: Using ACPI (MADT) for SMP configuration information
Aug 11 15:57:43 lw1 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Aug 11 15:57:43 lw1 kernel: smpboot: Allowing 1 CPUs, 0 hotplug CPUs
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0xbfffe000-0xbfffffff]
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0xc0000000-0xfeffbfff]
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0xfeffc000-0xfeffffff]
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0xff000000-0xfffbffff]
Aug 11 15:57:43 lw1 kernel: PM: Registered nosave memory: [mem 0xfffc0000-0xffffffff]
Aug 11 15:57:43 lw1 kernel: e820: [mem 0xc0000000-0xfeffbfff] available for PCI devices
Aug 11 15:57:43 lw1 kernel: Booting paravirtualized kernel on KVM
Aug 11 15:57:43 lw1 kernel: clocksource refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Aug 11 15:57:43 lw1 kernel: setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:1 nr_node_ids:1
Aug 11 15:57:43 lw1 kernel: PERCPU: Embedded 34 pages/cpu @ffff88013fc00000 s101528 r8192 d29544 u2097152
Aug 11 15:57:43 lw1 kernel: pcpu-alloc: s101528 r8192 d29544 u2097152 alloc=1*2097152
Aug 11 15:57:43 lw1 kernel: pcpu-alloc: [0] 0
Aug 11 15:57:43 lw1 kernel: KVM setup async PF for cpu 0
Aug 11 15:57:43 lw1 kernel: kvm-stealtime: cpu 0, msr 13fc0e580
Aug 11 15:57:43 lw1 kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 1032071
Aug 11 15:57:43 lw1 kernel: Policy zone: Normal
Aug 11 15:57:43 lw1 kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic root=UUID=2a7a888e-6292-491b-a2ef-c9b001174905 ro console=tty1 console=ttyS0
Aug 11 15:57:43 lw1 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Aug 11 15:57:43 lw1 kernel: AGP: Checking aperture...
Aug 11 15:57:43 lw1 kernel: AGP: No AGP bridge found
Aug 11 15:57:43 lw1 kernel: Calgary: detecting Calgary via BIOS EBDA area
Aug 11 15:57:43 lw1 kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Aug 11 15:57:43 lw1 kernel: Memory: 4035092K/4193904K available (8163K kernel code, 1311K rwdata, 3768K rodata, 1432K init, 1300K bss, 158812K reserved, 0K cma-reserved)
Aug 11 15:57:43 lw1 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Aug 11 15:57:43 lw1 kernel: Hierarchical RCU implementation.
Aug 11 15:57:43 lw1 kernel: RCU dyntick-idle grace-period acceleration is enabled.
Aug 11 15:57:43 lw1 kernel: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
Aug 11 15:57:43 lw1 kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
Aug 11 15:57:43 lw1 kernel: NR_IRQS:16640 nr_irqs:256 16
Aug 11 15:57:43 lw1 kernel: Offload RCU callbacks from all CPUs
Aug 11 15:57:43 lw1 kernel: Offload RCU callbacks from CPUs: 0.
Aug 11 15:57:43 lw1 kernel: Console: colour VGA+ 80x25
Aug 11 15:57:43 lw1 kernel: console [tty1] enabled
Aug 11 15:57:43 lw1 kernel: console [ttyS0] enabled
Aug 11 15:57:43 lw1 kernel: clocksource hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
Aug 11 15:57:43 lw1 kernel: hpet clockevent registered
Aug 11 15:57:43 lw1 kernel: tsc: Detected 2673.298 MHz processor
Aug 11 15:57:43 lw1 kernel: Calibrating delay loop (skipped) preset value.. 5346.59 BogoMIPS (lpj=10693192)
Aug 11 15:57:43 lw1 kernel: pid_max: default: 32768 minimum: 301
Aug 11 15:57:43 lw1 kernel: ACPI: Core revision 20150410
Aug 11 15:57:43 lw1 kernel: ACPI: All ACPI Tables successfully acquired
Aug 11 15:57:43 lw1 kernel: Security Framework initialized
Aug 11 15:57:43 lw1 kernel: AppArmor: AppArmor initialized
Aug 11 15:57:43 lw1 kernel: Yama: becoming mindful.
Aug 11 15:57:43 lw1 kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Aug 11 15:57:43 lw1 kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Aug 11 15:57:43 lw1 kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
Aug 11 15:57:43 lw1 kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys blkio
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys memory
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys devices
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys freezer
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys net_cls
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys perf_event
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys net_prio
Aug 11 15:57:43 lw1 kernel: Initializing cgroup subsys hugetlb
Aug 11 15:57:43 lw1 kernel: mce: CPU supports 10 MCE banks
Aug 11 15:57:43 lw1 kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Aug 11 15:57:43 lw1 kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Aug 11 15:57:43 lw1 kernel: Freeing SMP alternatives memory: 32K (ffffffff81eaf000 - ffffffff81eb7000)
Aug 11 15:57:43 lw1 kernel: ftrace: allocating 30658 entries in 120 pages
Aug 11 15:57:43 lw1 kernel: x2apic enabled
Aug 11 15:57:43 lw1 kernel: Switched APIC routing to physical x2apic.
Aug 11 15:57:43 lw1 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Aug 11 15:57:43 lw1 kernel: smpboot: CPU0: Intel QEMU Virtual CPU version 2.0.0 (fam: 06, model: 06, stepping: 03)
Aug 11 15:57:43 lw1 kernel: Performance Events: Broken PMU hardware detected, using software events only.
Aug 11 15:57:43 lw1 kernel: Failed to access perfctr msr (MSR c2 is 0)
Aug 11 15:57:43 lw1 kernel: x86: Booted up 1 node, 1 CPUs
Aug 11 15:57:43 lw1 kernel: smpboot: Total of 1 processors activated (5346.59 BogoMIPS)
Aug 11 15:57:43 lw1 kernel: devtmpfs: initialized
Aug 11 15:57:43 lw1 kernel: evm: security.selinux
Aug 11 15:57:43 lw1 kernel: evm: security.SMACK64
Aug 11 15:57:43 lw1 kernel: evm: security.SMACK64EXEC
Aug 11 15:57:43 lw1 kernel: evm: security.SMACK64TRANSMUTE
Aug 11 15:57:43 lw1 kernel: evm: security.SMACK64MMAP
Aug 11 15:57:43 lw1 kernel: evm: security.ima
Aug 11 15:57:43 lw1 kernel: evm: security.capability
Aug 11 15:57:43 lw1 kernel: clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Aug 11 15:57:43 lw1 kernel: pinctrl core: initialized pinctrl subsystem
Aug 11 15:57:43 lw1 kernel: RTC time: 15:57:39, date: 08/11/15
Aug 11 15:57:43 lw1 kernel: NET: Registered protocol family 16
Aug 11 15:57:43 lw1 kernel: cpuidle: using governor ladder
Aug 11 15:57:43 lw1 kernel: cpuidle: using governor menu
Aug 11 15:57:43 lw1 kernel: ACPI: bus type PCI registered
Aug 11 15:57:43 lw1 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug 11 15:57:43 lw1 kernel: PCI: Using configuration type 1 for base access
Aug 11 15:57:43 lw1 kernel: ACPI: Added _OSI(Module Device)
Aug 11 15:57:43 lw1 kernel: ACPI: Added _OSI(Processor Device)
Aug 11 15:57:43 lw1 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Aug 11 15:57:43 lw1 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Aug 11 15:57:43 lw1 kernel: ACPI: Interpreter enabled
Aug 11 15:57:43 lw1 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150410/hwxface-580)
Aug 11 15:57:43 lw1 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150410/hwxface-580)
Aug 11 15:57:43 lw1 kernel: ACPI: (supports S0 S3 S4 S5)
Aug 11 15:57:43 lw1 kernel: ACPI: Using IOAPIC for interrupt routing
Aug 11 15:57:43 lw1 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Aug 11 15:57:43 lw1 kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
Aug 11 15:57:43 lw1 kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Aug 11 15:57:43 lw1 kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [3] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [4] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [5] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [6] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [7] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [8] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [9] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [10] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [11] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [12] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [13] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [14] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [15] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [16] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [17] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [18] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [19] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [20] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [21] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [22] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [23] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [24] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [25] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [26] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [27] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [28] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [29] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [30] registered
Aug 11 15:57:43 lw1 kernel: acpiphp: Slot [31] registered
Aug 11 15:57:43 lw1 kernel: PCI host bridge to bus 0000:00
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xadff window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: root bus resource [io 0xae0f-0xaeff window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: root bus resource [io 0xaf20-0xafdf window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: root bus resource [io 0xafe4-0xffff window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.1: reg 0x20: [io 0xc0e0-0xc0ef]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.2: reg 0x20: [io 0xc080-0xc09f]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.3: can't claim BAR 13 [io 0xb000-0xb03f]: address conflict with ACPI PM1a_EVT_BLK [io 0xb000-0xb003]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB
Aug 11 15:57:43 lw1 kernel: pci 0000:00:02.0: [1013:00b8] type 00 class 0x030000
Aug 11 15:57:43 lw1 kernel: pci 0000:00:02.0: reg 0x10: [mem 0xfc000000-0xfdffffff pref]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:02.0: reg 0x14: [mem 0xfebd0000-0xfebd0fff]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:02.0: reg 0x30: [mem 0xfebc0000-0xfebcffff pref]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000
Aug 11 15:57:43 lw1 kernel: pci 0000:00:03.0: reg 0x10: [io 0xc0a0-0xc0bf]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:03.0: reg 0x14: [mem 0xfebd1000-0xfebd1fff]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:03.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000
Aug 11 15:57:43 lw1 kernel: pci 0000:00:04.0: reg 0x10: [io 0xc000-0xc03f]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:04.0: reg 0x14: [mem 0xfebd2000-0xfebd2fff]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:05.0: [1af4:1001] type 00 class 0x010000
Aug 11 15:57:43 lw1 kernel: pci 0000:00:05.0: reg 0x10: [io 0xc040-0xc07f]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:05.0: reg 0x14: [mem 0xfebd3000-0xfebd3fff]
Aug 11 15:57:43 lw1 kernel: pci 0000:00:06.0: [1af4:1002] type 00 class 0x00ff00
Aug 11 15:57:43 lw1 kernel: pci 0000:00:06.0: reg 0x10: [io 0xc0c0-0xc0df]
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
Aug 11 15:57:43 lw1 kernel: ACPI: Enabled 16 GPEs in block 00 to 0F
Aug 11 15:57:43 lw1 kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
Aug 11 15:57:43 lw1 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Aug 11 15:57:43 lw1 kernel: vgaarb: loaded
Aug 11 15:57:43 lw1 kernel: vgaarb: bridge control possible 0000:00:02.0
Aug 11 15:57:43 lw1 kernel: SCSI subsystem initialized
Aug 11 15:57:43 lw1 kernel: libata version 3.00 loaded.
Aug 11 15:57:43 lw1 kernel: ACPI: bus type USB registered
Aug 11 15:57:43 lw1 kernel: usbcore: registered new interface driver usbfs
Aug 11 15:57:43 lw1 kernel: usbcore: registered new interface driver hub
Aug 11 15:57:43 lw1 kernel: usbcore: registered new device driver usb
Aug 11 15:57:43 lw1 kernel: PCI: Using ACPI for IRQ routing
Aug 11 15:57:43 lw1 kernel: PCI: pci_cache_line_size set to 64 bytes
Aug 11 15:57:43 lw1 kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Aug 11 15:57:43 lw1 kernel: e820: reserve RAM buffer [mem 0xbfffe000-0xbfffffff]
Aug 11 15:57:43 lw1 kernel: NetLabel: Initializing
Aug 11 15:57:43 lw1 kernel: NetLabel: domain hash size = 128
Aug 11 15:57:43 lw1 kernel: NetLabel: protocols = UNLABELED CIPSOv4
Aug 11 15:57:43 lw1 kernel: NetLabel: unlabeled traffic allowed by default
Aug 11 15:57:43 lw1 kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Aug 11 15:57:43 lw1 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Aug 11 15:57:43 lw1 kernel: hpet0: 3 comparators, 64-bit 100.000000 MHz counter
Aug 11 15:57:43 lw1 kernel: Switched to clocksource kvm-clock
Aug 11 15:57:43 lw1 kernel: AppArmor: AppArmor Filesystem Enabled
Aug 11 15:57:43 lw1 kernel: pnp: PnP ACPI init
Aug 11 15:57:43 lw1 kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
Aug 11 15:57:43 lw1 kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
Aug 11 15:57:43 lw1 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
Aug 11 15:57:43 lw1 kernel: pnp 00:03: [dma 2]
Aug 11 15:57:43 lw1 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)
Aug 11 15:57:43 lw1 kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Aug 11 15:57:43 lw1 kernel: pnp: PnP ACPI: found 5 devices
Aug 11 15:57:43 lw1 kernel: clocksource acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.3: BAR 13: [io size 0x0040] has bogus alignment
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xadff window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: resource 6 [io 0xae0f-0xaeff window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: resource 7 [io 0xaf20-0xafdf window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: resource 8 [io 0xafe4-0xffff window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff window]
Aug 11 15:57:43 lw1 kernel: pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfebfffff window]
Aug 11 15:57:43 lw1 kernel: NET: Registered protocol family 2
Aug 11 15:57:43 lw1 kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
Aug 11 15:57:43 lw1 kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
Aug 11 15:57:43 lw1 kernel: TCP: Hash tables configured (established 32768 bind 32768)
Aug 11 15:57:43 lw1 kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
Aug 11 15:57:43 lw1 kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
Aug 11 15:57:43 lw1 kernel: NET: Registered protocol family 1
Aug 11 15:57:43 lw1 kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.0: PIIX3: Enabling Passive Release
Aug 11 15:57:43 lw1 kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
Aug 11 15:57:43 lw1 kernel: pci 0000:00:02.0: Video device with shadowed ROM
Aug 11 15:57:43 lw1 kernel: PCI: CLS 0 bytes, default 64
Aug 11 15:57:43 lw1 kernel: Trying to unpack rootfs image as initramfs...
Aug 11 15:57:43 lw1 kernel: Freeing initrd memory: 10308K (ffff880036bce000 - ffff8800375df000)
Aug 11 15:57:43 lw1 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug 11 15:57:43 lw1 kernel: software IO TLB [mem 0xbbffe000-0xbfffe000] (64MB) mapped at [ffff8800bbffe000-ffff8800bfffdfff]
Aug 11 15:57:43 lw1 kernel: microcode: CPU0 sig=0x663, pf=0x1, revision=0x1
Aug 11 15:57:43 lw1 kernel: microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Aug 11 15:57:43 lw1 kernel: Scanning for low memory corruption every 60 seconds
Aug 11 15:57:43 lw1 kernel: futex hash table entries: 256 (order: 2, 16384 bytes)
Aug 11 15:57:43 lw1 kernel: Initialise system trusted keyring
Aug 11 15:57:43 lw1 kernel: audit: initializing netlink subsys (disabled)
Aug 11 15:57:43 lw1 kernel: audit: type=2000 audit(1439308660.051:1): initialized
Aug 11 15:57:43 lw1 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug 11 15:57:43 lw1 kernel: zpool: loaded
Aug 11 15:57:43 lw1 kernel: zbud: loaded
Aug 11 15:57:43 lw1 kernel: VFS: Disk quotas dquot_6.6.0
Aug 11 15:57:43 lw1 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 11 15:57:43 lw1 kernel: fuse init (API version 7.23)
Aug 11 15:57:43 lw1 kernel: Key type big_key registered
Aug 11 15:57:43 lw1 kernel: Key type asymmetric registered
Aug 11 15:57:43 lw1 kernel: Asymmetric key parser 'x509' registered
Aug 11 15:57:43 lw1 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
Aug 11 15:57:43 lw1 kernel: io scheduler noop registered
Aug 11 15:57:43 lw1 kernel: io scheduler deadline registered (default)
Aug 11 15:57:43 lw1 kernel: io scheduler cfq registered
Aug 11 15:57:43 lw1 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Aug 11 15:57:43 lw1 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Aug 11 15:57:43 lw1 kernel: intel_idle: does not run on family 6 model 6
Aug 11 15:57:43 lw1 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Aug 11 15:57:43 lw1 kernel: ACPI: Power Button [PWRF]
Aug 11 15:57:43 lw1 kernel: GHES: HEST is not enabled!
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
Aug 11 15:57:43 lw1 kernel: virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver
Aug 11 15:57:43 lw1 kernel: virtio-pci 0000:00:04.0: virtio_pci: leaving for legacy driver
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
Aug 11 15:57:43 lw1 kernel: virtio-pci 0000:00:05.0: virtio_pci: leaving for legacy driver
Aug 11 15:57:43 lw1 kernel: ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
Aug 11 15:57:43 lw1 kernel: virtio-pci 0000:00:06.0: virtio_pci: leaving for legacy driver
Aug 11 15:57:43 lw1 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Aug 11 15:57:43 lw1 kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Aug 11 15:57:43 lw1 kernel: Linux agpgart interface v0.103
Aug 11 15:57:43 lw1 kernel: brd: module loaded
Aug 11 15:57:43 lw1 kernel: loop: module loaded
Aug 11 15:57:43 lw1 kernel: vda: vda1
Aug 11 15:57:43 lw1 kernel: ata_piix 0000:00:01.1: version 2.13
Aug 11 15:57:43 lw1 kernel: scsi host0: ata_piix
Aug 11 15:57:43 lw1 kernel: scsi host1: ata_piix
Aug 11 15:57:43 lw1 kernel: ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc0e0 irq 14
Aug 11 15:57:43 lw1 kernel: ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc0e8 irq 15
Aug 11 15:57:43 lw1 kernel: libphy: Fixed MDIO Bus: probed
Aug 11 15:57:43 lw1 kernel: tun: Universal TUN/TAP device driver, 1.6
Aug 11 15:57:43 lw1 kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Aug 11 15:57:43 lw1 kernel: PPP generic driver version 2.4.2
Aug 11 15:57:43 lw1 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 11 15:57:43 lw1 kernel: ehci-pci: EHCI PCI platform driver
Aug 11 15:57:43 lw1 kernel: ehci-platform: EHCI generic platform driver
Aug 11 15:57:43 lw1 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Aug 11 15:57:43 lw1 kernel: ohci-pci: OHCI PCI platform driver
Aug 11 15:57:43 lw1 kernel: ohci-platform: OHCI generic platform driver
Aug 11 15:57:43 lw1 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Aug 11 15:57:43 lw1 kernel: uhci_hcd 0000:00:01.2: UHCI Host Controller
Aug 11 15:57:43 lw1 kernel: uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
Aug 11 15:57:43 lw1 kernel: uhci_hcd 0000:00:01.2: detected 2 ports
Aug 11 15:57:43 lw1 kernel: uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c080
Aug 11 15:57:43 lw1 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
Aug 11 15:57:43 lw1 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 11 15:57:43 lw1 kernel: usb usb1: Product: UHCI Host Controller
Aug 11 15:57:43 lw1 kernel: usb usb1: Manufacturer: Linux 4.1.0-3-generic uhci_hcd
Aug 11 15:57:43 lw1 kernel: usb usb1: SerialNumber: 0000:00:01.2
Aug 11 15:57:43 lw1 kernel: hub 1-0:1.0: USB hub found
Aug 11 15:57:43 lw1 kernel: hub 1-0:1.0: 2 ports detected
Aug 11 15:57:43 lw1 kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Aug 11 15:57:43 lw1 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 11 15:57:43 lw1 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 11 15:57:43 lw1 kernel: mousedev: PS/2 mouse device common for all mice
Aug 11 15:57:43 lw1 kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
Aug 11 15:57:43 lw1 kernel: rtc_cmos 00:00: RTC can wake from S4
Aug 11 15:57:43 lw1 kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
Aug 11 15:57:43 lw1 kernel: rtc_cmos 00:00: alarms up to one day, 114 bytes nvram, hpet irqs
Aug 11 15:57:43 lw1 kernel: i2c /dev entries driver
Aug 11 15:57:43 lw1 kernel: device-mapper: uevent: version 1.0.3
Aug 11 15:57:43 lw1 kernel: device-mapper: ioctl: 4.31.0-ioctl (2015-3-12) initialised: dm-devel@redhat.com
Aug 11 15:57:43 lw1 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Aug 11 15:57:43 lw1 kernel: PCCT header not found.
Aug 11 15:57:43 lw1 kernel: NET: Registered protocol family 10
Aug 11 15:57:43 lw1 kernel: NET: Registered protocol family 17
Aug 11 15:57:43 lw1 kernel: Key type dns_resolver registered
Aug 11 15:57:43 lw1 kernel: Loading compiled-in X.509 certificates
Aug 11 15:57:43 lw1 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: cf68395103f8b653505b8fac1521c0564d2399f6'
Aug 11 15:57:43 lw1 kernel: registered taskstats version 1
Aug 11 15:57:43 lw1 kernel: Key type trusted registered
Aug 11 15:57:43 lw1 kernel: Key type encrypted registered
Aug 11 15:57:43 lw1 kernel: AppArmor: AppArmor sha1 policy hashing enabled
Aug 11 15:57:43 lw1 kernel: ima: No TPM chip found, activating TPM-bypass!
Aug 11 15:57:43 lw1 kernel: evm: HMAC attrs: 0x1
Aug 11 15:57:43 lw1 kernel: Magic number: 11:870:992
Aug 11 15:57:43 lw1 kernel: memory memory35: hash matches
Aug 11 15:57:43 lw1 kernel: rtc_cmos 00:00: setting system clock to 2015-08-11 15:57:41 UTC (1439308661)
Aug 11 15:57:43 lw1 kernel: BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Aug 11 15:57:43 lw1 kernel: EDD information not available.
Aug 11 15:57:43 lw1 kernel: PM: Hibernation image not present or could not be loaded.
Aug 11 15:57:43 lw1 kernel: Freeing unused kernel memory: 1432K (ffffffff81d49000 - ffffffff81eaf000)
Aug 11 15:57:43 lw1 kernel: Write protecting the kernel read-only data: 12288k
Aug 11 15:57:43 lw1 kernel: Freeing unused kernel memory: 16K (ffff8800017fc000 - ffff880001800000)
Aug 11 15:57:43 lw1 kernel: Freeing unused kernel memory: 328K (ffff880001bae000 - ffff880001c00000)
Aug 11 15:57:43 lw1 kernel: random: udevadm urandom read with 3 bits of entropy available
Aug 11 15:57:43 lw1 kernel: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
Aug 11 15:57:43 lw1 kernel: FDC 0 is a S82078B
Aug 11 15:57:43 lw1 kernel: input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
Aug 11 15:57:43 lw1 kernel: tsc: Refined TSC clocksource calibration: 2673.326 MHz
Aug 11 15:57:43 lw1 kernel: clocksource tsc: mask: 0xffffffffffffffff max_cycles: 0x2688d05574b, max_idle_ns: 440795236253 ns
Aug 11 15:57:43 lw1 kernel: EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null)
Aug 11 15:57:43 lw1 systemd[1]: Inserted module 'autofs4'
Aug 11 15:57:43 lw1 systemd[1]: Failed to insert module 'kdbus': Function not implemented
Aug 11 15:57:43 lw1 systemd[1]: systemd 224 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
Aug 11 15:57:43 lw1 systemd[1]: Detected virtualization kvm.
Aug 11 15:57:43 lw1 systemd[1]: Detected architecture x86-64.
Aug 11 15:57:43 lw1 systemd[1]: Set hostname to <lw1>.
Aug 11 15:57:43 lw1 systemd-sysv-generator[280]: Overwriting existing symlink /run/systemd/generator.late/umountiscsi.service with real service
Aug 11 15:57:43 lw1 systemd[1]: sshd-keygen.service: Cannot add dependency job, ignoring: Unit sshd-keygen.service failed to load: No such file or directory.
Aug 11 15:57:43 lw1 systemd[1]: gssproxy.service: Cannot add dependency job, ignoring: Unit gssproxy.service failed to load: No such file or directory.
Aug 11 15:57:43 lw1 systemd[1]: nfs-blkmap.service: Cannot add dependency job, ignoring: Unit nfs-blkmap.service failed to load: No such file or directory.
Aug 11 15:57:43 lw1 systemd[1]: display-manager.service: Cannot add dependency job, ignoring: Unit display-manager.service failed to load: No such file or directory.
Aug 11 15:57:43 lw1 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Aug 11 15:57:43 lw1 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Aug 11 15:57:43 lw1 systemd[1]: Reached target Swap.
Aug 11 15:57:43 lw1 systemd[1]: Reached target Encrypted Volumes.
Aug 11 15:57:43 lw1 systemd[1]: Created slice Root Slice.
Aug 11 15:57:43 lw1 systemd[1]: Listening on LVM2 poll daemon socket.
Aug 11 15:57:43 lw1 systemd[1]: Listening on LVM2 metadata daemon socket.
Aug 11 15:57:43 lw1 systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Aug 11 15:57:43 lw1 systemd[1]: Listening on Journal Socket (/dev/log).
Aug 11 15:57:43 lw1 systemd[1]: Created slice User and Session Slice.
Aug 11 15:57:43 lw1 systemd[1]: Listening on udev Control Socket.
Aug 11 15:57:43 lw1 systemd[1]: Listening on udev Kernel Socket.
Aug 11 15:57:43 lw1 systemd[1]: Listening on Journal Audit Socket.
Aug 11 15:57:43 lw1 systemd[1]: Listening on Device-mapper event daemon FIFOs.
Aug 11 15:57:43 lw1 systemd[1]: Listening on Journal Socket.
Aug 11 15:57:43 lw1 systemd[1]: Created slice System Slice.
Aug 11 15:57:43 lw1 systemd[1]: Reached target Slices.
Aug 11 15:57:43 lw1 systemd[1]: Starting Remount Root and Kernel File Systems...
Aug 11 15:57:43 lw1 systemd[1]: Mounting Huge Pages File System...
Aug 11 15:57:43 lw1 systemd[1]: Mounting Debug File System...
Aug 11 15:57:43 lw1 kernel: EXT4-fs (vda1): re-mounted. Opts: (null)
Aug 11 15:57:43 lw1 systemd[1]: Created slice system-getty.slice.
Aug 11 15:57:43 lw1 systemd[1]: Created slice system-serial\x2dgetty.slice.
Aug 11 15:57:43 lw1 systemd[1]: Starting Create list of required static device nodes for the current kernel...
Aug 11 15:57:43 lw1 systemd[1]: Starting Setup Virtual Console...
Aug 11 15:57:43 lw1 systemd[1]: Starting udev Coldplug all Devices...
Aug 11 15:57:43 lw1 systemd[1]: Mounting RPC Pipe File System...
Aug 11 15:57:43 lw1 systemd[1]: Mounting POSIX Message Queue File System...
Aug 11 15:57:43 lw1 systemd[1]: Starting Increase datagram queue length...
Aug 11 15:57:43 lw1 kernel: RPC: Registered named UNIX socket transport module.
Aug 11 15:57:43 lw1 kernel: RPC: Registered udp transport module.
Aug 11 15:57:43 lw1 kernel: RPC: Registered tcp transport module.
Aug 11 15:57:43 lw1 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Aug 11 15:57:43 lw1 systemd[1]: Starting Load Kernel Modules...
Aug 11 15:57:43 lw1 systemd[1]: Starting Uncomplicated firewall...
Aug 11 15:57:43 lw1 systemd[1]: Reached target User and Group Name Lookups.
Aug 11 15:57:43 lw1 systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Aug 11 15:57:43 lw1 systemd[1]: Mounted RPC Pipe File System.
Aug 11 15:57:43 lw1 systemd[1]: Mounted POSIX Message Queue File System.
Aug 11 15:57:43 lw1 systemd[1]: Mounted Huge Pages File System.
Aug 11 15:57:43 lw1 systemd[1]: Mounted Debug File System.
Aug 11 15:57:43 lw1 systemd[1]: Started Remount Root and Kernel File Systems.
Aug 11 15:57:43 lw1 systemd[1]: Started Create list of required static device nodes for the current kernel.
Aug 11 15:57:43 lw1 systemd[1]: Started Setup Virtual Console.
Aug 11 15:57:43 lw1 systemd[1]: Started Increase datagram queue length.
Aug 11 15:57:43 lw1 systemd[1]: Started Load Kernel Modules.
Aug 11 15:57:43 lw1 systemd[1]: Started Uncomplicated firewall.
Aug 11 15:57:43 lw1 systemd[1]: Started LVM2 metadata daemon.
Aug 11 15:57:43 lw1 systemd[1]: Starting Apply Kernel Variables...
Aug 11 15:57:43 lw1 systemd[1]: Mounting FUSE Control File System...
Aug 11 15:57:43 lw1 systemd[1]: Listening on Syslog Socket.
Aug 11 15:57:43 lw1 systemd[1]: Starting Journal Service...
Aug 11 15:57:43 lw1 systemd[1]: Starting Create Static Device Nodes in /dev...
Aug 11 15:57:43 lw1 systemd[1]: Starting Load/Save Random Seed...
Aug 11 15:57:43 lw1 systemd[1]: Mounted FUSE Control File System.
Aug 11 15:57:43 lw1 systemd[1]: Started udev Coldplug all Devices.
Aug 11 15:57:43 lw1 systemd[1]: Started Apply Kernel Variables.
Aug 11 15:57:43 lw1 systemd[1]: Started Load/Save Random Seed.
Aug 11 15:57:43 lw1 systemd[1]: Started Create Static Device Nodes in /dev.
Aug 11 15:57:43 lw1 systemd[1]: Starting udev Kernel Device Manager...
Aug 11 15:57:43 lw1 systemd[1]: Started udev Kernel Device Manager.
Aug 11 15:57:43 lw1 systemd[1]: Reached target Local File Systems (Pre).
Aug 11 15:57:43 lw1 systemd[1]: Starting LSB: QEMU KVM module loading script...
Aug 11 15:57:43 lw1 systemd[1]: Reached target Paths.
Aug 11 15:57:43 lw1 systemd[1]: Starting Copy rules generated while the root was ro...
Aug 11 15:57:43 lw1 systemd[1]: Started Copy rules generated while the root was ro.
Aug 11 15:57:43 lw1 systemd-journal[322]: Journal started
Aug 11 15:57:43 lw1 systemd[1]: Started Journal Service.
Aug 11 15:57:43 lw1 systemd-tmpfiles[323]: Failed to parse ACL "d:group:adm:r-x,d": Invalid argument. Ignoring
Aug 11 15:57:43 lw1 systemd[1]: Starting Flush Journal to Persistent Storage...
Aug 11 15:57:43 lw1 systemd[1]: Started Flush Journal to Persistent Storage.
Aug 11 15:57:43 lw1 qemu-kvm[328]: * Configuring kvm qemu-kvm
Aug 11 15:57:44 lw1 qemu-kvm[328]: /usr/share/qemu/init/qemu-kvm-init: 82: [: Illegal number:
Aug 11 15:57:44 lw1 qemu-kvm[328]: ...done.
Aug 11 15:57:44 lw1 systemd[1]: Started LSB: QEMU KVM module loading script.
Aug 11 15:57:44 lw1 systemd[1]: Found device /dev/ttyS0.
Aug 11 15:57:44 lw1 systemd[1]: Created slice system-ifup.slice.
Aug 11 15:57:44 lw1 systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Aug 11 15:57:44 lw1 systemd[1]: Reached target Local File Systems.
Aug 11 15:57:44 lw1 systemd[1]: Starting Clean up any mess left by 0dns-up...
Aug 11 15:57:44 lw1 systemd[1]: Starting Create Volatile Files and Directories...
Aug 11 15:57:44 lw1 systemd[1]: Starting LSB: AppArmor initialization...
Aug 11 15:57:44 lw1 systemd[1]: Starting Wait for all "auto" /etc/network/interfaces to be up for network-online.target...
Aug 11 15:57:44 lw1 systemd[1]: Starting LSB: ebtables ruleset management...
Aug 11 15:57:44 lw1 systemd[1]: Starting Set console keymap...
Aug 11 15:57:44 lw1 systemd[1]: Starting Preprocess NFS configuration...
Aug 11 15:57:44 lw1 systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Aug 11 15:57:44 lw1 systemd[1]: Started Preprocess NFS configuration.
Aug 11 15:57:44 lw1 systemd[1]: Reached target NFS client services.
Aug 11 15:57:44 lw1 systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
Aug 11 15:57:44 lw1 systemd-tmpfiles[459]: Failed to parse ACL "d:group:adm:r-x,d": Invalid argument. Ignoring
Aug 11 15:57:44 lw1 systemd-tmpfiles[459]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Aug 11 15:57:44 lw1 systemd[1]: Started Clean up any mess left by 0dns-up.
Aug 11 15:57:44 lw1 systemd[1]: Starting Nameserver information manager...
Aug 11 15:57:44 lw1 systemd[1]: Started Nameserver information manager.
Aug 11 15:57:44 lw1 apparmor[460]: * Starting AppArmor profiles
Aug 11 15:57:44 lw1 systemd[1]: Started Create Volatile Files and Directories.
Aug 11 15:57:44 lw1 systemd[1]: Starting Network Time Synchronization...
Aug 11 15:57:44 lw1 systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Aug 11 15:57:44 lw1 systemd[1]: Starting RPC bind portmap service...
Aug 11 15:57:44 lw1 systemd[1]: Found device Virtio network device.
Aug 11 15:57:44 lw1 systemd[1]: Started Update UTMP about System Boot/Shutdown.
Aug 11 15:57:44 lw1 systemd[1]: Started RPC bind portmap service.
Aug 11 15:57:44 lw1 systemd[1]: Reached target Remote File Systems (Pre).
Aug 11 15:57:44 lw1 systemd[1]: Reached target Remote File Systems.
Aug 11 15:57:44 lw1 systemd[1]: Reached target RPC Port Mapper.
Aug 11 15:57:44 lw1 systemd[1]: Started LSB: ebtables ruleset management.
Aug 11 15:57:44 lw1 systemd[1]: Started Network Time Synchronization.
Aug 11 15:57:44 lw1 systemd[1]: Reached target System Time Synchronized.
Aug 11 15:57:44 lw1 kernel: ppdev: user-space parallel port driver
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.612:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.612:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.612:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.616:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.616:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.616:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.616:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/libvirt/virt-aa-helper" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 apparmor[460]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.620:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 kernel: audit: type=1400 audit(1439308664.620:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/libvirt/virt-aa-helper" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 audit[573]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=573 comm="apparmor_parser"
Aug 11 15:57:44 lw1 apparmor[460]: ...done.
Aug 11 15:57:44 lw1 systemd[1]: Started LSB: AppArmor initialization.
Aug 11 15:57:44 lw1 systemd[1]: Starting LSB: Raise network interfaces....
Aug 11 15:57:44 lw1 systemd[1]: Started ifup for eth0.
Aug 11 15:57:44 lw1 networking[578]: * Configuring network interfaces...
Aug 11 15:57:44 lw1 loadkeys[466]: Loading /etc/console-setup/cached.kmap.gz
Aug 11 15:57:44 lw1 systemd[1]: Started Set console keymap.
Aug 11 15:57:44 lw1 dhclient[594]: Internet Systems Consortium DHCP Client 4.3.1
Aug 11 15:57:44 lw1 sh[579]: Internet Systems Consortium DHCP Client 4.3.1
Aug 11 15:57:44 lw1 dhclient[594]: Copyright 2004-2014 Internet Systems Consortium.
Aug 11 15:57:44 lw1 sh[579]: Copyright 2004-2014 Internet Systems Consortium.
Aug 11 15:57:44 lw1 dhclient[594]: All rights reserved.
Aug 11 15:57:44 lw1 sh[579]: All rights reserved.
Aug 11 15:57:44 lw1 dhclient[594]: For info, please visit https://www.isc.org/software/dhcp/
Aug 11 15:57:44 lw1 sh[579]: For info, please visit https://www.isc.org/software/dhcp/
Aug 11 15:57:44 lw1 dhclient[594]:
Aug 11 15:57:44 lw1 dhclient[594]: Listening on LPF/eth0/52:54:00:cb:a3:b6
Aug 11 15:57:44 lw1 sh[579]: Listening on LPF/eth0/52:54:00:cb:a3:b6
Aug 11 15:57:44 lw1 dhclient[594]: Sending on LPF/eth0/52:54:00:cb:a3:b6
Aug 11 15:57:44 lw1 sh[579]: Sending on LPF/eth0/52:54:00:cb:a3:b6
Aug 11 15:57:44 lw1 dhclient[594]: Sending on Socket/fallback
Aug 11 15:57:44 lw1 sh[579]: Sending on Socket/fallback
Aug 11 15:57:44 lw1 dhclient[594]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3 (xid=0xcf2b907b)
Aug 11 15:57:44 lw1 sh[579]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3 (xid=0xcf2b907b)
Aug 11 15:57:44 lw1 dhclient[594]: DHCPREQUEST of 192.168.122.230 on eth0 to 255.255.255.255 port 67 (xid=0x7b902bcf)
Aug 11 15:57:44 lw1 dhclient[594]: DHCPOFFER of 192.168.122.230 from 192.168.122.1
Aug 11 15:57:44 lw1 sh[579]: DHCPREQUEST of 192.168.122.230 on eth0 to 255.255.255.255 port 67 (xid=0x7b902bcf)
Aug 11 15:57:44 lw1 sh[579]: DHCPOFFER of 192.168.122.230 from 192.168.122.1
Aug 11 15:57:44 lw1 networking[578]: ...done.
Aug 11 15:57:44 lw1 systemd[1]: Started LSB: Raise network interfaces..
Aug 11 15:57:44 lw1 systemd[1]: Reached target Network.
Aug 11 15:57:44 lw1 dhclient[594]: DHCPACK of 192.168.122.230 from 192.168.122.1
Aug 11 15:57:44 lw1 sh[579]: DHCPACK of 192.168.122.230 from 192.168.122.1
Aug 11 15:57:44 lw1 dhclient[594]: bound to 192.168.122.230 -- renewal in 1773 seconds.
Aug 11 15:57:44 lw1 sh[579]: bound to 192.168.122.230 -- renewal in 1773 seconds.
Aug 11 15:57:45 lw1 systemd[1]: Started Wait for all "auto" /etc/network/interfaces to be up for network-online.target.
Aug 11 15:57:45 lw1 systemd[1]: Reached target Network is Online.
Aug 11 15:57:45 lw1 systemd[1]: Starting LSB: Starts and stops the iSCSI initiator services and logs in to default targets...
Aug 11 15:57:45 lw1 open-iscsi[704]: * Starting iSCSI initiator service iscsid
Aug 11 15:57:45 lw1 kernel: Loading iSCSI transport class v2.0-870.
Aug 11 15:57:45 lw1 kernel: iscsi: registered transport (tcp)
Aug 11 15:57:45 lw1 iscsid[719]: iSCSI logger with pid=720 started!
Aug 11 15:57:45 lw1 open-iscsi[704]: ...done.
Aug 11 15:57:45 lw1 open-iscsi[704]: * Setting up iSCSI targets
Aug 11 15:57:45 lw1 open-iscsi[704]: iscsiadm: No records found
Aug 11 15:57:45 lw1 open-iscsi[704]: ...done.
Aug 11 15:57:45 lw1 open-iscsi[704]: * Mounting network filesystems
Aug 11 15:57:45 lw1 open-iscsi[704]: ...done.
Aug 11 15:57:45 lw1 systemd[1]: Started LSB: Starts and stops the iSCSI initiator services and logs in to default targets.
Aug 11 15:57:45 lw1 systemd[1]: Reached target System Initialization.
Aug 11 15:57:45 lw1 systemd[1]: Started Daily Cleanup of Temporary Directories.
Aug 11 15:57:45 lw1 systemd[1]: Reached target Timers.
Aug 11 15:57:45 lw1 systemd[1]: Starting Seed the pseudo random number generator on first boot...
Aug 11 15:57:45 lw1 systemd[1]: Listening on UUID daemon activation socket.
Aug 11 15:57:45 lw1 kernel: cgroup: new mount options do not match the existing superblock, will be ignored
Aug 11 15:57:45 lw1 cron[776]: (CRON) INFO (pidfile fd = 3)
Aug 11 15:57:45 lw1 systemd[1]: Listening on D-Bus System Message Bus Socket.
Aug 11 15:57:45 lw1 cron[776]: (CRON) INFO (Running @reboot jobs)
Aug 11 15:57:45 lw1 systemd[1]: Listening on ACPID Listen Socket.
Aug 11 15:57:45 lw1 systemd[1]: Reached target Sockets.
Aug 11 15:57:45 lw1 systemd[1]: Reached target Basic System.
Aug 11 15:57:45 lw1 systemd[1]: Starting LSB: Router Advertising Daemon...
Aug 11 15:57:45 lw1 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Aug 11 15:57:45 lw1 systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down....
Aug 11 15:57:45 lw1 systemd[1]: Starting LSB: Landscape client daemons...
Aug 11 15:57:45 lw1 systemd[1]: Started Cgroup management daemon.
Aug 11 15:57:45 lw1 systemd[1]: Starting Initial cloud-init job (pre-networking)...
Aug 11 15:57:45 lw1 systemd[1]: Starting LSB: automatic crash report generation...
Aug 11 15:57:45 lw1 systemd[1]: Started Deferred execution scheduler.
Aug 11 15:57:45 lw1 systemd[1]: Started Regular background program processing daemon.
Aug 11 15:57:45 lw1 systemd[1]: Started System Logging Service.
Aug 11 15:57:45 lw1 systemd[1]: Started LSB: Landscape client daemons.
Aug 11 15:57:45 lw1 systemd[1]: Started LSB: Router Advertising Daemon.
Aug 11 15:57:45 lw1 systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Aug 11 15:57:45 lw1 radvd[727]: Starting radvd:
Aug 11 15:57:45 lw1 radvd[727]: * /etc/radvd.conf does not exist or is empty.
Aug 11 15:57:45 lw1 radvd[727]: * See /usr/share/doc/radvd/README.Debian
Aug 11 15:57:45 lw1 radvd[727]: * radvd will *not* be started.
Aug 11 15:57:45 lw1 kernel: bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
Aug 11 15:57:45 lw1 /usr/sbin/irqbalance[766]: Balancing is ineffective on systems with a single cache domain. Shutting down
Aug 11 15:57:45 lw1 pollinate[800]: system was previously seeded at [2015-08-07 17:10:12.228000000 +0000]
Aug 11 15:57:45 lw1 pollinate[812]: To re-seed this system again, use the -r|--reseed option
Aug 11 15:57:45 lw1 pollinate[726]: Aug 11 15:57:45 lw1 <13>Aug 11 15:57:45 pollinate[800]: system was previously seeded at [2015-08-07 17:10:12.228000000 +0000]
Aug 11 15:57:45 lw1 pollinate[726]: Aug 11 15:57:45 lw1 <13>Aug 11 15:57:45 pollinate[812]: To re-seed this system again, use the -r|--reseed option
Aug 11 15:57:45 lw1 landscape-client[729]: landscape-client is not configured, please run landscape-config.
Aug 11 15:57:45 lw1 dbus[792]: [system] AppArmor D-Bus mediation is enabled
Aug 11 15:57:45 lw1 systemd-udevd[814]: Could not generate persistent MAC address for lxcbr0: No such file or directory
Aug 11 15:57:45 lw1 systemd[1]: Started Seed the pseudo random number generator on first boot.
Aug 11 15:57:45 lw1 systemd[1]: Started LSB: automatic crash report generation.
Aug 11 15:57:45 lw1 systemd[1]: Started LSB: daemon to balance interrupts for SMP systems.
Aug 11 15:57:45 lw1 systemd[1]: Started LSB: Record successful boot for GRUB.
Aug 11 15:57:45 lw1 systemd[1]: Started /etc/rc.local Compatibility.
Aug 11 15:57:45 lw1 apport[733]: * Starting automatic crash report generation: apport
Aug 11 15:57:45 lw1 apport[733]: ...done.
Aug 11 15:57:45 lw1 irqbalance[753]: * Starting SMP IRQ Balancer: irqbalance
Aug 11 15:57:45 lw1 irqbalance[753]: ...done.
Aug 11 15:57:45 lw1 systemd[1]: Starting Virtualization daemon...
Aug 11 15:57:45 lw1 systemd-logind[758]: Watching system buttons on /dev/input/event0 (Power Button)
Aug 11 15:57:45 lw1 systemd-logind[758]: New seat seat0.
Aug 11 15:57:45 lw1 systemd[1]: Started Login Service.
Aug 11 15:57:45 lw1 kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
Aug 11 15:57:45 lw1 dbus[792]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkitd.service'
Aug 11 15:57:45 lw1 systemd[1]: Starting Authenticate and Authorize Users to Run Privileged Tasks...
Aug 11 15:57:45 lw1 dnsmasq[868]: started, version 2.75 cachesize 150
Aug 11 15:57:45 lw1 dnsmasq[868]: compile time options: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify
Aug 11 15:57:45 lw1 dnsmasq-dhcp[868]: DHCP, IP range 10.0.3.2 -- 10.0.3.254, lease time 1h
Aug 11 15:57:45 lw1 dnsmasq-dhcp[868]: DHCP, sockets bound exclusively to interface lxcbr0
Aug 11 15:57:45 lw1 polkitd[847]: started daemon version 0.105 using authority implementation `local' version `0.105'
Aug 11 15:57:45 lw1 dnsmasq[868]: reading /etc/resolv.conf
Aug 11 15:57:45 lw1 dnsmasq[868]: using nameserver 192.168.122.1#53
Aug 11 15:57:45 lw1 dnsmasq[868]: read /etc/hosts - 9 addresses
Aug 11 15:57:45 lw1 dbus[792]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Aug 11 15:57:45 lw1 systemd[1]: Started Authenticate and Authorize Users to Run Privileged Tasks.
Aug 11 15:57:45 lw1 accounts-daemon[738]: started daemon version 0.6.40
Aug 11 15:57:45 lw1 systemd[1]: Started Accounts Service.
Aug 11 15:57:45 lw1 systemd[1]: Started LXC network bridge setup.
Aug 11 15:57:45 lw1 systemd[1]: Starting LXC Container Initialization and Autoboot Code...
Aug 11 15:57:45 lw1 lxc-devsetup[872]: Creating /dev/.lxc
Aug 11 15:57:45 lw1 lxc-devsetup[872]: /dev is devtmpfs
Aug 11 15:57:45 lw1 lxc-devsetup[872]: Creating /dev/.lxc/user
Aug 11 15:57:45 lw1 audit[885]: AVC apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/bin/lxc-start" pid=885 comm="apparmor_parser"
Aug 11 15:57:45 lw1 audit[899]: AVC apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default" pid=899 comm="apparmor_parser"
Aug 11 15:57:45 lw1 audit[899]: AVC apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-mounting" pid=899 comm="apparmor_parser"
Aug 11 15:57:45 lw1 audit[899]: AVC apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-nesting" pid=899 comm="apparmor_parser"
Aug 11 15:57:45 lw1 kernel: audit_printk_skb: 9 callbacks suppressed
Aug 11 15:57:45 lw1 kernel: audit: type=1400 audit(1439308665.992:14): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default" pid=899 comm="apparmor_parser"
Aug 11 15:57:45 lw1 kernel: audit: type=1400 audit(1439308665.992:15): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-mounting" pid=899 comm="apparmor_parser"
Aug 11 15:57:45 lw1 kernel: audit: type=1400 audit(1439308665.992:16): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-nesting" pid=899 comm="apparmor_parser"
Aug 11 15:57:46 lw1 systemd[1]: Started LXC Container Initialization and Autoboot Code.
Aug 11 15:57:46 lw1 systemd[1]: Started Virtualization daemon.
Aug 11 15:57:46 lw1 kernel: ip6_tables: (C) 2000-2006 Netfilter Core Team
Aug 11 15:57:46 lw1 kernel: Ebtables v2.0 registered
Aug 11 15:57:46 lw1 kernel: device virbr0-nic entered promiscuous mode
Aug 11 15:57:46 lw1 systemd-udevd[935]: Could not generate persistent MAC address for virbr0: No such file or directory
Aug 11 15:57:46 lw1 iscsid[720]: iSCSI daemon with pid=721 started!
Aug 11 15:57:46 lw1 kernel: virbr0: port 1(virbr0-nic) entered listening state
Aug 11 15:57:46 lw1 kernel: virbr0: port 1(virbr0-nic) entered listening state
Aug 11 15:57:46 lw1 dnsmasq[1007]: started, version 2.75 cachesize 150
Aug 11 15:57:46 lw1 dnsmasq[1007]: compile time options: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify
Aug 11 15:57:46 lw1 dnsmasq-dhcp[1007]: DHCP, IP range 192.168.123.2 -- 192.168.123.254, lease time 1h
Aug 11 15:57:46 lw1 dnsmasq-dhcp[1007]: DHCP, sockets bound exclusively to interface virbr0
Aug 11 15:57:46 lw1 dnsmasq[1007]: reading /etc/resolv.conf
Aug 11 15:57:46 lw1 dnsmasq[1007]: using nameserver 192.168.122.1#53
Aug 11 15:57:46 lw1 dnsmasq[1007]: read /etc/hosts - 9 addresses
Aug 11 15:57:46 lw1 dnsmasq[1007]: read /var/lib/libvirt/dnsmasq/default.addnhosts - 0 addresses
Aug 11 15:57:46 lw1 dnsmasq-dhcp[1007]: read /var/lib/libvirt/dnsmasq/default.hostsfile
Aug 11 15:57:46 lw1 kernel: virbr0: port 1(virbr0-nic) entered disabled state
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 running 'init-local' at Tue, 11 Aug 2015 15:57:46 +0000. Up 6.67 seconds.
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Aug 11 15:57:46 lw1 cloud-init[732]: [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']
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] __init__.py[DEBUG]: Searching for data source in: ['DataSourceNoCloud', 'DataSourceConfigDrive', 'DataSourceOpenNebula', 'DataSourceOVF']
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloud'>
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Read 118 bytes from /proc/cmdline
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] DataSourceNoCloud.py[DEBUG]: Attempting to use data from /dev/vdb
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Read 2228 bytes from /proc/mounts
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Fetched {'sysfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys', 'fstype': 'sysfs'}, 'devpts': {'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'mountpoint': '/dev/pts', 'fstype': 'devpts'}, 'lxcfs': {'opts': 'rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other', 'mountpoint': '/var/lib/lxcfs', 'fstype': 'fuse.lxcfs'}, '/dev/vda1': {'opts': 'rw,relatime,data=ordered', 'mountpoint': '/', 'fstype': 'ext4'}, 'tmpfs': {'opts': 'rw,mode=755', 'mountpoint': '/sys/fs/cgroup', 'fstype': 'tmpfs'}, 'sunrpc': {'opts': 'rw,relatime', 'mountpoint': '/run/rpc_pipefs', 'fstype': 'rpc_pipefs'}, 'udev': {'opts': 'rw,relatime,size=2017560k,nr_inodes=504390,mode=755', 'mountpoint': '/dev', 'fstype': 'devtmpfs'}, 'debugfs': {'opts': 'rw,relatime', 'mountpoint': '/sys/kernel/debug', 'fstype': 'debugfs'}, 'hugetlbfs': {'opts': 'rw,relatime', 'mountpoint': '/dev/hugepages', 'fstype': 'hugetlbfs'}, 'securityfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/kernel/security', 'fstype': 'securityfs'}, 'cgmfs': {'opts': 'rw,relatime,size=100k,mode=755', 'mountpoint': '/run/cgmanager/fs', 'fstype': 'tmpfs'}, 'cgroup': {'opts': 'rw,nosuid,nodev,noexec,relatime,devices', 'mountpoint': '/sys/fs/cgroup/devices', 'fstype': 'cgroup'}, 'pstore': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/fs/pstore', 'fstype': 'pstore'}, 'mqueue': {'opts': 'rw,relatime', 'mountpoint': '/dev/mqueue', 'fstype': 'mqueue'}, 'systemd-1': {'opts': 'rw,relatime,fd=23,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'mountpoint': '/proc/sys/fs/binfmt_misc', 'fstype': 'autofs'}, 'fusectl': {'opts': 'rw,relatime', 'mountpoint': '/sys/fs/fuse/connections', 'fstype': 'fusectl'}, 'proc': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/proc', 'fstype': 'proc'}} mounts from proc
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['mount', '-o', 'ro,sync', '-t', 'auto', '/dev/vdb', '/tmp/tmp60vu7zax'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp60vu7zax//user-data (quiet=False)
Aug 11 15:57:46 lw1 kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Aug 11 15:57:46 lw1 kernel: ISO 9660 Extensions: RRIP_1991A
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Read 1902 bytes from /tmp/tmp60vu7zax//user-data
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp60vu7zax//meta-data (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Read 52 bytes from /tmp/tmp60vu7zax//meta-data
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp60vu7zax//vendor-data (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['umount', '/tmp/tmp60vu7zax'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Recursively deleting /tmp/tmp60vu7zax
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 52 with allowed root types (<class 'dict'>,)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] DataSourceNoCloud.py[DEBUG]: Using data from /dev/vdb
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] DataSourceNoCloud.py[DEBUG]: DataSourceNoCloud [seed=None][dsmode=local]: not claiming datasource, dsmode=net
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceConfigDrive.DataSourceConfigDrive'>
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/cd0'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/cd1'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=config-2', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Read 2228 bytes from /proc/mounts
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Fetched {'sysfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys', 'fstype': 'sysfs'}, 'devpts': {'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'mountpoint': '/dev/pts', 'fstype': 'devpts'}, 'lxcfs': {'opts': 'rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other', 'mountpoint': '/var/lib/lxcfs', 'fstype': 'fuse.lxcfs'}, '/dev/vda1': {'opts': 'rw,relatime,data=ordered', 'mountpoint': '/', 'fstype': 'ext4'}, 'tmpfs': {'opts': 'rw,mode=755', 'mountpoint': '/sys/fs/cgroup', 'fstype': 'tmpfs'}, 'sunrpc': {'opts': 'rw,relatime', 'mountpoint': '/run/rpc_pipefs', 'fstype': 'rpc_pipefs'}, 'udev': {'opts': 'rw,relatime,size=2017560k,nr_inodes=504390,mode=755', 'mountpoint': '/dev', 'fstype': 'devtmpfs'}, 'debugfs': {'opts': 'rw,relatime', 'mountpoint': '/sys/kernel/debug', 'fstype': 'debugfs'}, 'hugetlbfs': {'opts': 'rw,relatime', 'mountpoint': '/dev/hugepages', 'fstype': 'hugetlbfs'}, 'securityfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/kernel/security', 'fstype': 'securityfs'}, 'cgmfs': {'opts': 'rw,relatime,size=100k,mode=755', 'mountpoint': '/run/cgmanager/fs', 'fstype': 'tmpfs'}, 'cgroup': {'opts': 'rw,nosuid,nodev,noexec,relatime,devices', 'mountpoint': '/sys/fs/cgroup/devices', 'fstype': 'cgroup'}, 'pstore': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/fs/pstore', 'fstype': 'pstore'}, 'mqueue': {'opts': 'rw,relatime', 'mountpoint': '/dev/mqueue', 'fstype': 'mqueue'}, 'systemd-1': {'opts': 'rw,relatime,fd=23,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'mountpoint': '/proc/sys/fs/binfmt_misc', 'fstype': 'autofs'}, 'fusectl': {'opts': 'rw,relatime', 'mountpoint': '/sys/fs/fuse/connections', 'fstype': 'fusectl'}, 'proc': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/proc', 'fstype': 'proc'}} mounts from proc
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['mount', '-o', 'ro,sync', '-t', 'auto', '/dev/vdb', '/tmp/tmpzvifp53q'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:46 lw1 kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Aug 11 15:57:46 lw1 kernel: ISO 9660 Extensions: RRIP_1991A
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] openstack.py[DEBUG]: Unable to read openstack versions from /tmp/tmpzvifp53q/ due to: [Errno 2] No such file or directory: '/tmp/tmpzvifp53q/openstack'
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] openstack.py[DEBUG]: Selected version 'latest' from []
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmpzvifp53q/openstack/latest/user_data (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] openstack.py[DEBUG]: Failed reading optional path /tmp/tmpzvifp53q/openstack/latest/user_data due to: [Errno 2] No such file or directory: '/tmp/tmpzvifp53q/openstack/latest/user_data'
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmpzvifp53q/openstack/latest/vendor_data.json (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] openstack.py[DEBUG]: Failed reading optional path /tmp/tmpzvifp53q/openstack/latest/vendor_data.json due to: [Errno 2] No such file or directory: '/tmp/tmpzvifp53q/openstack/latest/vendor_data.json'
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmpzvifp53q/openstack/latest/meta_data.json (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] openstack.py[DEBUG]: Failed reading mandatory path /tmp/tmpzvifp53q/openstack/latest/meta_data.json due to: [Errno 2] No such file or directory: '/tmp/tmpzvifp53q/openstack/latest/meta_data.json'
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['umount', '/tmp/tmpzvifp53q'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Recursively deleting /tmp/tmpzvifp53q
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOpenNebula.DataSourceOpenNebula'>
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=CONTEXT', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=CDROM', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Read 2228 bytes from /proc/mounts
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Fetched {'sysfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys', 'fstype': 'sysfs'}, 'devpts': {'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'mountpoint': '/dev/pts', 'fstype': 'devpts'}, 'lxcfs': {'opts': 'rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other', 'mountpoint': '/var/lib/lxcfs', 'fstype': 'fuse.lxcfs'}, '/dev/vda1': {'opts': 'rw,relatime,data=ordered', 'mountpoint': '/', 'fstype': 'ext4'}, 'tmpfs': {'opts': 'rw,mode=755', 'mountpoint': '/sys/fs/cgroup', 'fstype': 'tmpfs'}, 'sunrpc': {'opts': 'rw,relatime', 'mountpoint': '/run/rpc_pipefs', 'fstype': 'rpc_pipefs'}, 'udev': {'opts': 'rw,relatime,size=2017560k,nr_inodes=504390,mode=755', 'mountpoint': '/dev', 'fstype': 'devtmpfs'}, 'debugfs': {'opts': 'rw,relatime', 'mountpoint': '/sys/kernel/debug', 'fstype': 'debugfs'}, 'hugetlbfs': {'opts': 'rw,relatime', 'mountpoint': '/dev/hugepages', 'fstype': 'hugetlbfs'}, 'securityfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/kernel/security', 'fstype': 'securityfs'}, 'cgmfs': {'opts': 'rw,relatime,size=100k,mode=755', 'mountpoint': '/run/cgmanager/fs', 'fstype': 'tmpfs'}, 'cgroup': {'opts': 'rw,nosuid,nodev,noexec,relatime,devices', 'mountpoint': '/sys/fs/cgroup/devices', 'fstype': 'cgroup'}, 'pstore': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/fs/pstore', 'fstype': 'pstore'}, 'mqueue': {'opts': 'rw,relatime', 'mountpoint': '/dev/mqueue', 'fstype': 'mqueue'}, 'systemd-1': {'opts': 'rw,relatime,fd=23,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'mountpoint': '/proc/sys/fs/binfmt_misc', 'fstype': 'autofs'}, 'fusectl': {'opts': 'rw,relatime', 'mountpoint': '/sys/fs/fuse/connections', 'fstype': 'fusectl'}, 'proc': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/proc', 'fstype': 'proc'}} mounts from proc
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['mount', '-o', 'ro,sync', '-t', 'auto', '/dev/vdb', '/tmp/tmpfj4hsm3s'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:46 lw1 kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Running command ['umount', '/tmp/tmpfj4hsm3s'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:46 lw1 kernel: ISO 9660 Extensions: RRIP_1991A
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Recursively deleting /tmp/tmpfj4hsm3s
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOVF.DataSourceOVF'>
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Read 2228 bytes from /proc/mounts
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Fetched {'sysfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys', 'fstype': 'sysfs'}, 'devpts': {'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'mountpoint': '/dev/pts', 'fstype': 'devpts'}, 'lxcfs': {'opts': 'rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other', 'mountpoint': '/var/lib/lxcfs', 'fstype': 'fuse.lxcfs'}, '/dev/vda1': {'opts': 'rw,relatime,data=ordered', 'mountpoint': '/', 'fstype': 'ext4'}, 'tmpfs': {'opts': 'rw,mode=755', 'mountpoint': '/sys/fs/cgroup', 'fstype': 'tmpfs'}, 'sunrpc': {'opts': 'rw,relatime', 'mountpoint': '/run/rpc_pipefs', 'fstype': 'rpc_pipefs'}, 'udev': {'opts': 'rw,relatime,size=2017560k,nr_inodes=504390,mode=755', 'mountpoint': '/dev', 'fstype': 'devtmpfs'}, 'debugfs': {'opts': 'rw,relatime', 'mountpoint': '/sys/kernel/debug', 'fstype': 'debugfs'}, 'hugetlbfs': {'opts': 'rw,relatime', 'mountpoint': '/dev/hugepages', 'fstype': 'hugetlbfs'}, 'securityfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/kernel/security', 'fstype': 'securityfs'}, 'cgmfs': {'opts': 'rw,relatime,size=100k,mode=755', 'mountpoint': '/run/cgmanager/fs', 'fstype': 'tmpfs'}, 'cgroup': {'opts': 'rw,nosuid,nodev,noexec,relatime,devices', 'mountpoint': '/sys/fs/cgroup/devices', 'fstype': 'cgroup'}, 'pstore': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/fs/pstore', 'fstype': 'pstore'}, 'mqueue': {'opts': 'rw,relatime', 'mountpoint': '/dev/mqueue', 'fstype': 'mqueue'}, 'systemd-1': {'opts': 'rw,relatime,fd=23,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'mountpoint': '/proc/sys/fs/binfmt_misc', 'fstype': 'autofs'}, 'fusectl': {'opts': 'rw,relatime', 'mountpoint': '/sys/fs/fuse/connections', 'fstype': 'fusectl'}, 'proc': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/proc', 'fstype': 'proc'}} mounts from proc
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] cloud-init[DEBUG]: No local datasource found
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: Read 10 bytes from /proc/uptime
Aug 11 15:57:46 lw1 cloud-init[732]: [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'init' took 0.285 seconds (0.29)
Aug 11 15:57:46 lw1 cloud-init[732]: Cloud-init v. 0.7.7 running 'init-local' at Tue, 11 Aug 2015 15:57:46 +0000. Up 6.67 seconds.
Aug 11 15:57:46 lw1 systemd[1]: Started Initial cloud-init job (pre-networking).
Aug 11 15:57:46 lw1 systemd[1]: Starting Initial cloud-init job (metadata service crawler)...
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 running 'init' at Tue, 11 Aug 2015 15:57:47 +0000. Up 7.26 seconds.
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cloud-init[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/data/no-net (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cloud-init[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Aug 11 15:57:47 lw1 cloud-init[1050]: [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', 'NETWORK']
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Searching for data source in: ['DataSourceNoCloudNet', 'DataSourceConfigDriveNet', 'DataSourceOpenNebulaNet', 'DataSourceAzureNet', 'DataSourceAltCloud', 'DataSourceOVFNet', 'DataSourceMAAS', 'DataSourceGCE', 'DataSourceOpenStack', 'DataSourceCloudSigmaNet', 'DataSourceSmartOS', 'DataSourceEc2', 'DataSourceCloudStack', 'DataSourceNone']
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloudNet'>
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 118 bytes from /proc/cmdline
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] DataSourceNoCloud.py[DEBUG]: Attempting to use data from /dev/vdb
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2228 bytes from /proc/mounts
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Fetched {'/dev/vda1': {'mountpoint': '/', 'opts': 'rw,relatime,data=ordered', 'fstype': 'ext4'}, 'proc': {'mountpoint': '/proc', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'proc'}, 'tmpfs': {'mountpoint': '/sys/fs/cgroup', 'opts': 'rw,mode=755', 'fstype': 'tmpfs'}, 'systemd-1': {'mountpoint': '/proc/sys/fs/binfmt_misc', 'opts': 'rw,relatime,fd=23,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'fstype': 'autofs'}, 'hugetlbfs': {'mountpoint': '/dev/hugepages', 'opts': 'rw,relatime', 'fstype': 'hugetlbfs'}, 'sysfs': {'mountpoint': '/sys', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'sysfs'}, 'cgroup': {'mountpoint': '/sys/fs/cgroup/devices', 'opts': 'rw,nosuid,nodev,noexec,relatime,devices', 'fstype': 'cgroup'}, 'debugfs': {'mountpoint': '/sys/kernel/debug', 'opts': 'rw,relatime', 'fstype': 'debugfs'}, 'fusectl': {'mountpoint': '/sys/fs/fuse/connections', 'opts': 'rw,relatime', 'fstype': 'fusectl'}, 'securityfs': {'mountpoint': '/sys/kernel/security', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'securityfs'}, 'mqueue': {'mountpoint': '/dev/mqueue', 'opts': 'rw,relatime', 'fstype': 'mqueue'}, 'udev': {'mountpoint': '/dev', 'opts': 'rw,relatime,size=2017560k,nr_inodes=504390,mode=755', 'fstype': 'devtmpfs'}, 'sunrpc': {'mountpoint': '/run/rpc_pipefs', 'opts': 'rw,relatime', 'fstype': 'rpc_pipefs'}, 'pstore': {'mountpoint': '/sys/fs/pstore', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'pstore'}, 'lxcfs': {'mountpoint': '/var/lib/lxcfs', 'opts': 'rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other', 'fstype': 'fuse.lxcfs'}, 'cgmfs': {'mountpoint': '/run/cgmanager/fs', 'opts': 'rw,relatime,size=100k,mode=755', 'fstype': 'tmpfs'}, 'devpts': {'mountpoint': '/dev/pts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'fstype': 'devpts'}} mounts from proc
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['mount', '-o', 'ro,sync', '-t', 'auto', '/dev/vdb', '/tmp/tmp22hebv89'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp22hebv89//user-data (quiet=False)
Aug 11 15:57:47 lw1 kernel: ISO 9660 Extensions: RRIP_1991A
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 1902 bytes from /tmp/tmp22hebv89//user-data
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp22hebv89//meta-data (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 52 bytes from /tmp/tmp22hebv89//meta-data
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /tmp/tmp22hebv89//vendor-data (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['umount', '/tmp/tmp22hebv89'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Recursively deleting /tmp/tmp22hebv89
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 52 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] DataSourceNoCloud.py[DEBUG]: Using data from /dev/vdb
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[INFO]: Loaded datasource DataSourceNoCloudNet - DataSourceNoCloudNet [seed=/dev/vdb][dsmode=net]
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 118 bytes from /proc/cmdline
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2992 bytes from /etc/cloud/cloud.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 2992 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8'
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8/datasource (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 71 bytes from /var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8/datasource
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8/datasource - wb: [420] 71 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 71 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 37 bytes from /var/lib/cloud/data/instance-id
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 37 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 37 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cloud-init[DEBUG]: init will now be targeting instance id: 2360bf9e-3d27-11e5-b5b9-002421ef2ed8
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 118 bytes from /proc/cmdline
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2992 bytes from /etc/cloud/cloud.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 2992 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2025 bytes from /var/lib/cloud/instance/cloud-config.txt
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 2025 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 6848 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8/user-data.txt - wb: [384] 1902 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1902 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8/user-data.txt.i - wb: [384] 2207 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8/vendor-data.txt - wb: [384] 0 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8/vendor-data.txt.i - wb: [384] 0 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: consume_data already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/cloud-config', 'text/cloud-config-jsonp'} from CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']]
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (__begin__, None, 3) with frequency always
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency always
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency always
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: {'MIME-Version': '1.0', 'Content-Type': 'text/cloud-config', 'Content-Disposition': 'attachment; filename="part-001"'}
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (text/cloud-config, part-001, 3) with frequency always
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1902 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (__end__, None, 3) with frequency always
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/2360bf9e-3d27-11e5-b5b9-002421ef2ed8/cloud-config.txt - wb: [384] 2025 bytes
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency always
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency always
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[DEBUG]: no vendordata from datasource
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/cmdline (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 118 bytes from /proc/cmdline
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2992 bytes from /etc/cloud/cloud.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 2992 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2025 bytes from /var/lib/cloud/instance/cloud-config.txt
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 2025 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2025 bytes from /var/lib/cloud/instance/cloud-config.txt
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 2025 with allowed root types (<class 'dict'>,)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7ff7faca4cc0>)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: config-ubuntu-init-switch already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: config-seed_random already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7ff7faca40f0>)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: config-write-files already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7ff7faca4cc0>)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_growpart.py[DEBUG]: No 'growpart' entry in cfg. Using default: {'mode': 'auto', 'devices': ['/'], 'ignore_growroot_disabled': False}
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/1050/mountinfo (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2912 bytes from /proc/1050/mountinfo
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/block/vda1/partition (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2 bytes from /sys/class/block/vda1/partition
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/dev (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 6 bytes from /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/dev
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/vda', '1'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: resize_devices took 0.035 seconds
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_growpart.py[DEBUG]: '/' NOCHANGE: no change necessary (/dev/vda, 1)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7ff7faca40f0>)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/1050/mountinfo (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 2912 bytes from /proc/1050/mountinfo
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_resizefs.py[DEBUG]: resize_info: dev=/dev/vda1 mnt_point=/ path=/
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 151 bytes from /proc/1/environ
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 844 bytes from /proc/self/status
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/vda1
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Running command ('resize2fs', '/dev/vda1') with allowed return codes [0] (shell=False, capture=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Resizing took 0.010 seconds
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: config-set_hostname already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7ff7fb1bbd68>)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 271 bytes from /etc/hosts
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_update_hostname.py[DEBUG]: Updating hostname to lw1.localdomain (lw1)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 4 bytes from /var/lib/cloud/data/previous-hostname
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 4 bytes from /etc/hostname
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] __init__.py[DEBUG]: Attempting to update hostname to lw1 in 0 files
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7ff7fb1bbcf8>)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 271 bytes from /etc/hosts
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cc_update_etc_hosts.py[DEBUG]: Managing localhost in /etc/hosts
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /etc/hosts (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 271 bytes from /etc/hosts
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: config-ca-certs already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: config-rsyslog already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: config-users-groups already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [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
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] helpers.py[DEBUG]: config-ssh already ran (freq=once-per-instance)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] cloud-init[DEBUG]: Ran 14 modules with 0 failures
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: Read 10 bytes from /proc/uptime
Aug 11 15:57:47 lw1 cloud-init[1050]: [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'init' took 0.386 seconds (0.39)
Aug 11 15:57:47 lw1 cloud-init[1050]: Cloud-init v. 0.7.7 running 'init' at Tue, 11 Aug 2015 15:57:47 +0000. Up 7.26 seconds.
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: +++++++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++++++
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: +------------+-------+------------------------------+---------------+-------+-------------------+
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: +------------+-------+------------------------------+---------------+-------+-------------------+
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | virbr0 | True | 192.168.123.1 | 255.255.255.0 | . | 52:54:00:57:f8:20 |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | lxcbr0 | True | 10.0.3.1 | 255.255.255.0 | . | 1a:7b:59:a6:22:b8 |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | lxcbr0 | True | fe80::187b:59ff:fea6:22b8/64 | . | link | 1a:7b:59:a6:22:b8 |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | virbr0-nic | False | . | . | . | 52:54:00:57:f8:20 |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | . | . |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | lo | True | ::1/128 | . | host | . |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | eth0 | True | 192.168.122.230 | 255.255.255.0 | . | 52:54:00:cb:a3:b6 |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | eth0 | True | fe80::5054:ff:fecb:a3b6/64 | . | link | 52:54:00:cb:a3:b6 |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: +------------+-------+------------------------------+---------------+-------+-------------------+
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: +++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: +-------+---------------+---------------+---------------+-----------+-------+
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: +-------+---------------+---------------+---------------+-----------+-------+
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | 0 | 0.0.0.0 | 192.168.122.1 | 0.0.0.0 | eth0 | UG |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | 1 | 10.0.3.0 | 0.0.0.0 | 255.255.255.0 | lxcbr0 | U |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | 2 | 192.168.122.0 | 0.0.0.0 | 255.255.255.0 | eth0 | U |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: | 3 | 192.168.123.0 | 0.0.0.0 | 255.255.255.0 | virbr0 | U |
Aug 11 15:57:47 lw1 cloud-init[1050]: ci-info: +-------+---------------+---------------+---------------+-----------+-------+
Aug 11 15:57:47 lw1 systemd[1]: Started Initial cloud-init job (metadata service crawler).
Aug 11 15:57:47 lw1 systemd[1]: Started OpenBSD Secure Shell server.
Aug 11 15:57:47 lw1 systemd[1]: Reached target Cloud-config availability.
Aug 11 15:57:47 lw1 systemd[1]: Starting Apply the settings specified in cloud-config...
Aug 11 15:57:47 lw1 systemd[1]: Starting Permit User Sessions...
Aug 11 15:57:47 lw1 systemd[1]: Started Permit User Sessions.
Aug 11 15:57:47 lw1 systemd[1]: Starting Wait for Plymouth Boot Screen to Quit...
Aug 11 15:57:47 lw1 systemd[1]: Starting Terminate Plymouth Boot Screen...
Aug 11 15:57:47 lw1 systemd[1]: Received SIGRTMIN+21 from PID 204 (plymouthd).
Aug 11 15:57:47 lw1 sshd[1096]: Server listening on 0.0.0.0 port 22.
Aug 11 15:57:47 lw1 sshd[1096]: Server listening on :: port 22.
Aug 11 15:57:47 lw1 systemd[1]: Started Terminate Plymouth Boot Screen.
Aug 11 15:57:47 lw1 systemd[1]: Started Wait for Plymouth Boot Screen to Quit.
Aug 11 15:57:47 lw1 systemd[1]: Started Serial Getty on ttyS0.
Aug 11 15:57:47 lw1 systemd[1]: Started Getty on tty1.
Aug 11 15:57:47 lw1 plymouth[1101]: error: unexpectedly disconnected from boot status daemon
Aug 11 15:57:47 lw1 systemd[1]: Reached target Login Prompts.
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 running 'modules:config' at Tue, 11 Aug 2015 15:57:48 +0000. Up 8.17 seconds.
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7f6645e1a358>)
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] cc_emit_upstart.py[DEBUG]: not upstart system, '%s' disabled
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-disk_setup already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-mounts already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-ssh-import-id already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-locale already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-set-passwords already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-snappy already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-grub-dpkg already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-apt-pipelining already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-apt-configure already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-package-update-upgrade-install already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-landscape already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-timezone already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-puppet already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-chef already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-salt-minion already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-mcollective already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7f6645e1a400>)
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-runcmd already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [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
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] helpers.py[DEBUG]: config-byobu already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] cloud-init[DEBUG]: Ran 20 modules with 0 failures
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] util.py[DEBUG]: Read 10 bytes from /proc/uptime
Aug 11 15:57:48 lw1 cloud-init[1097]: [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 0.112 seconds (0.11)
Aug 11 15:57:48 lw1 cloud-init[1097]: Cloud-init v. 0.7.7 running 'modules:config' at Tue, 11 Aug 2015 15:57:48 +0000. Up 8.17 seconds.
Aug 11 15:57:48 lw1 systemd[1]: Started Apply the settings specified in cloud-config.
Aug 11 15:57:48 lw1 systemd[1]: Starting Execute cloud user/final scripts...
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 running 'modules:final' at Tue, 11 Aug 2015 15:57:48 +0000. Up 8.57 seconds.
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-rightscale_userdata already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-scripts-vendor already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-scripts-per-once already ran (freq=once)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f6ef2ddb588>)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-scripts-per-instance already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-scripts-user already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-ssh-authkey-fingerprints already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-keys-to-console already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-phone-home already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f6ef2ddb518>)
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: Read 10 bytes from /proc/uptime
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.7 finished at Tue, 11 Aug 2015 15:57:48 +0000. Datasource DataSourceNoCloudNet [seed=/dev/vdb][dsmode=net]. Up 8.65 seconds
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 50 bytes
Aug 11 15:57:48 lw1 cloud-init[1109]: [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
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] helpers.py[DEBUG]: config-power-state-change already ran (freq=once-per-instance)
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] cloud-init[DEBUG]: Ran 11 modules with 0 failures
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: Read 10 bytes from /proc/uptime
Aug 11 15:57:48 lw1 cloud-init[1109]: [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 0.094 seconds (0.09)
Aug 11 15:57:48 lw1 cloud-init[1109]: Cloud-init v. 0.7.7 running 'modules:final' at Tue, 11 Aug 2015 15:57:48 +0000. Up 8.57 seconds.
Aug 11 15:57:48 lw1 cloud-init[1109]: Cloud-init v. 0.7.7 finished at Tue, 11 Aug 2015 15:57:48 +0000. Datasource DataSourceNoCloudNet [seed=/dev/vdb][dsmode=net]. Up 8.65 seconds
Aug 11 15:57:48 lw1 systemd[1]: Started Execute cloud user/final scripts.
Aug 11 15:57:48 lw1 systemd[1]: Reached target Multi-User System.
Aug 11 15:57:48 lw1 systemd[1]: Reached target Graphical Interface.
Aug 11 15:57:48 lw1 systemd[1]: Starting Update UTMP about System Runlevel Changes...
Aug 11 15:57:48 lw1 systemd[1]: Started Update UTMP about System Runlevel Changes.
Aug 11 15:57:48 lw1 systemd[1]: Startup finished in 3.041s (kernel) + 5.707s (userspace) = 8.748s.
Aug 11 15:57:49 lw1 sshd[1119]: Accepted publickey for ubuntu from 192.168.122.1 port 36846 ssh2: RSA b3:9e:fd:b0:bd:01:91:27:49:4a:2f:2b:46:96:da:43
Aug 11 15:57:49 lw1 sshd[1119]: pam_unix(sshd:session): session opened for user ubuntu by (uid=0)
Aug 11 15:57:49 lw1 systemd[1]: Created slice user-1000.slice.
Aug 11 15:57:49 lw1 systemd[1]: Starting User Manager for UID 1000...
Aug 11 15:57:49 lw1 systemd[1121]: pam_unix(systemd-user:session): session opened for user ubuntu by (uid=0)
Aug 11 15:57:49 lw1 systemd[1]: Started Session 1 of user ubuntu.
Aug 11 15:57:49 lw1 systemd-logind[758]: New session 1 of user ubuntu.
Aug 11 15:57:49 lw1 systemd[1121]: Reached target Timers.
Aug 11 15:57:49 lw1 systemd[1121]: Reached target Paths.
Aug 11 15:57:49 lw1 systemd[1121]: Reached target Sockets.
Aug 11 15:57:49 lw1 systemd[1121]: Reached target Basic System.
Aug 11 15:57:49 lw1 systemd[1121]: Reached target Default.
Aug 11 15:57:49 lw1 systemd[1121]: Startup finished in 23ms.
Aug 11 15:57:49 lw1 systemd[1]: Started User Manager for UID 1000.
Aug 11 15:57:54 lw1 audit[1221]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-f818574e-49ec-45f1-b1e9-dfa663c8d3f3" pid=1221 comm="apparmor_parser"
Aug 11 15:57:54 lw1 kernel: audit: type=1400 audit(1439308674.052:17): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirt-f818574e-49ec-45f1-b1e9-dfa663c8d3f3" pid=1221 comm="apparmor_parser"
Aug 11 15:57:54 lw1 audit[1221]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="qemu_bridge_helper" pid=1221 comm="apparmor_parser"
Aug 11 15:57:54 lw1 kernel: audit: type=1400 audit(1439308674.056:18): apparmor="STATUS" operation="profile_load" profile="unconfined" name="qemu_bridge_helper" pid=1221 comm="apparmor_parser"
Aug 11 15:57:54 lw1 kernel: device vnet0 entered promiscuous mode
Aug 11 15:57:54 lw1 kernel: virbr0: port 2(vnet0) entered listening state
Aug 11 15:57:54 lw1 kernel: virbr0: port 2(vnet0) entered listening state
Aug 11 15:57:54 lw1 audit[1245]: AVC apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-f818574e-49ec-45f1-b1e9-dfa663c8d3f3" pid=1245 comm="apparmor_parser"
Aug 11 15:57:54 lw1 kernel: audit: type=1400 audit(1439308674.284:19): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="libvirt-f818574e-49ec-45f1-b1e9-dfa663c8d3f3" pid=1245 comm="apparmor_parser"
Aug 11 15:57:54 lw1 audit[1245]: AVC apparmor="STATUS" operation="profile_replace" profile="unconfined" name="qemu_bridge_helper" pid=1245 comm="apparmor_parser"
Aug 11 15:57:54 lw1 kernel: audit: type=1400 audit(1439308674.288:20): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="qemu_bridge_helper" pid=1245 comm="apparmor_parser"
Aug 11 15:57:54 lw1 dbus[792]: [system] Activating via systemd: service name='org.freedesktop.machine1' unit='dbus-org.freedesktop.machine1.service'
Aug 11 15:57:54 lw1 systemd[1]: Created slice Virtual Machine and Container Slice.
Aug 11 15:57:54 lw1 systemd[1]: Starting Virtual Machine and Container Registration Service...
Aug 11 15:57:54 lw1 dbus[792]: [system] Successfully activated service 'org.freedesktop.machine1'
Aug 11 15:57:54 lw1 systemd[1]: Started Virtual Machine and Container Registration Service.
Aug 11 15:57:54 lw1 systemd[1]: Started Virtual Machine qemu-cdboot.
Aug 11 15:57:54 lw1 systemd-machined[1248]: New machine qemu-cdboot.
Aug 11 15:57:56 lw1 kernel: virbr0: port 2(vnet0) entered learning state
Aug 11 15:57:58 lw1 kernel: virbr0: topology change detected, propagating
Aug 11 15:57:58 lw1 kernel: virbr0: port 2(vnet0) entered forwarding state
Aug 11 15:58:00 lw1 sudo[1253]: ubuntu : TTY=pts/0 ; PWD=/home/ubuntu ; USER=root ; COMMAND=/sbin/reboot
Aug 11 15:58:00 lw1 sudo[1253]: pam_unix(sudo:session): session opened for user root by ubuntu(uid=0)
Aug 11 15:58:00 lw1 polkitd(authority=local)[847]: Registered Authentication Agent for unix-process:1254:2097 (system bus name :1.8 [/usr/bin/pkttyagent --notify-fd 5 --fallback], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Aug 11 15:58:00 lw1 systemd[1]: Stopped target RPC Port Mapper.
Aug 11 15:58:00 lw1 systemd[1]: Stopping User Manager for UID 1000...
Aug 11 15:58:00 lw1 systemd[1]: Starting Unattended Upgrades Shutdown...
Aug 11 15:58:00 lw1 systemd[1]: Unmounting RPC Pipe File System...
Aug 11 15:58:00 lw1 systemd[1121]: Reached target Shutdown.
Aug 11 15:58:00 lw1 sudo[1253]: pam_unix(sudo:session): session closed for user root
Aug 11 15:58:00 lw1 systemd[1121]: Starting Exit the Session...
Aug 11 15:58:00 lw1 sshd[1119]: pam_unix(sshd:session): session closed for user ubuntu
Aug 11 15:58:00 lw1 systemd[1121]: Stopped target Default.
Aug 11 15:58:00 lw1 systemd[1122]: pam_unix(systemd-user:session): session closed for user ubuntu
Aug 11 15:58:00 lw1 systemd[1121]: Stopped target Basic System.
Aug 11 15:58:00 lw1 systemd[1121]: Stopped target Paths.
Aug 11 15:58:00 lw1 sshd[1096]: Received signal 15; terminating.
Aug 11 15:58:00 lw1 systemd[1121]: Stopped target Sockets.
Aug 11 15:58:00 lw1 systemd[1121]: Stopped target Timers.
Aug 11 15:58:00 lw1 systemd[1]: Stopping Session 1 of user ubuntu.
Aug 11 15:58:00 lw1 systemd[1]: Stopped target System Time Synchronized.
Aug 11 15:58:00 lw1 systemd[1]: Stopped target Timers.
Aug 11 15:58:00 lw1 systemd[1]: Starting Stop Active Libvirt Guests...
Aug 11 15:58:00 lw1 systemd[1]: Stopping Authenticate and Authorize Users to Run Privileged Tasks...
Aug 11 15:58:00 lw1 systemd[1]: Stopping Accounts Service...
Aug 11 15:58:00 lw1 systemd[1121]: Received SIGRTMIN+24 from PID 1263 (kill).
Aug 11 15:58:00 lw1 systemd[1]: Stopped target Multi-User System.
Aug 11 15:58:00 lw1 systemd[1]: Stopped Execute cloud user/final scripts.
Aug 11 15:58:00 lw1 systemd[1]: Stopping OpenBSD Secure Shell server...
Aug 11 15:58:00 lw1 systemd[1]: Stopping Regular background program processing daemon...
Aug 11 15:58:00 lw1 systemd[1]: Stopping System Logging Service...
Aug 11 15:58:00 lw1 systemd[1]: Stopped target Login Prompts.
Aug 11 15:58:01 lw1 kernel: virbr0: port 2(vnet0) entered disabled state
Aug 11 15:58:01 lw1 kernel: device vnet0 left promiscuous mode
Aug 11 15:58:01 lw1 kernel: virbr0: port 2(vnet0) entered disabled state
Aug 11 15:58:00 lw1 systemd[1]: Stopping Serial Getty on ttyS0...
Aug 11 15:58:00 lw1 systemd[1]: Stopping Getty on tty1...
Aug 11 15:58:00 lw1 systemd[1]: Stopping Deferred execution scheduler...
Aug 11 15:58:00 lw1 systemd[1]: Stopping LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Aug 11 15:58:00 lw1 systemd[1]: Stopping LXC Container Initialization and Autoboot Code...
Aug 11 15:58:00 lw1 systemd[1]: Stopping Virtualization daemon...
Aug 11 15:58:01 lw1 systemd[1]: Stopping LSB: Router Advertising Daemon...
Aug 11 15:58:01 lw1 systemd[1]: Stopping LSB: Landscape client daemons...
Aug 11 15:58:01 lw1 systemd[1]: Stopping LSB: daemon to balance interrupts for SMP systems...
Aug 11 15:58:01 lw1 systemd[1]: Stopping LSB: automatic crash report generation...
Aug 11 15:58:01 lw1 systemd[1]: Stopping LSB: Record successful boot for GRUB...
Aug 11 15:58:01 lw1 systemd[1]: Stopping Virtual Machine qemu-cdboot.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Apply the settings specified in cloud-config.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Daily Cleanup of Temporary Directories.
Aug 11 15:58:01 lw1 systemd[1]: Stopping Virtual Machine and Container Registration Service...
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Cloud-config availability.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Setup Virtual Console.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Deferred execution scheduler.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Accounts Service.
Aug 11 15:58:01 lw1 systemd[1]: Stopped System Logging Service.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Regular background program processing daemon.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Virtualization daemon.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Authenticate and Authorize Users to Run Privileged Tasks.
Aug 11 15:58:01 lw1 systemd[1]: Stopped OpenBSD Secure Shell server.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Serial Getty on ttyS0.
Aug 11 15:58:01 lw1 radvd[1288]: Stopping radvd: No /usr/sbin/radvd found running; none killed.
Aug 11 15:58:01 lw1 radvd[1288]: radvd.
Aug 11 15:58:01 lw1 libvirt[1323]: libvirt-bin: starting wait_on_vms at Tue Aug 11 15:58:01 UTC 2015
Aug 11 15:58:01 lw1 libvirt-stop-guests[1264]: error: failed to connect to the hypervisor
Aug 11 15:58:01 lw1 libvirt-stop-guests[1264]: error: no valid connection
Aug 11 15:58:01 lw1 libvirt-stop-guests[1264]: error: Failed to connect socket to '/var/run/libvirt/libvirt-sock': No such file or directory
Aug 11 15:58:01 lw1 systemd[1]: Stopped Getty on tty1.
Aug 11 15:58:01 lw1 systemd[1]: Stopped User Manager for UID 1000.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Virtual Machine qemu-cdboot.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Virtual Machine and Container Registration Service.
Aug 11 15:58:01 lw1 systemd[1]: Unmounted RPC Pipe File System.
Aug 11 15:58:01 lw1 landscape-client[1293]: * Stopping landscape-client daemon
Aug 11 15:58:01 lw1 landscape-client[1293]: ...fail!
Aug 11 15:58:01 lw1 irqbalance[1297]: * Stopping SMP IRQ Balancer: irqbalance
Aug 11 15:58:01 lw1 irqbalance[1297]: ...done.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Session 1 of user ubuntu.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: Set the CPU Frequency Scaling governor to "ondemand".
Aug 11 15:58:01 lw1 systemd[1]: Stopped LXC Container Initialization and Autoboot Code.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: Router Advertising Daemon.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: Landscape client daemons.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: daemon to balance interrupts for SMP systems.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: automatic crash report generation.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: Record successful boot for GRUB.
Aug 11 15:58:01 lw1 apport[1301]: * Stopping automatic crash report generation: apport
Aug 11 15:58:01 lw1 apport[1301]: ...done.
Aug 11 15:58:01 lw1 libvirt-stop-guests[1264]: error: failed to connect to the hypervisor
Aug 11 15:58:01 lw1 libvirt-stop-guests[1264]: error: no valid connection
Aug 11 15:58:01 lw1 libvirt-stop-guests[1264]: error: Failed to connect socket to '/var/run/libvirt/libvirt-sock': No such file or directory
Aug 11 15:58:01 lw1 libvirt[1335]: looking at uri qemu:///system
Aug 11 15:58:01 lw1 libvirt[1336]: running run_virsh -c (uri) list
Aug 11 15:58:01 lw1 systemd[1]: Stopping FUSE filesystem for LXC...
Aug 11 15:58:01 lw1 systemd[1]: Stopping LXC network bridge setup...
Aug 11 15:58:01 lw1 systemd[1]: Stopping Login Service...
Aug 11 15:58:01 lw1 systemd[1]: Removed slice user-1000.slice.
Aug 11 15:58:01 lw1 systemd[1]: Removed slice system-getty.slice.
Aug 11 15:58:01 lw1 systemd[1]: Removed slice system-serial\x2dgetty.slice.
Aug 11 15:58:01 lw1 systemd[1]: Stopped /etc/rc.local Compatibility.
Aug 11 15:58:01 lw1 systemd[1]: Stopping Permit User Sessions...
Aug 11 15:58:01 lw1 systemd[1]: Stopping D-Bus System Message Bus...
Aug 11 15:58:01 lw1 systemd[1]: Unmounted /var/lib/lxcfs.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Login Service.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Permit User Sessions.
Aug 11 15:58:01 lw1 fusermount[1346]: /bin/fusermount: failed to unmount /var/lib/lxcfs: Invalid argument
Aug 11 15:58:01 lw1 systemd[1]: Stopped D-Bus System Message Bus.
Aug 11 15:58:01 lw1 systemd[1]: Stopped FUSE filesystem for LXC.
Aug 11 15:58:01 lw1 systemd[1]: Stopping Cgroup management daemon...
Aug 11 15:58:01 lw1 systemd[1]: Stopped Initial cloud-init job (metadata service crawler).
Aug 11 15:58:01 lw1 systemd[1]: Stopped Initial cloud-init job (pre-networking).
Aug 11 15:58:01 lw1 systemd[1]: Stopped target User and Group Name Lookups.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Cgroup management daemon.
Aug 11 15:58:01 lw1 libvirt[1365]: looking at uri lxc:///
Aug 11 15:58:01 lw1 libvirt[1367]: running run_virsh -c (uri) list
Aug 11 15:58:01 lw1 systemd[1]: Stopped LXC network bridge setup.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Basic System.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Sockets.
Aug 11 15:58:01 lw1 systemd[1]: Closed D-Bus System Message Bus Socket.
Aug 11 15:58:01 lw1 systemd[1]: Closed Syslog Socket.
Aug 11 15:58:01 lw1 systemd[1]: Closed UUID daemon activation socket.
Aug 11 15:58:01 lw1 systemd[1]: Closed ACPID Listen Socket.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target System Initialization.
Aug 11 15:58:01 lw1 systemd[1]: Stopping Update UTMP about System Boot/Shutdown...
Aug 11 15:58:01 lw1 systemd[1]: Stopping LSB: Starts and stops the iSCSI initiator services and logs in to default targets...
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Encrypted Volumes.
Aug 11 15:58:01 lw1 systemd[1]: Stopping LSB: ebtables ruleset management...
Aug 11 15:58:01 lw1 systemd[1]: Stopped Apply Kernel Variables.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Load Kernel Modules.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Swap.
Aug 11 15:58:01 lw1 systemd[1]: Stopping Network Time Synchronization...
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Paths.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Slices.
Aug 11 15:58:01 lw1 systemd[1]: Removed slice Virtual Machine and Container Slice.
Aug 11 15:58:01 lw1 systemd[1]: Removed slice User and Session Slice.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Network Time Synchronization.
Aug 11 15:58:01 lw1 systemd[1]: Stopped Update UTMP about System Boot/Shutdown.
Aug 11 15:58:01 lw1 libvirt[1421]: looking at uri xen:///
Aug 11 15:58:01 lw1 libvirt[1425]: running run_virsh -c (uri) list
Aug 11 15:58:01 lw1 ebtables[1384]: * Clearing ebtables rulesets
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: Unmounts iSCSI filesystems.
Aug 11 15:58:01 lw1 open-iscsi[1383]: * Disconnecting iSCSI targets
Aug 11 15:58:01 lw1 open-iscsi[1383]: iscsiadm: No matching sessions found
Aug 11 15:58:01 lw1 open-iscsi[1383]: ...done.
Aug 11 15:58:01 lw1 systemd[1]: Started Unattended Upgrades Shutdown.
Aug 11 15:58:01 lw1 open-iscsi[1383]: * Stopping iSCSI initiator service
Aug 11 15:58:01 lw1 iscsid[720]: iscsid shutting down.
Aug 11 15:58:01 lw1 open-iscsi[1383]: ...done.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: Starts and stops the iSCSI initiator services and logs in to default targets.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Remote File Systems.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Remote File Systems (Pre).
Aug 11 15:58:01 lw1 systemd[1]: Stopped target NFS client services.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Network is Online.
Aug 11 15:58:01 lw1 systemd[1]: Stopped target Network.
Aug 11 15:58:01 lw1 systemd[1]: Stopping LSB: Raise network interfaces....
Aug 11 15:58:01 lw1 systemd[1]: Stopping ifup for eth0...
Aug 11 15:58:01 lw1 networking[1462]: * Deconfiguring network interfaces...
Aug 11 15:58:01 lw1 ebtables[1384]: ...done.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: ebtables ruleset management.
Aug 11 15:58:01 lw1 kernel: Ebtables v2.0 unregistered
Aug 11 15:58:01 lw1 networking[1462]: ...done.
Aug 11 15:58:01 lw1 systemd[1]: Stopped LSB: Raise network interfaces..
Aug 11 15:58:01 lw1 systemd[1]: Stopping Load/Save Random Seed...
Aug 11 15:58:01 lw1 systemd[1]: Stopped Load/Save Random Seed.
Aug 11 15:58:01 lw1 dhclient[1487]: Killed old client process
Aug 11 15:58:01 lw1 ifdown[1463]: Killed old client process
Aug 11 15:58:01 lw1 libvirt[1525]: libvirt-bin: done with wait_on_vms at Tue Aug 11 15:58:01 UTC 2015
Aug 11 15:58:01 lw1 systemd[1]: Started Stop Active Libvirt Guests.
Aug 11 15:58:02 lw1 dhclient[1487]: Internet Systems Consortium DHCP Client 4.3.1
Aug 11 15:58:02 lw1 dhclient[1487]: Copyright 2004-2014 Internet Systems Consortium.
Aug 11 15:58:02 lw1 dhclient[1487]: All rights reserved.
Aug 11 15:58:02 lw1 dhclient[1487]: For info, please visit https://www.isc.org/software/dhcp/
Aug 11 15:58:02 lw1 dhclient[1487]:
Aug 11 15:58:02 lw1 dhclient[1487]: Listening on LPF/eth0/52:54:00:cb:a3:b6
Aug 11 15:58:02 lw1 dhclient[1487]: Sending on LPF/eth0/52:54:00:cb:a3:b6
Aug 11 15:58:02 lw1 dhclient[1487]: Sending on Socket/fallback
Aug 11 15:58:02 lw1 ifdown[1463]: Internet Systems Consortium DHCP Client 4.3.1
Aug 11 15:58:02 lw1 ifdown[1463]: Copyright 2004-2014 Internet Systems Consortium.
Aug 11 15:58:02 lw1 ifdown[1463]: All rights reserved.
Aug 11 15:58:02 lw1 ifdown[1463]: For info, please visit https://www.isc.org/software/dhcp/
Aug 11 15:58:02 lw1 ifdown[1463]: Listening on LPF/eth0/52:54:00:cb:a3:b6
Aug 11 15:58:02 lw1 ifdown[1463]: Sending on LPF/eth0/52:54:00:cb:a3:b6
Aug 11 15:58:02 lw1 ifdown[1463]: Sending on Socket/fallback
Aug 11 15:58:02 lw1 dhclient[1487]: DHCPRELEASE on eth0 to 192.168.122.1 port 67 (xid=0x796fcc71)
Aug 11 15:58:02 lw1 ifdown[1463]: DHCPRELEASE on eth0 to 192.168.122.1 port 67 (xid=0x796fcc71)
Aug 11 15:58:02 lw1 dnsmasq[1007]: no servers found in /etc/resolv.conf, will retry
Aug 11 15:58:02 lw1 systemd[1]: Stopped ifup for eth0.
Aug 11 15:58:02 lw1 systemd[1]: Stopped Create Volatile Files and Directories.
Aug 11 15:58:02 lw1 systemd[1]: Stopped target Local File Systems.
Aug 11 15:58:02 lw1 systemd[1]: Unmounting /run/user/1000...
Aug 11 15:58:02 lw1 systemd[1]: Stopping Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Aug 11 15:58:02 lw1 systemd[1]: Unmounting /run/cgmanager/fs...
Aug 11 15:58:02 lw1 systemd[1]: Removed slice system-ifup.slice.
Aug 11 15:58:02 lw1 systemd[1]: Unmounted /run/cgmanager/fs.
Aug 11 15:58:02 lw1 systemd[1]: Unmounted /run/user/1000.
Aug 11 15:58:02 lw1 systemd[1]: Reached target Unmount All Filesystems.
Aug 11 15:58:02 lw1 systemd[1]: Stopped target Local File Systems (Pre).
Aug 11 15:58:02 lw1 systemd[1]: Stopped Remount Root and Kernel File Systems.
Aug 11 15:58:02 lw1 systemd[1]: Stopped Create Static Device Nodes in /dev.
Aug 11 15:58:02 lw1 systemd[1]: Reached target Shutdown.
Aug 11 15:58:02 lw1 systemd[1]: Reached target Final Step.
Aug 11 15:58:02 lw1 systemd[1]: Starting Reboot...
Aug 11 15:58:02 lw1 systemd[1]: Stopped Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Aug 11 15:58:02 lw1 systemd[1]: Shutting down.
Aug 11 15:58:02 lw1 systemd-shutdown[1]: Sending SIGTERM to remaining processes...
Aug 11 15:58:02 lw1 rpcbind[511]: rpcbind terminating on signal. Restart with "rpcbind -w"
Aug 11 15:58:02 lw1 systemd-journal[322]: Journal stopped
|