Ubuntu Pastebin

Paste from ubuntu at Fri, 17 Nov 2017 19:33:00 +0000

Download as text
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
2017-11-17 18:26:48,844 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'init-local' at Fri, 17 Nov 2017 18:26:48 +0000. Up 5.43 seconds.
2017-11-17 18:26:48,844 - main.py[DEBUG]: No kernel command line url found.
2017-11-17 18:26:48,844 - main.py[DEBUG]: Closing stdin.
2017-11-17 18:26:48,856 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2017-11-17 18:26:48,856 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-11-17 18:26:48,857 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2017-11-17 18:26:48,857 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2017-11-17 18:26:48,857 - handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
2017-11-17 18:26:48,865 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-11-17 18:26:48,865 - stages.py[DEBUG]: no cache found
2017-11-17 18:26:48,865 - handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: no cache found
2017-11-17 18:26:48,866 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-17 18:26:48,870 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:26:48,871 - __init__.py[DEBUG]: Looking for for data source in: ['NoCloud', 'ConfigDrive', 'OpenNebula', 'DigitalOcean', 'Azure', 'AltCloud', 'OVF', 'MAAS', 'GCE', 'OpenStack', 'CloudSigma', 'SmartOS', 'Bigstep', 'Scaleway', 'Aliyun', 'Ec2', 'CloudStack', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2017-11-17 18:26:48,983 - __init__.py[DEBUG]: Searching for local data source in: ['DataSourceNoCloud', 'DataSourceConfigDrive', 'DataSourceOpenNebula', 'DataSourceDigitalOcean', 'DataSourceAzure', 'DataSourceOVF', 'DataSourceCloudSigma', 'DataSourceSmartOS']
2017-11-17 18:26:48,983 - handlers.py[DEBUG]: start: init-local/search-NoCloud: searching for local data from DataSourceNoCloud
2017-11-17 18:26:48,983 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloud'>
2017-11-17 18:26:48,983 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:48,992 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:48,994 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:48,995 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:48,995 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:48,995 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:48,995 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:26:48,995 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_serial
2017-11-17 18:26:48,995 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_serial (quiet=False)
2017-11-17 18:26:48,995 - util.py[DEBUG]: Read 37 bytes from /sys/class/dmi/id/product_serial
2017-11-17 18:26:48,995 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_serial returned ec2c85ed-6d4c-fb0f-d96c-979762ef3b0c
2017-11-17 18:26:48,995 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
2017-11-17 18:26:48,995 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
2017-11-17 18:26:48,996 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
2017-11-17 18:26:48,996 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/network-config (quiet=False)
2017-11-17 18:26:48,996 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
2017-11-17 18:26:48,996 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
2017-11-17 18:26:48,996 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
2017-11-17 18:26:48,996 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/network-config (quiet=False)
2017-11-17 18:26:48,996 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,002 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,010 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,043 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,082 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,115 - handlers.py[DEBUG]: finish: init-local/search-NoCloud: SUCCESS: no local data found from DataSourceNoCloud
2017-11-17 18:26:49,115 - handlers.py[DEBUG]: start: init-local/search-ConfigDrive: searching for local data from DataSourceConfigDrive
2017-11-17 18:26:49,115 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceConfigDrive.DataSourceConfigDrive'>
2017-11-17 18:26:49,115 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,125 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,132 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/cd0'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,138 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/cd1'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,141 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,178 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,213 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=config-2', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,257 - handlers.py[DEBUG]: finish: init-local/search-ConfigDrive: SUCCESS: no local data found from DataSourceConfigDrive
2017-11-17 18:26:49,258 - handlers.py[DEBUG]: start: init-local/search-OpenNebula: searching for local data from DataSourceOpenNebula
2017-11-17 18:26:49,258 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOpenNebula.DataSourceOpenNebula'>
2017-11-17 18:26:49,258 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=CONTEXT', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,290 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=CDROM', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,341 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:49,376 - handlers.py[DEBUG]: finish: init-local/search-OpenNebula: SUCCESS: no local data found from DataSourceOpenNebula
2017-11-17 18:26:49,376 - handlers.py[DEBUG]: start: init-local/search-DigitalOcean: searching for local data from DataSourceDigitalOcean
2017-11-17 18:26:49,376 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceDigitalOcean.DataSourceDigitalOcean'>
2017-11-17 18:26:49,376 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,382 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,388 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,389 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:49,395 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:49,395 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:49,395 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:26:49,395 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/sys_vendor
2017-11-17 18:26:49,395 - util.py[DEBUG]: Reading from /sys/class/dmi/id/sys_vendor (quiet=False)
2017-11-17 18:26:49,395 - util.py[DEBUG]: Read 4 bytes from /sys/class/dmi/id/sys_vendor
2017-11-17 18:26:49,395 - util.py[DEBUG]: dmi data /sys/class/dmi/id/sys_vendor returned Xen
2017-11-17 18:26:49,396 - handlers.py[DEBUG]: finish: init-local/search-DigitalOcean: SUCCESS: no local data found from DataSourceDigitalOcean
2017-11-17 18:26:49,396 - handlers.py[DEBUG]: start: init-local/search-Azure: searching for local data from DataSourceAzure
2017-11-17 18:26:49,396 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceAzure.DataSourceAzure'>
2017-11-17 18:26:49,396 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,400 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,406 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,409 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:49,409 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:49,409 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:49,410 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:26:49,410 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/chassis_asset_tag
2017-11-17 18:26:49,410 - util.py[DEBUG]: Reading from /sys/class/dmi/id/chassis_asset_tag (quiet=False)
2017-11-17 18:26:49,410 - util.py[DEBUG]: Read 1 bytes from /sys/class/dmi/id/chassis_asset_tag
2017-11-17 18:26:49,410 - util.py[DEBUG]: dmi data /sys/class/dmi/id/chassis_asset_tag returned 
2017-11-17 18:26:49,410 - DataSourceAzure.py[DEBUG]: Non-Azure DMI asset tag '' discovered.
2017-11-17 18:26:49,410 - handlers.py[DEBUG]: finish: init-local/search-Azure: SUCCESS: no local data found from DataSourceAzure
2017-11-17 18:26:49,410 - handlers.py[DEBUG]: start: init-local/search-OVF: searching for local data from DataSourceOVF
2017-11-17 18:26:49,410 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOVF.DataSourceOVF'>
2017-11-17 18:26:49,411 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,418 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,419 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,423 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:49,423 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:49,423 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:49,423 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:26:49,423 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:26:49,423 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:26:49,423 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:26:49,424 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:26:49,424 - util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
2017-11-17 18:26:49,424 - util.py[DEBUG]: Read 1987 bytes from /proc/mounts
2017-11-17 18:26:49,424 - util.py[DEBUG]: Fetched {'debugfs': {'opts': 'rw,relatime', 'mountpoint': '/sys/kernel/debug', 'fstype': 'debugfs'}, 'proc': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/proc', 'fstype': 'proc'}, 'sysfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys', 'fstype': 'sysfs'}, 'cgroup': {'opts': 'rw,nosuid,nodev,noexec,relatime,hugetlb', 'mountpoint': '/sys/fs/cgroup/hugetlb', 'fstype': 'cgroup'}, 'hugetlbfs': {'opts': 'rw,relatime', 'mountpoint': '/dev/hugepages', 'fstype': 'hugetlbfs'}, 'systemd-1': {'opts': 'rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'mountpoint': '/proc/sys/fs/binfmt_misc', 'fstype': 'autofs'}, 'tmpfs': {'opts': 'ro,nosuid,nodev,noexec,mode=755', 'mountpoint': '/sys/fs/cgroup', 'fstype': 'tmpfs'}, 'fusectl': {'opts': 'rw,relatime', 'mountpoint': '/sys/fs/fuse/connections', 'fstype': 'fusectl'}, 'pstore': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/fs/pstore', 'fstype': 'pstore'}, '/dev/xvda1': {'opts': 'rw,relatime,discard,data=ordered', 'mountpoint': '/', 'fstype': 'ext4'}, 'devpts': {'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'mountpoint': '/dev/pts', 'fstype': 'devpts'}, 'udev': {'opts': 'rw,nosuid,relatime,size=499364k,nr_inodes=124841,mode=755', 'mountpoint': '/dev', 'fstype': 'devtmpfs'}, 'mqueue': {'opts': 'rw,relatime', 'mountpoint': '/dev/mqueue', 'fstype': 'mqueue'}, 'securityfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/kernel/security', 'fstype': 'securityfs'}} mounts from proc
2017-11-17 18:26:49,425 - util.py[DEBUG]: Peeking at /dev/xvda (max_bytes=512)
2017-11-17 18:26:49,425 - util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
2017-11-17 18:26:49,425 - util.py[DEBUG]: Read 1987 bytes from /proc/mounts
2017-11-17 18:26:49,425 - util.py[DEBUG]: Fetched {'debugfs': {'opts': 'rw,relatime', 'mountpoint': '/sys/kernel/debug', 'fstype': 'debugfs'}, 'proc': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/proc', 'fstype': 'proc'}, 'sysfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys', 'fstype': 'sysfs'}, 'cgroup': {'opts': 'rw,nosuid,nodev,noexec,relatime,hugetlb', 'mountpoint': '/sys/fs/cgroup/hugetlb', 'fstype': 'cgroup'}, 'hugetlbfs': {'opts': 'rw,relatime', 'mountpoint': '/dev/hugepages', 'fstype': 'hugetlbfs'}, 'systemd-1': {'opts': 'rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'mountpoint': '/proc/sys/fs/binfmt_misc', 'fstype': 'autofs'}, 'tmpfs': {'opts': 'ro,nosuid,nodev,noexec,mode=755', 'mountpoint': '/sys/fs/cgroup', 'fstype': 'tmpfs'}, 'fusectl': {'opts': 'rw,relatime', 'mountpoint': '/sys/fs/fuse/connections', 'fstype': 'fusectl'}, 'pstore': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/fs/pstore', 'fstype': 'pstore'}, '/dev/xvda1': {'opts': 'rw,relatime,discard,data=ordered', 'mountpoint': '/', 'fstype': 'ext4'}, 'devpts': {'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'mountpoint': '/dev/pts', 'fstype': 'devpts'}, 'udev': {'opts': 'rw,nosuid,relatime,size=499364k,nr_inodes=124841,mode=755', 'mountpoint': '/dev', 'fstype': 'devtmpfs'}, 'mqueue': {'opts': 'rw,relatime', 'mountpoint': '/dev/mqueue', 'fstype': 'mqueue'}, 'securityfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/kernel/security', 'fstype': 'securityfs'}} mounts from proc
2017-11-17 18:26:49,434 - util.py[DEBUG]: Running command ['mount', '-o', 'ro,sync', '-t', 'iso9660', '/dev/xvda', '/tmp/tmpi0a4jxmy'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,442 - util.py[DEBUG]: Failed mount of '/dev/xvda' as 'iso9660': Unexpected error while running command.
Command: ['mount', '-o', 'ro,sync', '-t', 'iso9660', '/dev/xvda', '/tmp/tmpi0a4jxmy']
Exit code: 32
Reason: -
Stdout: -
Stderr: mount: /dev/xvda is already mounted or /tmp/tmpi0a4jxmy busy
2017-11-17 18:26:49,443 - util.py[DEBUG]: Recursively deleting /tmp/tmpi0a4jxmy
2017-11-17 18:26:49,443 - DataSourceOVF.py[DEBUG]: /dev/xvda not mountable as iso9660
2017-11-17 18:26:49,443 - handlers.py[DEBUG]: finish: init-local/search-OVF: SUCCESS: no local data found from DataSourceOVF
2017-11-17 18:26:49,443 - handlers.py[DEBUG]: start: init-local/search-CloudSigma: searching for local data from DataSourceCloudSigma
2017-11-17 18:26:49,443 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceCloudSigma.DataSourceCloudSigma'>
2017-11-17 18:26:49,443 - DataSourceCloudSigma.py[DEBUG]: determining hypervisor product name via dmi data
2017-11-17 18:26:49,443 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,451 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,452 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,456 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:49,456 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:49,456 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:49,456 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:26:49,456 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:26:49,456 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:26:49,456 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:26:49,457 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:26:49,457 - DataSourceCloudSigma.py[DEBUG]: detected hypervisor as HVM domU
2017-11-17 18:26:49,457 - handlers.py[DEBUG]: finish: init-local/search-CloudSigma: SUCCESS: no local data found from DataSourceCloudSigma
2017-11-17 18:26:49,457 - handlers.py[DEBUG]: start: init-local/search-SmartOS: searching for local data from DataSourceSmartOS
2017-11-17 18:26:49,457 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceSmartOS.DataSourceSmartOS'>
2017-11-17 18:26:49,463 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,465 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,467 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,475 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:49,475 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:49,475 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:49,476 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:26:49,476 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:26:49,476 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:26:49,476 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:26:49,476 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:26:49,476 - DataSourceSmartOS.py[DEBUG]: Not running on smartos
2017-11-17 18:26:49,476 - handlers.py[DEBUG]: finish: init-local/search-SmartOS: SUCCESS: no local data found from DataSourceSmartOS
2017-11-17 18:26:49,476 - main.py[DEBUG]: No local datasource found
2017-11-17 18:26:49,477 - util.py[DEBUG]: Reading from /sys/class/net/eth0/carrier (quiet=False)
2017-11-17 18:26:49,477 - util.py[DEBUG]: Reading from /sys/class/net/eth0/dormant (quiet=False)
2017-11-17 18:26:49,477 - util.py[DEBUG]: Reading from /sys/class/net/eth0/operstate (quiet=False)
2017-11-17 18:26:49,477 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/eth0/operstate
2017-11-17 18:26:49,479 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:26:49,480 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:26:49,480 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'name': 'eth0', 'type': 'physical', 'mac_address': '06:23:bc:a9:a4:fa', 'subnets': [{'type': 'dhcp'}]}]}
2017-11-17 18:26:49,480 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:26:49,480 - util.py[DEBUG]: Reading from /sys/class/net/lo/addr_assign_type (quiet=False)
2017-11-17 18:26:49,480 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/lo/addr_assign_type
2017-11-17 18:26:49,480 - util.py[DEBUG]: Reading from /sys/class/net/lo/uevent (quiet=False)
2017-11-17 18:26:49,480 - util.py[DEBUG]: Read 23 bytes from /sys/class/net/lo/uevent
2017-11-17 18:26:49,480 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-17 18:26:49,480 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-17 18:26:49,480 - util.py[DEBUG]: Reading from /sys/class/net/lo/device/device (quiet=False)
2017-11-17 18:26:49,480 - util.py[DEBUG]: Reading from /sys/class/net/eth0/addr_assign_type (quiet=False)
2017-11-17 18:26:49,481 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/eth0/addr_assign_type
2017-11-17 18:26:49,481 - util.py[DEBUG]: Reading from /sys/class/net/eth0/uevent (quiet=False)
2017-11-17 18:26:49,481 - util.py[DEBUG]: Read 25 bytes from /sys/class/net/eth0/uevent
2017-11-17 18:26:49,481 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:26:49,481 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:26:49,481 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:26:49,481 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-11-17 18:26:49,486 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-11-17 18:26:49,486 - util.py[DEBUG]: Reading from /sys/class/net/eth0/operstate (quiet=False)
2017-11-17 18:26:49,486 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/eth0/operstate
2017-11-17 18:26:49,486 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,498 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:49,500 - __init__.py[DEBUG]: no work necessary for renaming of [['06:23:bc:a9:a4:fa', 'eth0', 'vif', None]]
2017-11-17 18:26:49,500 - stages.py[INFO]: Applying network configuration from fallback bringup=False: {'version': 1, 'config': [{'name': 'eth0', 'type': 'physical', 'mac_address': '06:23:bc:a9:a4:fa', 'subnets': [{'type': 'dhcp'}]}]}
2017-11-17 18:26:49,501 - __init__.py[DEBUG]: Selected renderer 'eni' from priority list: None
2017-11-17 18:26:49,503 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [644] 367 bytes
2017-11-17 18:26:49,510 - util.py[DEBUG]: Writing to /etc/udev/rules.d/70-persistent-net.rules - wb: [644] 96 bytes
2017-11-17 18:26:49,511 - main.py[DEBUG]: [local] Exiting without datasource in local mode
2017-11-17 18:26:49,512 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:26:49,512 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-11-17 18:26:49,512 - util.py[DEBUG]: cloud-init mode 'init' took 0.768 seconds (0.77)
2017-11-17 18:26:49,512 - handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
2017-11-17 18:26:50,831 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'init' at Fri, 17 Nov 2017 18:26:50 +0000. Up 7.47 seconds.
2017-11-17 18:26:50,831 - main.py[DEBUG]: No kernel command line url found.
2017-11-17 18:26:50,832 - main.py[DEBUG]: Closing stdin.
2017-11-17 18:26:50,834 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2017-11-17 18:26:50,835 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-11-17 18:26:50,835 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:26:50,840 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:26:50,844 - util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:26:50,846 - main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2017-11-17 18:26:50,846 - main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
2017-11-17 18:26:50,846 - handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
2017-11-17 18:26:50,846 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-11-17 18:26:50,846 - stages.py[DEBUG]: no cache found
2017-11-17 18:26:50,846 - handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: no cache found
2017-11-17 18:26:50,846 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-17 18:26:50,848 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:26:50,849 - __init__.py[DEBUG]: Looking for for data source in: ['NoCloud', 'ConfigDrive', 'OpenNebula', 'DigitalOcean', 'Azure', 'AltCloud', 'OVF', 'MAAS', 'GCE', 'OpenStack', 'CloudSigma', 'SmartOS', 'Bigstep', 'Scaleway', 'Aliyun', 'Ec2', 'CloudStack', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
2017-11-17 18:26:50,880 - __init__.py[DEBUG]: Searching for network data source in: ['DataSourceNoCloudNet', 'DataSourceAltCloud', 'DataSourceOVFNet', 'DataSourceMAAS', 'DataSourceGCE', 'DataSourceOpenStack', 'DataSourceBigstep', 'DataSourceScaleway', 'DataSourceEc2', 'DataSourceCloudStack', 'DataSourceNone']
2017-11-17 18:26:50,881 - handlers.py[DEBUG]: start: init-network/search-NoCloudNet: searching for network data from DataSourceNoCloudNet
2017-11-17 18:26:50,881 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloudNet'>
2017-11-17 18:26:50,881 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,883 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,884 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,885 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:50,885 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:50,885 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:50,885 - util.py[DEBUG]: Read 899 bytes from /proc/self/status
2017-11-17 18:26:50,885 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_serial
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_serial (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Read 37 bytes from /sys/class/dmi/id/product_serial
2017-11-17 18:26:50,886 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_serial returned ec2c85ed-6d4c-fb0f-d96c-979762ef3b0c
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/network-config (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/network-config (quiet=False)
2017-11-17 18:26:50,886 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:50,888 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:50,889 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:50,902 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:50,914 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:26:50,926 - handlers.py[DEBUG]: finish: init-network/search-NoCloudNet: SUCCESS: no network data found from DataSourceNoCloudNet
2017-11-17 18:26:50,927 - handlers.py[DEBUG]: start: init-network/search-AltCloud: searching for network data from DataSourceAltCloud
2017-11-17 18:26:50,927 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceAltCloud.DataSourceAltCloud'>
2017-11-17 18:26:50,927 - DataSourceAltCloud.py[DEBUG]: Invoked get_data()
2017-11-17 18:26:50,927 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,929 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,930 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,931 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:50,931 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:50,931 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:50,931 - util.py[DEBUG]: Read 899 bytes from /proc/self/status
2017-11-17 18:26:50,931 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:26:50,931 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:26:50,931 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:26:50,931 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:26:50,932 - DataSourceAltCloud.py[DEBUG]: cloud_type: UNKNOWN
2017-11-17 18:26:50,932 - handlers.py[DEBUG]: finish: init-network/search-AltCloud: SUCCESS: no network data found from DataSourceAltCloud
2017-11-17 18:26:50,932 - handlers.py[DEBUG]: start: init-network/search-OVFNet: searching for network data from DataSourceOVFNet
2017-11-17 18:26:50,932 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOVF.DataSourceOVFNet'>
2017-11-17 18:26:50,932 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,934 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,935 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,936 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:50,936 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:50,936 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:50,936 - util.py[DEBUG]: Read 900 bytes from /proc/self/status
2017-11-17 18:26:50,936 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:26:50,936 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:26:50,936 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:26:50,936 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:26:50,937 - util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
2017-11-17 18:26:50,937 - util.py[DEBUG]: Read 1987 bytes from /proc/mounts
2017-11-17 18:26:50,937 - util.py[DEBUG]: Fetched {'fusectl': {'mountpoint': '/sys/fs/fuse/connections', 'opts': 'rw,relatime', 'fstype': 'fusectl'}, 'proc': {'mountpoint': '/proc', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'proc'}, 'mqueue': {'mountpoint': '/dev/mqueue', 'opts': 'rw,relatime', 'fstype': 'mqueue'}, 'debugfs': {'mountpoint': '/sys/kernel/debug', 'opts': 'rw,relatime', 'fstype': 'debugfs'}, 'udev': {'mountpoint': '/dev', 'opts': 'rw,nosuid,relatime,size=499364k,nr_inodes=124841,mode=755', 'fstype': 'devtmpfs'}, 'sysfs': {'mountpoint': '/sys', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'sysfs'}, 'pstore': {'mountpoint': '/sys/fs/pstore', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'pstore'}, 'securityfs': {'mountpoint': '/sys/kernel/security', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'securityfs'}, 'devpts': {'mountpoint': '/dev/pts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'fstype': 'devpts'}, 'tmpfs': {'mountpoint': '/sys/fs/cgroup', 'opts': 'ro,nosuid,nodev,noexec,mode=755', 'fstype': 'tmpfs'}, '/dev/xvda1': {'mountpoint': '/', 'opts': 'rw,relatime,discard,data=ordered', 'fstype': 'ext4'}, 'cgroup': {'mountpoint': '/sys/fs/cgroup/hugetlb', 'opts': 'rw,nosuid,nodev,noexec,relatime,hugetlb', 'fstype': 'cgroup'}, 'hugetlbfs': {'mountpoint': '/dev/hugepages', 'opts': 'rw,relatime', 'fstype': 'hugetlbfs'}, 'systemd-1': {'mountpoint': '/proc/sys/fs/binfmt_misc', 'opts': 'rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'fstype': 'autofs'}} mounts from proc
2017-11-17 18:26:50,938 - util.py[DEBUG]: Peeking at /dev/xvda (max_bytes=512)
2017-11-17 18:26:50,938 - util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
2017-11-17 18:26:50,938 - util.py[DEBUG]: Read 1987 bytes from /proc/mounts
2017-11-17 18:26:50,938 - util.py[DEBUG]: Fetched {'fusectl': {'mountpoint': '/sys/fs/fuse/connections', 'opts': 'rw,relatime', 'fstype': 'fusectl'}, 'proc': {'mountpoint': '/proc', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'proc'}, 'mqueue': {'mountpoint': '/dev/mqueue', 'opts': 'rw,relatime', 'fstype': 'mqueue'}, 'debugfs': {'mountpoint': '/sys/kernel/debug', 'opts': 'rw,relatime', 'fstype': 'debugfs'}, 'udev': {'mountpoint': '/dev', 'opts': 'rw,nosuid,relatime,size=499364k,nr_inodes=124841,mode=755', 'fstype': 'devtmpfs'}, 'sysfs': {'mountpoint': '/sys', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'sysfs'}, 'pstore': {'mountpoint': '/sys/fs/pstore', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'pstore'}, 'securityfs': {'mountpoint': '/sys/kernel/security', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'securityfs'}, 'devpts': {'mountpoint': '/dev/pts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'fstype': 'devpts'}, 'tmpfs': {'mountpoint': '/sys/fs/cgroup', 'opts': 'ro,nosuid,nodev,noexec,mode=755', 'fstype': 'tmpfs'}, '/dev/xvda1': {'mountpoint': '/', 'opts': 'rw,relatime,discard,data=ordered', 'fstype': 'ext4'}, 'cgroup': {'mountpoint': '/sys/fs/cgroup/hugetlb', 'opts': 'rw,nosuid,nodev,noexec,relatime,hugetlb', 'fstype': 'cgroup'}, 'hugetlbfs': {'mountpoint': '/dev/hugepages', 'opts': 'rw,relatime', 'fstype': 'hugetlbfs'}, 'systemd-1': {'mountpoint': '/proc/sys/fs/binfmt_misc', 'opts': 'rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'fstype': 'autofs'}} mounts from proc
2017-11-17 18:26:50,939 - util.py[DEBUG]: Running command ['mount', '-o', 'ro,sync', '-t', 'iso9660', '/dev/xvda', '/tmp/tmpfz2ex_xh'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,941 - util.py[DEBUG]: Failed mount of '/dev/xvda' as 'iso9660': Unexpected error while running command.
Command: ['mount', '-o', 'ro,sync', '-t', 'iso9660', '/dev/xvda', '/tmp/tmpfz2ex_xh']
Exit code: 32
Reason: -
Stdout: -
Stderr: mount: /dev/xvda is already mounted or /tmp/tmpfz2ex_xh busy
2017-11-17 18:26:50,941 - util.py[DEBUG]: Recursively deleting /tmp/tmpfz2ex_xh
2017-11-17 18:26:50,941 - DataSourceOVF.py[DEBUG]: /dev/xvda not mountable as iso9660
2017-11-17 18:26:50,941 - handlers.py[DEBUG]: finish: init-network/search-OVFNet: SUCCESS: no network data found from DataSourceOVFNet
2017-11-17 18:26:50,941 - handlers.py[DEBUG]: start: init-network/search-MAAS: searching for network data from DataSourceMAAS
2017-11-17 18:26:50,941 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceMAAS.DataSourceMAAS'>
2017-11-17 18:26:50,942 - handlers.py[DEBUG]: finish: init-network/search-MAAS: SUCCESS: no network data found from DataSourceMAAS
2017-11-17 18:26:50,942 - handlers.py[DEBUG]: start: init-network/search-GCE: searching for network data from DataSourceGCE
2017-11-17 18:26:50,942 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceGCE.DataSourceGCE'>
2017-11-17 18:26:50,942 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,944 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,945 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,946 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:50,946 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:50,946 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:50,946 - util.py[DEBUG]: Read 900 bytes from /proc/self/status
2017-11-17 18:26:50,946 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:26:50,946 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:26:50,946 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:26:50,946 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:26:50,947 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,948 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,949 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,950 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:50,950 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:50,950 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:50,950 - util.py[DEBUG]: Read 900 bytes from /proc/self/status
2017-11-17 18:26:50,951 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_serial
2017-11-17 18:26:50,951 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_serial (quiet=False)
2017-11-17 18:26:50,951 - util.py[DEBUG]: Read 37 bytes from /sys/class/dmi/id/product_serial
2017-11-17 18:26:50,951 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_serial returned ec2c85ed-6d4c-fb0f-d96c-979762ef3b0c
2017-11-17 18:26:50,951 - DataSourceGCE.py[DEBUG]: Not running on google cloud. product-name=HVM domU serial=ec2c85ed-6d4c-fb0f-d96c-979762ef3b0c
2017-11-17 18:26:50,951 - handlers.py[DEBUG]: finish: init-network/search-GCE: SUCCESS: no network data found from DataSourceGCE
2017-11-17 18:26:50,951 - handlers.py[DEBUG]: start: init-network/search-OpenStack: searching for network data from DataSourceOpenStack
2017-11-17 18:26:50,951 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOpenStack.DataSourceOpenStack'>
2017-11-17 18:26:50,959 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/openstack' with {'method': 'GET', 'url': 'http://169.254.169.254/openstack', 'timeout': 10.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,963 - url_helper.py[DEBUG]: Read from http://169.254.169.254/openstack (404, 345b) after 1 attempts
2017-11-17 18:26:50,963 - url_helper.py[DEBUG]: Calling 'http://169.254.169.254/openstack' failed [0/-1s]: bad status code [404]
2017-11-17 18:26:50,963 - DataSourceOpenStack.py[DEBUG]: Giving up on OpenStack md from ['http://169.254.169.254/openstack'] after 0 seconds
2017-11-17 18:26:50,964 - handlers.py[DEBUG]: finish: init-network/search-OpenStack: SUCCESS: no network data found from DataSourceOpenStack
2017-11-17 18:26:50,964 - handlers.py[DEBUG]: start: init-network/search-Bigstep: searching for network data from DataSourceBigstep
2017-11-17 18:26:50,964 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceBigstep.DataSourceBigstep'>
2017-11-17 18:26:50,964 - util.py[DEBUG]: Reading from /var/lib/cloud/data/seed/bigstep/url (quiet=False)
2017-11-17 18:26:50,964 - handlers.py[DEBUG]: finish: init-network/search-Bigstep: SUCCESS: no network data found from DataSourceBigstep
2017-11-17 18:26:50,964 - handlers.py[DEBUG]: start: init-network/search-Scaleway: searching for network data from DataSourceScaleway
2017-11-17 18:26:50,964 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceScaleway.DataSourceScaleway'>
2017-11-17 18:26:50,964 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,966 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,967 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,968 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:50,968 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:50,969 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:50,969 - util.py[DEBUG]: Read 900 bytes from /proc/self/status
2017-11-17 18:26:50,969 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/sys_vendor
2017-11-17 18:26:50,969 - util.py[DEBUG]: Reading from /sys/class/dmi/id/sys_vendor (quiet=False)
2017-11-17 18:26:50,969 - util.py[DEBUG]: Read 4 bytes from /sys/class/dmi/id/sys_vendor
2017-11-17 18:26:50,969 - util.py[DEBUG]: dmi data /sys/class/dmi/id/sys_vendor returned Xen
2017-11-17 18:26:50,969 - handlers.py[DEBUG]: finish: init-network/search-Scaleway: SUCCESS: no network data found from DataSourceScaleway
2017-11-17 18:26:50,969 - handlers.py[DEBUG]: start: init-network/search-Ec2: searching for network data from DataSourceEc2
2017-11-17 18:26:50,969 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceEc2.DataSourceEc2'>
2017-11-17 18:26:50,970 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/ec2/meta-data (quiet=False)
2017-11-17 18:26:50,970 - util.py[DEBUG]: Reading from /sys/hypervisor/uuid (quiet=False)
2017-11-17 18:26:50,970 - util.py[DEBUG]: Read 37 bytes from /sys/hypervisor/uuid
2017-11-17 18:26:50,970 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,971 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,972 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:50,973 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:50,974 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:50,974 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:50,974 - util.py[DEBUG]: Read 900 bytes from /proc/self/status
2017-11-17 18:26:50,974 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_serial
2017-11-17 18:26:50,974 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_serial (quiet=False)
2017-11-17 18:26:50,974 - util.py[DEBUG]: Read 37 bytes from /sys/class/dmi/id/product_serial
2017-11-17 18:26:50,974 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_serial returned ec2c85ed-6d4c-fb0f-d96c-979762ef3b0c
2017-11-17 18:26:50,974 - DataSourceEc2.py[DEBUG]: strict_mode: warn, cloud_platform=AWS
2017-11-17 18:26:50,976 - DataSourceEc2.py[DEBUG]: Removed the following from metadata urls: ['http://instance-data.:8773']
2017-11-17 18:26:50,976 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'timeout': 50.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,978 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (200, 19b) after 1 attempts
2017-11-17 18:26:50,978 - DataSourceEc2.py[DEBUG]: Using metadata source: 'http://169.254.169.254'
2017-11-17 18:26:50,979 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/user-data' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/user-data', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,981 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,983 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/ (200, 231b) after 1 attempts
2017-11-17 18:26:50,983 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,986 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ (200, 30b) after 1 attempts
2017-11-17 18:26:50,986 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ami' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ami', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,988 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ami (200, 9b) after 1 attempts
2017-11-17 18:26:50,988 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ephemeral1' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ephemeral1', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,990 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ephemeral1 (200, 3b) after 1 attempts
2017-11-17 18:26:50,991 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/root' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/root', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,993 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/root (200, 9b) after 1 attempts
2017-11-17 18:26:50,993 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ephemeral0' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ephemeral0', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,995 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/block-device-mapping/ephemeral0 (200, 3b) after 1 attempts
2017-11-17 18:26:50,995 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/placement/' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/placement/', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,997 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/placement/ (200, 17b) after 1 attempts
2017-11-17 18:26:50,997 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/placement/availability-zone' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/placement/availability-zone', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:50,999 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/placement/availability-zone (200, 10b) after 1 attempts
2017-11-17 18:26:50,999 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/public-keys/' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/public-keys/', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,001 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/public-keys/ (200, 24b) after 1 attempts
2017-11-17 18:26:51,001 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/public-keys/0/openssh-key' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/public-keys/0/openssh-key', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,003 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/public-keys/0/openssh-key (200, 404b) after 1 attempts
2017-11-17 18:26:51,004 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/public-hostname' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/public-hostname', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,005 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/public-hostname (200, 49b) after 1 attempts
2017-11-17 18:26:51,006 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,008 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (200, 19b) after 1 attempts
2017-11-17 18:26:51,008 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/ami-manifest-path' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/ami-manifest-path', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,010 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/ami-manifest-path (200, 9b) after 1 attempts
2017-11-17 18:26:51,010 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/local-hostname' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/local-hostname', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,012 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/local-hostname (200, 43b) after 1 attempts
2017-11-17 18:26:51,012 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/reservation-id' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/reservation-id', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,014 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/reservation-id (200, 19b) after 1 attempts
2017-11-17 18:26:51,014 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/profile' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/profile', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,016 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/profile (200, 11b) after 1 attempts
2017-11-17 18:26:51,016 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/instance-type' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-type', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,018 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-type (200, 8b) after 1 attempts
2017-11-17 18:26:51,019 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/local-ipv4' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/local-ipv4', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,021 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/local-ipv4 (200, 13b) after 1 attempts
2017-11-17 18:26:51,021 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/security-groups' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/security-groups', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,023 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/security-groups (200, 36b) after 1 attempts
2017-11-17 18:26:51,023 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/ami-id' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/ami-id', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,025 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/ami-id (200, 12b) after 1 attempts
2017-11-17 18:26:51,025 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/hostname' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/hostname', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,027 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/hostname (200, 43b) after 1 attempts
2017-11-17 18:26:51,027 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/ami-launch-index' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/ami-launch-index', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,029 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/ami-launch-index (200, 1b) after 1 attempts
2017-11-17 18:26:51,029 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/public-ipv4' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/public-ipv4', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,031 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/public-ipv4 (200, 13b) after 1 attempts
2017-11-17 18:26:51,031 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2009-04-04/meta-data/instance-action' with {'method': 'GET', 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-action', 'timeout': 5.0, 'headers': {'User-Agent': 'Cloud-Init/0.7.9'}, 'allow_redirects': True} configuration
2017-11-17 18:26:51,033 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-action (200, 4b) after 1 attempts
2017-11-17 18:26:51,034 - DataSourceEc2.py[DEBUG]: Crawl of metadata service took 0.055 seconds
2017-11-17 18:26:51,034 - handlers.py[DEBUG]: finish: init-network/search-Ec2: SUCCESS: found network data from DataSourceEc2
2017-11-17 18:26:51,034 - stages.py[INFO]: Loaded datasource DataSourceEc2 - DataSourceEc2
2017-11-17 18:26:51,034 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:26:51,034 - util.py[DEBUG]: Read 3023 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:26:51,035 - util.py[DEBUG]: Attempting to load yaml from string of length 3023 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,047 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:26:51,047 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:26:51,047 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,049 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:26:51,049 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:26:51,049 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,053 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:26:51,053 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:26:51,053 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,054 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,054 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:26:51,054 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-17 18:26:51,054 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/i-0f885cd59d967ec90'
2017-11-17 18:26:51,056 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource (quiet=False)
2017-11-17 18:26:51,056 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource - wb: [644] 29 bytes
2017-11-17 18:26:51,056 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [644] 29 bytes
2017-11-17 18:26:51,056 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2017-11-17 18:26:51,057 - stages.py[DEBUG]: previous iid found to be NO_PREVIOUS_INSTANCE_ID
2017-11-17 18:26:51,057 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [644] 20 bytes
2017-11-17 18:26:51,057 - util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [644] 20 bytes
2017-11-17 18:26:51,057 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [644] 24 bytes
2017-11-17 18:26:51,058 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 6668 bytes
2017-11-17 18:26:51,059 - main.py[DEBUG]: [net] init will now be targeting instance id: i-0f885cd59d967ec90. new=True
2017-11-17 18:26:51,059 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:26:51,059 - util.py[DEBUG]: Read 3023 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:26:51,059 - util.py[DEBUG]: Attempting to load yaml from string of length 3023 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,071 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:26:51,071 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:26:51,071 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,073 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:26:51,073 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:26:51,073 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,077 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:26:51,077 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:26:51,077 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,078 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,078 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:26:51,079 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:26:51,079 - util.py[DEBUG]: Reading from /sys/class/net/eth0/carrier (quiet=False)
2017-11-17 18:26:51,080 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/eth0/carrier
2017-11-17 18:26:51,080 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:26:51,080 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:26:51,080 - stages.py[DEBUG]: applying net config names for {'config': [{'subnets': [{'type': 'dhcp'}], 'mac_address': '06:23:bc:a9:a4:fa', 'name': 'eth0', 'type': 'physical'}], 'version': 1}
2017-11-17 18:26:51,080 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:26:51,080 - util.py[DEBUG]: Reading from /sys/class/net/lo/addr_assign_type (quiet=False)
2017-11-17 18:26:51,080 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/lo/addr_assign_type
2017-11-17 18:26:51,080 - util.py[DEBUG]: Reading from /sys/class/net/lo/uevent (quiet=False)
2017-11-17 18:26:51,080 - util.py[DEBUG]: Read 23 bytes from /sys/class/net/lo/uevent
2017-11-17 18:26:51,080 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-17 18:26:51,080 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-17 18:26:51,080 - util.py[DEBUG]: Reading from /sys/class/net/lo/device/device (quiet=False)
2017-11-17 18:26:51,081 - util.py[DEBUG]: Reading from /sys/class/net/eth0/addr_assign_type (quiet=False)
2017-11-17 18:26:51,081 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/eth0/addr_assign_type
2017-11-17 18:26:51,081 - util.py[DEBUG]: Reading from /sys/class/net/eth0/uevent (quiet=False)
2017-11-17 18:26:51,081 - util.py[DEBUG]: Read 25 bytes from /sys/class/net/eth0/uevent
2017-11-17 18:26:51,081 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:26:51,081 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:26:51,081 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:26:51,081 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-11-17 18:26:51,081 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-11-17 18:26:51,081 - util.py[DEBUG]: Reading from /sys/class/net/eth0/operstate (quiet=False)
2017-11-17 18:26:51,081 - util.py[DEBUG]: Read 3 bytes from /sys/class/net/eth0/operstate
2017-11-17 18:26:51,082 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,084 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,085 - __init__.py[DEBUG]: no work necessary for renaming of [['06:23:bc:a9:a4:fa', 'eth0', 'vif', None]]
2017-11-17 18:26:51,085 - stages.py[INFO]: Applying network configuration from fallback bringup=True: {'config': [{'subnets': [{'type': 'dhcp'}], 'mac_address': '06:23:bc:a9:a4:fa', 'name': 'eth0', 'type': 'physical'}], 'version': 1}
2017-11-17 18:26:51,086 - __init__.py[DEBUG]: Selected renderer 'eni' from priority list: None
2017-11-17 18:26:51,088 - util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [644] 367 bytes
2017-11-17 18:26:51,088 - util.py[DEBUG]: Writing to /etc/udev/rules.d/70-persistent-net.rules - wb: [644] 96 bytes
2017-11-17 18:26:51,089 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/user-data.txt - wb: [600] 0 bytes
2017-11-17 18:26:51,092 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/user-data.txt.i - wb: [600] 308 bytes
2017-11-17 18:26:51,093 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/vendor-data.txt - wb: [600] 0 bytes
2017-11-17 18:26:51,094 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/vendor-data.txt.i - wb: [600] 308 bytes
2017-11-17 18:26:51,095 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/consume_data - wb: [644] 25 bytes
2017-11-17 18:26:51,095 - helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/consume_data'>)
2017-11-17 18:26:51,095 - handlers.py[DEBUG]: start: init-network/consume-user-data: reading and applying user-data
2017-11-17 18:26:51,095 - launch_index.py[DEBUG]: Discarding 0 multipart messages which do not match launch index 0
2017-11-17 18:26:51,096 - stages.py[DEBUG]: Added default handler for {'text/cloud-config-jsonp', 'text/cloud-config'} from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
2017-11-17 18:26:51,096 - stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
2017-11-17 18:26:51,096 - stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
2017-11-17 18:26:51,096 - stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
2017-11-17 18:26:51,096 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
2017-11-17 18:26:51,096 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
2017-11-17 18:26:51,096 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
2017-11-17 18:26:51,096 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
2017-11-17 18:26:51,097 - __init__.py[DEBUG]: {'MIME-Version': '1.0', 'Content-Disposition': 'attachment; filename="part-001"', 'Content-Type': 'text/x-not-multipart'}
2017-11-17 18:26:51,097 - __init__.py[DEBUG]: Empty payload of type text/x-not-multipart
2017-11-17 18:26:51,097 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
2017-11-17 18:26:51,097 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/cloud-config.txt - wb: [600] 0 bytes
2017-11-17 18:26:51,097 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
2017-11-17 18:26:51,097 - __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
2017-11-17 18:26:51,098 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
2017-11-17 18:26:51,098 - handlers.py[DEBUG]: finish: init-network/consume-user-data: SUCCESS: reading and applying user-data
2017-11-17 18:26:51,098 - handlers.py[DEBUG]: start: init-network/consume-vendor-data: reading and applying vendor-data
2017-11-17 18:26:51,098 - stages.py[DEBUG]: no vendordata from datasource
2017-11-17 18:26:51,098 - handlers.py[DEBUG]: finish: init-network/consume-vendor-data: SUCCESS: reading and applying vendor-data
2017-11-17 18:26:51,098 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:26:51,098 - util.py[DEBUG]: Read 3023 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:26:51,098 - util.py[DEBUG]: Attempting to load yaml from string of length 3023 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,110 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:26:51,111 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:26:51,111 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,112 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:26:51,112 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:26:51,112 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,116 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:26:51,116 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:26:51,116 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,117 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,117 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:26:51,118 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:26:51,118 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:26:51,118 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,118 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:26:51,119 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:26:51,119 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:26:51,119 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:26:51,119 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:26:51,121 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 5284 bytes
2017-11-17 18:26:51,122 - main.py[DEBUG]: used datasource 'DataSourceEc2' from 'Ec2' was in di_report's list: ['Ec2', 'None']
2017-11-17 18:26:51,198 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:26:51,199 - stages.py[DEBUG]: Running module migrator (<module 'cloudinit.config.cc_migrator' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_migrator.py'>) with frequency always
2017-11-17 18:26:51,199 - handlers.py[DEBUG]: start: init-network/config-migrator: running config-migrator with frequency always
2017-11-17 18:26:51,199 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7fe671834e80>)
2017-11-17 18:26:51,199 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2017-11-17 18:26:51,199 - handlers.py[DEBUG]: finish: init-network/config-migrator: SUCCESS: config-migrator ran successfully
2017-11-17 18:26:51,199 - stages.py[DEBUG]: Running module ubuntu-init-switch (<module 'cloudinit.config.cc_ubuntu_init_switch' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ubuntu_init_switch.py'>) with frequency once-per-instance
2017-11-17 18:26:51,200 - handlers.py[DEBUG]: start: init-network/config-ubuntu-init-switch: running config-ubuntu-init-switch with frequency once-per-instance
2017-11-17 18:26:51,200 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ubuntu_init_switch - wb: [644] 25 bytes
2017-11-17 18:26:51,200 - helpers.py[DEBUG]: Running config-ubuntu-init-switch using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ubuntu_init_switch'>)
2017-11-17 18:26:51,200 - cc_ubuntu_init_switch.py[DEBUG]: ubuntu-init-switch: target=None. nothing to do
2017-11-17 18:26:51,201 - handlers.py[DEBUG]: finish: init-network/config-ubuntu-init-switch: SUCCESS: config-ubuntu-init-switch ran successfully
2017-11-17 18:26:51,201 - stages.py[DEBUG]: Running module seed_random (<module 'cloudinit.config.cc_seed_random' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_seed_random.py'>) with frequency once-per-instance
2017-11-17 18:26:51,201 - handlers.py[DEBUG]: start: init-network/config-seed_random: running config-seed_random with frequency once-per-instance
2017-11-17 18:26:51,201 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_seed_random - wb: [644] 24 bytes
2017-11-17 18:26:51,201 - helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_seed_random'>)
2017-11-17 18:26:51,202 - cc_seed_random.py[DEBUG]: no command provided
2017-11-17 18:26:51,202 - handlers.py[DEBUG]: finish: init-network/config-seed_random: SUCCESS: config-seed_random ran successfully
2017-11-17 18:26:51,202 - stages.py[DEBUG]: Running module bootcmd (<module 'cloudinit.config.cc_bootcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_bootcmd.py'>) with frequency always
2017-11-17 18:26:51,202 - handlers.py[DEBUG]: start: init-network/config-bootcmd: running config-bootcmd with frequency always
2017-11-17 18:26:51,202 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7fe671a75080>)
2017-11-17 18:26:51,202 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2017-11-17 18:26:51,202 - handlers.py[DEBUG]: finish: init-network/config-bootcmd: SUCCESS: config-bootcmd ran successfully
2017-11-17 18:26:51,202 - stages.py[DEBUG]: Running module write-files (<module 'cloudinit.config.cc_write_files' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_write_files.py'>) with frequency once-per-instance
2017-11-17 18:26:51,203 - handlers.py[DEBUG]: start: init-network/config-write-files: running config-write-files with frequency once-per-instance
2017-11-17 18:26:51,203 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_write_files - wb: [644] 25 bytes
2017-11-17 18:26:51,203 - helpers.py[DEBUG]: Running config-write-files using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_write_files'>)
2017-11-17 18:26:51,203 - cc_write_files.py[DEBUG]: Skipping module named write-files, no/empty 'write_files' key in configuration
2017-11-17 18:26:51,203 - handlers.py[DEBUG]: finish: init-network/config-write-files: SUCCESS: config-write-files ran successfully
2017-11-17 18:26:51,203 - stages.py[DEBUG]: Running module growpart (<module 'cloudinit.config.cc_growpart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_growpart.py'>) with frequency always
2017-11-17 18:26:51,204 - handlers.py[DEBUG]: start: init-network/config-growpart: running config-growpart with frequency always
2017-11-17 18:26:51,204 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7fe67139af28>)
2017-11-17 18:26:51,204 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg.  Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
2017-11-17 18:26:51,204 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,208 - util.py[DEBUG]: Reading from /proc/1025/mountinfo (quiet=False)
2017-11-17 18:26:51,208 - util.py[DEBUG]: Read 2623 bytes from /proc/1025/mountinfo
2017-11-17 18:26:51,208 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,210 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,211 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,212 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:51,212 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:51,212 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:51,212 - util.py[DEBUG]: Read 901 bytes from /proc/self/status
2017-11-17 18:26:51,213 - util.py[DEBUG]: Reading from /sys/class/block/xvda1/partition (quiet=False)
2017-11-17 18:26:51,213 - util.py[DEBUG]: Read 2 bytes from /sys/class/block/xvda1/partition
2017-11-17 18:26:51,213 - util.py[DEBUG]: Reading from /sys/devices/vbd-768/block/xvda/dev (quiet=False)
2017-11-17 18:26:51,213 - util.py[DEBUG]: Read 6 bytes from /sys/devices/vbd-768/block/xvda/dev
2017-11-17 18:26:51,213 - util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/xvda', '1'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,264 - util.py[DEBUG]: resize_devices took 0.056 seconds
2017-11-17 18:26:51,264 - cc_growpart.py[DEBUG]: '/' NOCHANGE: no change necessary (/dev/xvda, 1)
2017-11-17 18:26:51,265 - handlers.py[DEBUG]: finish: init-network/config-growpart: SUCCESS: config-growpart ran successfully
2017-11-17 18:26:51,265 - stages.py[DEBUG]: Running module resizefs (<module 'cloudinit.config.cc_resizefs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_resizefs.py'>) with frequency always
2017-11-17 18:26:51,265 - handlers.py[DEBUG]: start: init-network/config-resizefs: running config-resizefs with frequency always
2017-11-17 18:26:51,265 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7fe67139afd0>)
2017-11-17 18:26:51,265 - util.py[DEBUG]: Reading from /proc/1025/mountinfo (quiet=False)
2017-11-17 18:26:51,265 - util.py[DEBUG]: Read 2623 bytes from /proc/1025/mountinfo
2017-11-17 18:26:51,266 - cc_resizefs.py[DEBUG]: resize_info: dev=/dev/xvda1 mnt_point=/ path=/
2017-11-17 18:26:51,266 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,267 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,269 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,270 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:26:51,270 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:26:51,270 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:26:51,270 - util.py[DEBUG]: Read 901 bytes from /proc/self/status
2017-11-17 18:26:51,270 - cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/xvda1
2017-11-17 18:26:51,270 - util.py[DEBUG]: Running command ('resize2fs', '/dev/xvda1') with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,288 - util.py[DEBUG]: Resizing took 0.018 seconds
2017-11-17 18:26:51,288 - cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
2017-11-17 18:26:51,288 - handlers.py[DEBUG]: finish: init-network/config-resizefs: SUCCESS: config-resizefs ran successfully
2017-11-17 18:26:51,288 - stages.py[DEBUG]: Running module disk_setup (<module 'cloudinit.config.cc_disk_setup' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disk_setup.py'>) with frequency once-per-instance
2017-11-17 18:26:51,289 - handlers.py[DEBUG]: start: init-network/config-disk_setup: running config-disk_setup with frequency once-per-instance
2017-11-17 18:26:51,289 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_disk_setup - wb: [644] 25 bytes
2017-11-17 18:26:51,290 - helpers.py[DEBUG]: Running config-disk_setup using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_disk_setup'>)
2017-11-17 18:26:51,290 - handlers.py[DEBUG]: finish: init-network/config-disk_setup: SUCCESS: config-disk_setup ran successfully
2017-11-17 18:26:51,290 - stages.py[DEBUG]: Running module mounts (<module 'cloudinit.config.cc_mounts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mounts.py'>) with frequency once-per-instance
2017-11-17 18:26:51,290 - handlers.py[DEBUG]: start: init-network/config-mounts: running config-mounts with frequency once-per-instance
2017-11-17 18:26:51,290 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_mounts - wb: [644] 25 bytes
2017-11-17 18:26:51,291 - helpers.py[DEBUG]: Running config-mounts using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_mounts'>)
2017-11-17 18:26:51,291 - cc_mounts.py[DEBUG]: mounts configuration is []
2017-11-17 18:26:51,291 - cc_mounts.py[DEBUG]: Attempting to determine the real name of ephemeral0
2017-11-17 18:26:51,292 - cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount ephemeral0
2017-11-17 18:26:51,292 - cc_mounts.py[DEBUG]: Attempting to determine the real name of swap
2017-11-17 18:26:51,292 - DataSourceEc2.py[DEBUG]: Unable to convert swap to a device
2017-11-17 18:26:51,292 - cc_mounts.py[DEBUG]: Ignoring nonexistant default named mount swap
2017-11-17 18:26:51,292 - cc_mounts.py[DEBUG]: no need to setup swap
2017-11-17 18:26:51,292 - cc_mounts.py[DEBUG]: No modifications to fstab needed.
2017-11-17 18:26:51,292 - handlers.py[DEBUG]: finish: init-network/config-mounts: SUCCESS: config-mounts ran successfully
2017-11-17 18:26:51,292 - stages.py[DEBUG]: Running module set_hostname (<module 'cloudinit.config.cc_set_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_hostname.py'>) with frequency once-per-instance
2017-11-17 18:26:51,292 - handlers.py[DEBUG]: start: init-network/config-set_hostname: running config-set_hostname with frequency once-per-instance
2017-11-17 18:26:51,292 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_set_hostname - wb: [644] 25 bytes
2017-11-17 18:26:51,293 - helpers.py[DEBUG]: Running config-set_hostname using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_set_hostname'>)
2017-11-17 18:26:51,293 - cc_set_hostname.py[DEBUG]: Setting the hostname to ip-172-31-16-165.us-east-2.compute.internal (ip-172-31-16-165)
2017-11-17 18:26:51,293 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-11-17 18:26:51,293 - util.py[DEBUG]: Read 17 bytes from /etc/hostname
2017-11-17 18:26:51,293 - util.py[DEBUG]: Writing to /etc/hostname - wb: [644] 17 bytes
2017-11-17 18:26:51,294 - __init__.py[DEBUG]: Non-persistently setting the system hostname to ip-172-31-16-165
2017-11-17 18:26:51,294 - util.py[DEBUG]: Running command ['hostname', 'ip-172-31-16-165'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,296 - handlers.py[DEBUG]: finish: init-network/config-set_hostname: SUCCESS: config-set_hostname ran successfully
2017-11-17 18:26:51,296 - stages.py[DEBUG]: Running module update_hostname (<module 'cloudinit.config.cc_update_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_hostname.py'>) with frequency always
2017-11-17 18:26:51,296 - handlers.py[DEBUG]: start: init-network/config-update_hostname: running config-update_hostname with frequency always
2017-11-17 18:26:51,296 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7fe67139c208>)
2017-11-17 18:26:51,296 - cc_update_hostname.py[DEBUG]: Updating hostname to ip-172-31-16-165.us-east-2.compute.internal (ip-172-31-16-165)
2017-11-17 18:26:51,296 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-11-17 18:26:51,296 - util.py[DEBUG]: Read 17 bytes from /etc/hostname
2017-11-17 18:26:51,296 - __init__.py[DEBUG]: Attempting to update hostname to ip-172-31-16-165 in 1 files
2017-11-17 18:26:51,297 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2017-11-17 18:26:51,297 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-hostname - wb: [644] 17 bytes
2017-11-17 18:26:51,297 - handlers.py[DEBUG]: finish: init-network/config-update_hostname: SUCCESS: config-update_hostname ran successfully
2017-11-17 18:26:51,297 - stages.py[DEBUG]: Running module update_etc_hosts (<module 'cloudinit.config.cc_update_etc_hosts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_etc_hosts.py'>) with frequency always
2017-11-17 18:26:51,298 - handlers.py[DEBUG]: start: init-network/config-update_etc_hosts: running config-update_etc_hosts with frequency always
2017-11-17 18:26:51,298 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7fe671338208>)
2017-11-17 18:26:51,298 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2017-11-17 18:26:51,298 - handlers.py[DEBUG]: finish: init-network/config-update_etc_hosts: SUCCESS: config-update_etc_hosts ran successfully
2017-11-17 18:26:51,298 - stages.py[DEBUG]: Running module ca-certs (<module 'cloudinit.config.cc_ca_certs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ca_certs.py'>) with frequency once-per-instance
2017-11-17 18:26:51,298 - handlers.py[DEBUG]: start: init-network/config-ca-certs: running config-ca-certs with frequency once-per-instance
2017-11-17 18:26:51,298 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ca_certs - wb: [644] 25 bytes
2017-11-17 18:26:51,299 - helpers.py[DEBUG]: Running config-ca-certs using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ca_certs'>)
2017-11-17 18:26:51,299 - cc_ca_certs.py[DEBUG]: Skipping module named ca-certs, no 'ca-certs' key in configuration
2017-11-17 18:26:51,299 - handlers.py[DEBUG]: finish: init-network/config-ca-certs: SUCCESS: config-ca-certs ran successfully
2017-11-17 18:26:51,299 - stages.py[DEBUG]: Running module rsyslog (<module 'cloudinit.config.cc_rsyslog' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rsyslog.py'>) with frequency once-per-instance
2017-11-17 18:26:51,299 - handlers.py[DEBUG]: start: init-network/config-rsyslog: running config-rsyslog with frequency once-per-instance
2017-11-17 18:26:51,299 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_rsyslog - wb: [644] 23 bytes
2017-11-17 18:26:51,300 - helpers.py[DEBUG]: Running config-rsyslog using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_rsyslog'>)
2017-11-17 18:26:51,300 - cc_rsyslog.py[DEBUG]: Skipping module named rsyslog, no 'rsyslog' key in configuration
2017-11-17 18:26:51,300 - handlers.py[DEBUG]: finish: init-network/config-rsyslog: SUCCESS: config-rsyslog ran successfully
2017-11-17 18:26:51,300 - stages.py[DEBUG]: Running module users-groups (<module 'cloudinit.config.cc_users_groups' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_users_groups.py'>) with frequency once-per-instance
2017-11-17 18:26:51,300 - handlers.py[DEBUG]: start: init-network/config-users-groups: running config-users-groups with frequency once-per-instance
2017-11-17 18:26:51,300 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_users_groups - wb: [644] 25 bytes
2017-11-17 18:26:51,301 - helpers.py[DEBUG]: Running config-users-groups using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_users_groups'>)
2017-11-17 18:26:51,301 - __init__.py[INFO]: User ubuntu already exists, skipping.
2017-11-17 18:26:51,301 - util.py[DEBUG]: Running command ['passwd', '-l', 'ubuntu'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,317 - util.py[DEBUG]: Reading from /etc/sudoers (quiet=False)
2017-11-17 18:26:51,317 - util.py[DEBUG]: Read 755 bytes from /etc/sudoers
2017-11-17 18:26:51,319 - util.py[DEBUG]: Writing to /etc/sudoers.d/90-cloud-init-users - ab: [None] 55 bytes
2017-11-17 18:26:51,320 - handlers.py[DEBUG]: finish: init-network/config-users-groups: SUCCESS: config-users-groups ran successfully
2017-11-17 18:26:51,320 - stages.py[DEBUG]: Running module ssh (<module 'cloudinit.config.cc_ssh' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh.py'>) with frequency once-per-instance
2017-11-17 18:26:51,320 - handlers.py[DEBUG]: start: init-network/config-ssh: running config-ssh with frequency once-per-instance
2017-11-17 18:26:51,320 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ssh - wb: [644] 25 bytes
2017-11-17 18:26:51,321 - helpers.py[DEBUG]: Running config-ssh using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ssh'>)
2017-11-17 18:26:51,321 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ed25519_key.pub
2017-11-17 18:26:51,323 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_rsa_key
2017-11-17 18:26:51,323 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_dsa_key
2017-11-17 18:26:51,323 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ed25519_key
2017-11-17 18:26:51,324 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_dsa_key.pub
2017-11-17 18:26:51,325 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ecdsa_key
2017-11-17 18:26:51,325 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_rsa_key.pub
2017-11-17 18:26:51,325 - util.py[DEBUG]: Attempting to remove /etc/ssh/ssh_host_ecdsa_key.pub
2017-11-17 18:26:51,325 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'rsa', '-N', '', '-f', '/etc/ssh/ssh_host_rsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,382 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'dsa', '-N', '', '-f', '/etc/ssh/ssh_host_dsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,479 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ecdsa', '-N', '', '-f', '/etc/ssh/ssh_host_ecdsa_key'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,482 - util.py[DEBUG]: Running command ['ssh-keygen', '-t', 'ed25519', '-N', '', '-f', '/etc/ssh/ssh_host_ed25519_key'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:51,488 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-11-17 18:26:51,489 - util.py[DEBUG]: Read 2540 bytes from /etc/ssh/sshd_config
2017-11-17 18:26:51,491 - util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
2017-11-17 18:26:51,491 - util.py[DEBUG]: Read 404 bytes from /home/ubuntu/.ssh/authorized_keys
2017-11-17 18:26:51,492 - util.py[DEBUG]: Writing to /home/ubuntu/.ssh/authorized_keys - wb: [600] 404 bytes
2017-11-17 18:26:51,492 - util.py[DEBUG]: Changing the ownership of /home/ubuntu/.ssh/authorized_keys to 1000:1000
2017-11-17 18:26:51,492 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-11-17 18:26:51,493 - util.py[DEBUG]: Read 2540 bytes from /etc/ssh/sshd_config
2017-11-17 18:26:51,494 - util.py[DEBUG]: Reading from /root/.ssh/authorized_keys (quiet=False)
2017-11-17 18:26:51,495 - util.py[DEBUG]: Read 559 bytes from /root/.ssh/authorized_keys
2017-11-17 18:26:51,495 - util.py[DEBUG]: Writing to /root/.ssh/authorized_keys - wb: [600] 559 bytes
2017-11-17 18:26:51,496 - util.py[DEBUG]: Changing the ownership of /root/.ssh/authorized_keys to 0:0
2017-11-17 18:26:51,496 - handlers.py[DEBUG]: finish: init-network/config-ssh: SUCCESS: config-ssh ran successfully
2017-11-17 18:26:51,496 - main.py[DEBUG]: Ran 16 modules with 0 failures
2017-11-17 18:26:51,497 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:26:51,497 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-11-17 18:26:51,497 - util.py[DEBUG]: cloud-init mode 'init' took 0.696 seconds (0.69)
2017-11-17 18:26:51,497 - handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
2017-11-17 18:26:52,883 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'modules:config' at Fri, 17 Nov 2017 18:26:52 +0000. Up 9.45 seconds.
2017-11-17 18:26:52,940 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:26:52,941 - stages.py[DEBUG]: Running module emit_upstart (<module 'cloudinit.config.cc_emit_upstart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_emit_upstart.py'>) with frequency always
2017-11-17 18:26:52,941 - handlers.py[DEBUG]: start: modules-config/config-emit_upstart: running config-emit_upstart with frequency always
2017-11-17 18:26:52,941 - helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7f6e58120e48>)
2017-11-17 18:26:52,941 - cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
2017-11-17 18:26:52,941 - cc_emit_upstart.py[DEBUG]: not upstart system, 'emit_upstart' disabled
2017-11-17 18:26:52,941 - handlers.py[DEBUG]: finish: modules-config/config-emit_upstart: SUCCESS: config-emit_upstart ran successfully
2017-11-17 18:26:52,941 - stages.py[DEBUG]: Running module snap_config (<module 'cloudinit.config.cc_snap_config' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snap_config.py'>) with frequency once-per-instance
2017-11-17 18:26:52,942 - handlers.py[DEBUG]: start: modules-config/config-snap_config: running config-snap_config with frequency once-per-instance
2017-11-17 18:26:52,942 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_snap_config - wb: [644] 25 bytes
2017-11-17 18:26:52,942 - helpers.py[DEBUG]: Running config-snap_config using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_snap_config'>)
2017-11-17 18:26:52,942 - cc_snap_config.py[DEBUG]: No snappy config provided, skipping
2017-11-17 18:26:52,943 - handlers.py[DEBUG]: finish: modules-config/config-snap_config: SUCCESS: config-snap_config ran successfully
2017-11-17 18:26:52,943 - stages.py[DEBUG]: Running module ssh-import-id (<module 'cloudinit.config.cc_ssh_import_id' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_import_id.py'>) with frequency once-per-instance
2017-11-17 18:26:52,943 - handlers.py[DEBUG]: start: modules-config/config-ssh-import-id: running config-ssh-import-id with frequency once-per-instance
2017-11-17 18:26:52,944 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ssh_import_id - wb: [644] 24 bytes
2017-11-17 18:26:52,944 - helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ssh_import_id'>)
2017-11-17 18:26:52,944 - handlers.py[DEBUG]: finish: modules-config/config-ssh-import-id: SUCCESS: config-ssh-import-id ran successfully
2017-11-17 18:26:52,944 - stages.py[DEBUG]: Running module locale (<module 'cloudinit.config.cc_locale' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_locale.py'>) with frequency once-per-instance
2017-11-17 18:26:52,945 - handlers.py[DEBUG]: start: modules-config/config-locale: running config-locale with frequency once-per-instance
2017-11-17 18:26:52,945 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_locale - wb: [644] 24 bytes
2017-11-17 18:26:52,945 - helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_locale'>)
2017-11-17 18:26:52,945 - cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
2017-11-17 18:26:52,946 - util.py[DEBUG]: Reading from /etc/default/locale (quiet=False)
2017-11-17 18:26:52,946 - util.py[DEBUG]: Read 87 bytes from /etc/default/locale
2017-11-17 18:26:52,946 - debian.py[DEBUG]: System has 'LANG=en_US.UTF-8' requested 'en_US.UTF-8', skipping regeneration.
2017-11-17 18:26:52,946 - handlers.py[DEBUG]: finish: modules-config/config-locale: SUCCESS: config-locale ran successfully
2017-11-17 18:26:52,946 - stages.py[DEBUG]: Running module set-passwords (<module 'cloudinit.config.cc_set_passwords' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_passwords.py'>) with frequency once-per-instance
2017-11-17 18:26:52,946 - handlers.py[DEBUG]: start: modules-config/config-set-passwords: running config-set-passwords with frequency once-per-instance
2017-11-17 18:26:52,946 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_set_passwords - wb: [644] 24 bytes
2017-11-17 18:26:52,947 - helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_set_passwords'>)
2017-11-17 18:26:52,947 - handlers.py[DEBUG]: finish: modules-config/config-set-passwords: SUCCESS: config-set-passwords ran successfully
2017-11-17 18:26:52,947 - stages.py[DEBUG]: Running module grub-dpkg (<module 'cloudinit.config.cc_grub_dpkg' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_grub_dpkg.py'>) with frequency once-per-instance
2017-11-17 18:26:52,947 - handlers.py[DEBUG]: start: modules-config/config-grub-dpkg: running config-grub-dpkg with frequency once-per-instance
2017-11-17 18:26:52,947 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_grub_dpkg - wb: [644] 25 bytes
2017-11-17 18:26:52,948 - helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_grub_dpkg'>)
2017-11-17 18:26:52,948 - cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/xvda','false'
2017-11-17 18:26:52,948 - util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:53,110 - handlers.py[DEBUG]: finish: modules-config/config-grub-dpkg: SUCCESS: config-grub-dpkg ran successfully
2017-11-17 18:26:53,110 - stages.py[DEBUG]: Running module apt-pipelining (<module 'cloudinit.config.cc_apt_pipelining' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_pipelining.py'>) with frequency once-per-instance
2017-11-17 18:26:53,110 - handlers.py[DEBUG]: start: modules-config/config-apt-pipelining: running config-apt-pipelining with frequency once-per-instance
2017-11-17 18:26:53,111 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_apt_pipelining - wb: [644] 24 bytes
2017-11-17 18:26:53,111 - helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_apt_pipelining'>)
2017-11-17 18:26:53,112 - util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [644] 80 bytes
2017-11-17 18:26:53,112 - cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
2017-11-17 18:26:53,112 - handlers.py[DEBUG]: finish: modules-config/config-apt-pipelining: SUCCESS: config-apt-pipelining ran successfully
2017-11-17 18:26:53,112 - stages.py[DEBUG]: Running module apt-configure (<module 'cloudinit.config.cc_apt_configure' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_configure.py'>) with frequency once-per-instance
2017-11-17 18:26:53,113 - handlers.py[DEBUG]: start: modules-config/config-apt-configure: running config-apt-configure with frequency once-per-instance
2017-11-17 18:26:53,113 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_apt_configure - wb: [644] 25 bytes
2017-11-17 18:26:53,113 - helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_apt_configure'>)
2017-11-17 18:26:53,113 - cc_apt_configure.py[DEBUG]: debconf_selections was not set in config
2017-11-17 18:26:53,113 - util.py[DEBUG]: Reading from /etc/os-release (quiet=True)
2017-11-17 18:26:53,114 - util.py[DEBUG]: Read 298 bytes from /etc/os-release
2017-11-17 18:26:53,114 - util.py[DEBUG]: Reading from /etc/system-image/channel.ini (quiet=True)
2017-11-17 18:26:53,114 - util.py[DEBUG]: Read 0 bytes from /etc/system-image/channel.ini
2017-11-17 18:26:53,114 - cc_apt_configure.py[DEBUG]: handling apt config: {}
2017-11-17 18:26:53,114 - util.py[DEBUG]: Running command ['lsb_release', '--all'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:53,175 - util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:53,180 - cc_apt_configure.py[DEBUG]: got primary mirror: None
2017-11-17 18:26:53,180 - cc_apt_configure.py[DEBUG]: got security mirror: None
2017-11-17 18:26:53,180 - util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:53,198 - __init__.py[DEBUG]: filtered distro mirror info: {'primary': 'http://us-east-2.ec2.archive.ubuntu.com/ubuntu/', 'security': 'http://security.ubuntu.com/ubuntu'}
2017-11-17 18:26:53,198 - cc_apt_configure.py[DEBUG]: Apt Mirror info: {'primary': 'http://us-east-2.ec2.archive.ubuntu.com/ubuntu/', 'MIRROR': 'http://us-east-2.ec2.archive.ubuntu.com/ubuntu/', 'PRIMARY': 'http://us-east-2.ec2.archive.ubuntu.com/ubuntu/', 'security': 'http://security.ubuntu.com/ubuntu', 'SECURITY': 'http://security.ubuntu.com/ubuntu'}
2017-11-17 18:26:53,198 - cc_apt_configure.py[INFO]: No custom template provided, fall back to builtin
2017-11-17 18:26:53,198 - util.py[DEBUG]: Reading from /etc/cloud/templates/sources.list.ubuntu.tmpl (quiet=False)
2017-11-17 18:26:53,199 - util.py[DEBUG]: Read 2841 bytes from /etc/cloud/templates/sources.list.ubuntu.tmpl
2017-11-17 18:26:53,207 - util.py[DEBUG]: Writing to /etc/apt/sources.list - wb: [644] 3335 bytes
2017-11-17 18:26:53,207 - util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:53,212 - handlers.py[DEBUG]: finish: modules-config/config-apt-configure: SUCCESS: config-apt-configure ran successfully
2017-11-17 18:26:53,212 - stages.py[DEBUG]: Running module ntp (<module 'cloudinit.config.cc_ntp' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ntp.py'>) with frequency once-per-instance
2017-11-17 18:26:53,213 - handlers.py[DEBUG]: start: modules-config/config-ntp: running config-ntp with frequency once-per-instance
2017-11-17 18:26:53,213 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ntp - wb: [644] 24 bytes
2017-11-17 18:26:53,213 - helpers.py[DEBUG]: Running config-ntp using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ntp'>)
2017-11-17 18:26:53,213 - cc_ntp.py[DEBUG]: Skipping module named ntp, not present or disabled by cfg
2017-11-17 18:26:53,213 - handlers.py[DEBUG]: finish: modules-config/config-ntp: SUCCESS: config-ntp ran successfully
2017-11-17 18:26:53,214 - stages.py[DEBUG]: Running module timezone (<module 'cloudinit.config.cc_timezone' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_timezone.py'>) with frequency once-per-instance
2017-11-17 18:26:53,214 - handlers.py[DEBUG]: start: modules-config/config-timezone: running config-timezone with frequency once-per-instance
2017-11-17 18:26:53,214 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_timezone - wb: [644] 24 bytes
2017-11-17 18:26:53,214 - helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_timezone'>)
2017-11-17 18:26:53,214 - cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
2017-11-17 18:26:53,214 - handlers.py[DEBUG]: finish: modules-config/config-timezone: SUCCESS: config-timezone ran successfully
2017-11-17 18:26:53,215 - stages.py[DEBUG]: Running module disable-ec2-metadata (<module 'cloudinit.config.cc_disable_ec2_metadata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disable_ec2_metadata.py'>) with frequency always
2017-11-17 18:26:53,215 - handlers.py[DEBUG]: start: modules-config/config-disable-ec2-metadata: running config-disable-ec2-metadata with frequency always
2017-11-17 18:26:53,215 - helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7f6e57990a90>)
2017-11-17 18:26:53,215 - cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
2017-11-17 18:26:53,215 - handlers.py[DEBUG]: finish: modules-config/config-disable-ec2-metadata: SUCCESS: config-disable-ec2-metadata ran successfully
2017-11-17 18:26:53,215 - stages.py[DEBUG]: Running module runcmd (<module 'cloudinit.config.cc_runcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_runcmd.py'>) with frequency once-per-instance
2017-11-17 18:26:53,215 - handlers.py[DEBUG]: start: modules-config/config-runcmd: running config-runcmd with frequency once-per-instance
2017-11-17 18:26:53,215 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_runcmd - wb: [644] 25 bytes
2017-11-17 18:26:53,216 - helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_runcmd'>)
2017-11-17 18:26:53,216 - cc_runcmd.py[DEBUG]: Skipping module named runcmd, no 'runcmd' key in configuration
2017-11-17 18:26:53,216 - handlers.py[DEBUG]: finish: modules-config/config-runcmd: SUCCESS: config-runcmd ran successfully
2017-11-17 18:26:53,216 - stages.py[DEBUG]: Running module byobu (<module 'cloudinit.config.cc_byobu' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_byobu.py'>) with frequency once-per-instance
2017-11-17 18:26:53,216 - handlers.py[DEBUG]: start: modules-config/config-byobu: running config-byobu with frequency once-per-instance
2017-11-17 18:26:53,216 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_byobu - wb: [644] 25 bytes
2017-11-17 18:26:53,217 - helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_byobu'>)
2017-11-17 18:26:53,217 - cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
2017-11-17 18:26:53,217 - handlers.py[DEBUG]: finish: modules-config/config-byobu: SUCCESS: config-byobu ran successfully
2017-11-17 18:26:53,217 - main.py[DEBUG]: Ran 13 modules with 0 failures
2017-11-17 18:26:53,218 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:26:53,218 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-11-17 18:26:53,218 - util.py[DEBUG]: cloud-init mode 'modules' took 0.445 seconds (0.44)
2017-11-17 18:26:53,218 - handlers.py[DEBUG]: finish: modules-config: SUCCESS: running modules for config
2017-11-17 18:26:53,558 - util.py[DEBUG]: Cloud-init v. 0.7.9 running 'modules:final' at Fri, 17 Nov 2017 18:26:53 +0000. Up 10.17 seconds.
2017-11-17 18:26:53,598 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:26:53,599 - stages.py[DEBUG]: Running module snappy (<module 'cloudinit.config.cc_snappy' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snappy.py'>) with frequency once-per-instance
2017-11-17 18:26:53,599 - handlers.py[DEBUG]: start: modules-final/config-snappy: running config-snappy with frequency once-per-instance
2017-11-17 18:26:53,599 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_snappy - wb: [644] 25 bytes
2017-11-17 18:26:53,599 - helpers.py[DEBUG]: Running config-snappy using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_snappy'>)
2017-11-17 18:26:53,600 - util.py[DEBUG]: Reading from /etc/os-release (quiet=True)
2017-11-17 18:26:53,600 - util.py[DEBUG]: Read 298 bytes from /etc/os-release
2017-11-17 18:26:53,600 - util.py[DEBUG]: Reading from /etc/system-image/channel.ini (quiet=True)
2017-11-17 18:26:53,600 - util.py[DEBUG]: Read 0 bytes from /etc/system-image/channel.ini
2017-11-17 18:26:53,600 - cc_snappy.py[DEBUG]: snappy: 'auto' mode, and system not snappy
2017-11-17 18:26:53,601 - handlers.py[DEBUG]: finish: modules-final/config-snappy: SUCCESS: config-snappy ran successfully
2017-11-17 18:26:53,601 - stages.py[DEBUG]: Running module package-update-upgrade-install (<module 'cloudinit.config.cc_package_update_upgrade_install' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_package_update_upgrade_install.py'>) with frequency once-per-instance
2017-11-17 18:26:53,601 - handlers.py[DEBUG]: start: modules-final/config-package-update-upgrade-install: running config-package-update-upgrade-install with frequency once-per-instance
2017-11-17 18:26:53,601 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_package_update_upgrade_install - wb: [644] 25 bytes
2017-11-17 18:26:53,601 - helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_package_update_upgrade_install'>)
2017-11-17 18:26:53,602 - handlers.py[DEBUG]: finish: modules-final/config-package-update-upgrade-install: SUCCESS: config-package-update-upgrade-install ran successfully
2017-11-17 18:26:53,602 - stages.py[DEBUG]: Running module fan (<module 'cloudinit.config.cc_fan' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_fan.py'>) with frequency once-per-instance
2017-11-17 18:26:53,602 - handlers.py[DEBUG]: start: modules-final/config-fan: running config-fan with frequency once-per-instance
2017-11-17 18:26:53,602 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_fan - wb: [644] 25 bytes
2017-11-17 18:26:53,602 - helpers.py[DEBUG]: Running config-fan using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_fan'>)
2017-11-17 18:26:53,603 - cc_fan.py[DEBUG]: fan: no 'fan' config entry. disabling
2017-11-17 18:26:53,603 - handlers.py[DEBUG]: finish: modules-final/config-fan: SUCCESS: config-fan ran successfully
2017-11-17 18:26:53,603 - stages.py[DEBUG]: Running module landscape (<module 'cloudinit.config.cc_landscape' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_landscape.py'>) with frequency once-per-instance
2017-11-17 18:26:53,603 - handlers.py[DEBUG]: start: modules-final/config-landscape: running config-landscape with frequency once-per-instance
2017-11-17 18:26:53,603 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_landscape - wb: [644] 25 bytes
2017-11-17 18:26:53,603 - helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_landscape'>)
2017-11-17 18:26:53,604 - handlers.py[DEBUG]: finish: modules-final/config-landscape: SUCCESS: config-landscape ran successfully
2017-11-17 18:26:53,604 - stages.py[DEBUG]: Running module lxd (<module 'cloudinit.config.cc_lxd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_lxd.py'>) with frequency once-per-instance
2017-11-17 18:26:53,604 - handlers.py[DEBUG]: start: modules-final/config-lxd: running config-lxd with frequency once-per-instance
2017-11-17 18:26:53,604 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_lxd - wb: [644] 25 bytes
2017-11-17 18:26:53,605 - helpers.py[DEBUG]: Running config-lxd using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_lxd'>)
2017-11-17 18:26:53,605 - cc_lxd.py[DEBUG]: Skipping module named lxd, not present or disabled by cfg
2017-11-17 18:26:53,605 - handlers.py[DEBUG]: finish: modules-final/config-lxd: SUCCESS: config-lxd ran successfully
2017-11-17 18:26:53,605 - stages.py[DEBUG]: Running module puppet (<module 'cloudinit.config.cc_puppet' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_puppet.py'>) with frequency once-per-instance
2017-11-17 18:26:53,606 - handlers.py[DEBUG]: start: modules-final/config-puppet: running config-puppet with frequency once-per-instance
2017-11-17 18:26:53,606 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_puppet - wb: [644] 25 bytes
2017-11-17 18:26:53,606 - helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_puppet'>)
2017-11-17 18:26:53,606 - cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
2017-11-17 18:26:53,606 - handlers.py[DEBUG]: finish: modules-final/config-puppet: SUCCESS: config-puppet ran successfully
2017-11-17 18:26:53,606 - stages.py[DEBUG]: Running module chef (<module 'cloudinit.config.cc_chef' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_chef.py'>) with frequency once-per-instance
2017-11-17 18:26:53,607 - handlers.py[DEBUG]: start: modules-final/config-chef: running config-chef with frequency once-per-instance
2017-11-17 18:26:53,607 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_chef - wb: [644] 24 bytes
2017-11-17 18:26:53,607 - helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_chef'>)
2017-11-17 18:26:53,607 - cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
2017-11-17 18:26:53,607 - handlers.py[DEBUG]: finish: modules-final/config-chef: SUCCESS: config-chef ran successfully
2017-11-17 18:26:53,607 - stages.py[DEBUG]: Running module salt-minion (<module 'cloudinit.config.cc_salt_minion' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_salt_minion.py'>) with frequency once-per-instance
2017-11-17 18:26:53,608 - handlers.py[DEBUG]: start: modules-final/config-salt-minion: running config-salt-minion with frequency once-per-instance
2017-11-17 18:26:53,608 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_salt_minion - wb: [644] 25 bytes
2017-11-17 18:26:53,608 - helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_salt_minion'>)
2017-11-17 18:26:53,608 - cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
2017-11-17 18:26:53,608 - handlers.py[DEBUG]: finish: modules-final/config-salt-minion: SUCCESS: config-salt-minion ran successfully
2017-11-17 18:26:53,608 - stages.py[DEBUG]: Running module mcollective (<module 'cloudinit.config.cc_mcollective' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mcollective.py'>) with frequency once-per-instance
2017-11-17 18:26:53,609 - handlers.py[DEBUG]: start: modules-final/config-mcollective: running config-mcollective with frequency once-per-instance
2017-11-17 18:26:53,609 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_mcollective - wb: [644] 25 bytes
2017-11-17 18:26:53,609 - helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_mcollective'>)
2017-11-17 18:26:53,609 - cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
2017-11-17 18:26:53,609 - handlers.py[DEBUG]: finish: modules-final/config-mcollective: SUCCESS: config-mcollective ran successfully
2017-11-17 18:26:53,609 - stages.py[DEBUG]: Running module rightscale_userdata (<module 'cloudinit.config.cc_rightscale_userdata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rightscale_userdata.py'>) with frequency once-per-instance
2017-11-17 18:26:53,610 - handlers.py[DEBUG]: start: modules-final/config-rightscale_userdata: running config-rightscale_userdata with frequency once-per-instance
2017-11-17 18:26:53,610 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_rightscale_userdata - wb: [644] 25 bytes
2017-11-17 18:26:53,610 - helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_rightscale_userdata'>)
2017-11-17 18:26:53,610 - cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
2017-11-17 18:26:53,610 - handlers.py[DEBUG]: finish: modules-final/config-rightscale_userdata: SUCCESS: config-rightscale_userdata ran successfully
2017-11-17 18:26:53,610 - stages.py[DEBUG]: Running module scripts-vendor (<module 'cloudinit.config.cc_scripts_vendor' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_vendor.py'>) with frequency once-per-instance
2017-11-17 18:26:53,611 - handlers.py[DEBUG]: start: modules-final/config-scripts-vendor: running config-scripts-vendor with frequency once-per-instance
2017-11-17 18:26:53,611 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_scripts_vendor - wb: [644] 24 bytes
2017-11-17 18:26:53,611 - helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_scripts_vendor'>)
2017-11-17 18:26:53,611 - handlers.py[DEBUG]: finish: modules-final/config-scripts-vendor: SUCCESS: config-scripts-vendor ran successfully
2017-11-17 18:26:53,611 - stages.py[DEBUG]: Running module scripts-per-once (<module 'cloudinit.config.cc_scripts_per_once' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_once.py'>) with frequency once
2017-11-17 18:26:53,612 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-once: running config-scripts-per-once with frequency once
2017-11-17 18:26:53,612 - util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [644] 24 bytes
2017-11-17 18:26:53,612 - helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
2017-11-17 18:26:53,612 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-once: SUCCESS: config-scripts-per-once ran successfully
2017-11-17 18:26:53,612 - stages.py[DEBUG]: Running module scripts-per-boot (<module 'cloudinit.config.cc_scripts_per_boot' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_boot.py'>) with frequency always
2017-11-17 18:26:53,612 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-boot: running config-scripts-per-boot with frequency always
2017-11-17 18:26:53,613 - helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f8ebec02c50>)
2017-11-17 18:26:53,613 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-boot: SUCCESS: config-scripts-per-boot ran successfully
2017-11-17 18:26:53,613 - stages.py[DEBUG]: Running module scripts-per-instance (<module 'cloudinit.config.cc_scripts_per_instance' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_instance.py'>) with frequency once-per-instance
2017-11-17 18:26:53,613 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-instance: running config-scripts-per-instance with frequency once-per-instance
2017-11-17 18:26:53,613 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_scripts_per_instance - wb: [644] 24 bytes
2017-11-17 18:26:53,613 - helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_scripts_per_instance'>)
2017-11-17 18:26:53,614 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-instance: SUCCESS: config-scripts-per-instance ran successfully
2017-11-17 18:26:53,614 - stages.py[DEBUG]: Running module scripts-user (<module 'cloudinit.config.cc_scripts_user' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_user.py'>) with frequency once-per-instance
2017-11-17 18:26:53,614 - handlers.py[DEBUG]: start: modules-final/config-scripts-user: running config-scripts-user with frequency once-per-instance
2017-11-17 18:26:53,614 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_scripts_user - wb: [644] 25 bytes
2017-11-17 18:26:53,614 - helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_scripts_user'>)
2017-11-17 18:26:53,615 - handlers.py[DEBUG]: finish: modules-final/config-scripts-user: SUCCESS: config-scripts-user ran successfully
2017-11-17 18:26:53,615 - stages.py[DEBUG]: Running module ssh-authkey-fingerprints (<module 'cloudinit.config.cc_ssh_authkey_fingerprints' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_authkey_fingerprints.py'>) with frequency once-per-instance
2017-11-17 18:26:53,615 - handlers.py[DEBUG]: start: modules-final/config-ssh-authkey-fingerprints: running config-ssh-authkey-fingerprints with frequency once-per-instance
2017-11-17 18:26:53,615 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ssh_authkey_fingerprints - wb: [644] 25 bytes
2017-11-17 18:26:53,615 - helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_ssh_authkey_fingerprints'>)
2017-11-17 18:26:53,616 - util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
2017-11-17 18:26:53,616 - util.py[DEBUG]: Read 2540 bytes from /etc/ssh/sshd_config
2017-11-17 18:26:53,616 - util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
2017-11-17 18:26:53,616 - util.py[DEBUG]: Read 404 bytes from /home/ubuntu/.ssh/authorized_keys
2017-11-17 18:26:53,652 - handlers.py[DEBUG]: finish: modules-final/config-ssh-authkey-fingerprints: SUCCESS: config-ssh-authkey-fingerprints ran successfully
2017-11-17 18:26:53,652 - stages.py[DEBUG]: Running module keys-to-console (<module 'cloudinit.config.cc_keys_to_console' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_keys_to_console.py'>) with frequency once-per-instance
2017-11-17 18:26:53,652 - handlers.py[DEBUG]: start: modules-final/config-keys-to-console: running config-keys-to-console with frequency once-per-instance
2017-11-17 18:26:53,653 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_keys_to_console - wb: [644] 25 bytes
2017-11-17 18:26:53,653 - helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_keys_to_console'>)
2017-11-17 18:26:53,653 - util.py[DEBUG]: Running command ['/usr/lib/cloud-init/write-ssh-key-fingerprints', '', 'ssh-dss'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:26:53,732 - handlers.py[DEBUG]: finish: modules-final/config-keys-to-console: SUCCESS: config-keys-to-console ran successfully
2017-11-17 18:26:53,732 - stages.py[DEBUG]: Running module phone-home (<module 'cloudinit.config.cc_phone_home' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_phone_home.py'>) with frequency once-per-instance
2017-11-17 18:26:53,732 - handlers.py[DEBUG]: start: modules-final/config-phone-home: running config-phone-home with frequency once-per-instance
2017-11-17 18:26:53,733 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_phone_home - wb: [644] 25 bytes
2017-11-17 18:26:53,733 - helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_phone_home'>)
2017-11-17 18:26:53,733 - cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
2017-11-17 18:26:53,733 - handlers.py[DEBUG]: finish: modules-final/config-phone-home: SUCCESS: config-phone-home ran successfully
2017-11-17 18:26:53,733 - stages.py[DEBUG]: Running module final-message (<module 'cloudinit.config.cc_final_message' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_final_message.py'>) with frequency always
2017-11-17 18:26:53,734 - handlers.py[DEBUG]: start: modules-final/config-final-message: running config-final-message with frequency always
2017-11-17 18:26:53,734 - helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f8ebe45e128>)
2017-11-17 18:26:53,734 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:26:53,734 - util.py[DEBUG]: Read 11 bytes from /proc/uptime
2017-11-17 18:26:53,737 - util.py[DEBUG]: Cloud-init v. 0.7.9 finished at Fri, 17 Nov 2017 18:26:53 +0000. Datasource DataSourceEc2.  Up 10.40 seconds
2017-11-17 18:26:53,737 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [644] 51 bytes
2017-11-17 18:26:53,738 - handlers.py[DEBUG]: finish: modules-final/config-final-message: SUCCESS: config-final-message ran successfully
2017-11-17 18:26:53,738 - stages.py[DEBUG]: Running module power-state-change (<module 'cloudinit.config.cc_power_state_change' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_power_state_change.py'>) with frequency once-per-instance
2017-11-17 18:26:53,738 - handlers.py[DEBUG]: start: modules-final/config-power-state-change: running config-power-state-change with frequency once-per-instance
2017-11-17 18:26:53,738 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_power_state_change - wb: [644] 23 bytes
2017-11-17 18:26:53,739 - helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/i-0f885cd59d967ec90/sem/config_power_state_change'>)
2017-11-17 18:26:53,739 - cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
2017-11-17 18:26:53,739 - handlers.py[DEBUG]: finish: modules-final/config-power-state-change: SUCCESS: config-power-state-change ran successfully
2017-11-17 18:26:53,739 - main.py[DEBUG]: Ran 20 modules with 0 failures
2017-11-17 18:26:53,740 - util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
2017-11-17 18:26:53,740 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:26:53,740 - util.py[DEBUG]: Read 11 bytes from /proc/uptime
2017-11-17 18:26:53,740 - util.py[DEBUG]: cloud-init mode 'modules' took 0.233 seconds (0.24)
2017-11-17 18:26:53,740 - handlers.py[DEBUG]: finish: modules-final: SUCCESS: running modules for final
2017-11-17 18:31:21,520 - util.py[DEBUG]: Cloud-init v. 17.1 running 'single' at Fri, 17 Nov 2017 18:31:21 +0000. Up 277.24 seconds.
2017-11-17 18:31:21,521 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:31:21,522 - 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
2017-11-17 18:31:21,522 - util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_apt_pipelining.once - wb: [644] 25 bytes
2017-11-17 18:31:21,523 - helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/sem/config_apt_pipelining.once'>)
2017-11-17 18:31:21,523 - util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [644] 80 bytes
2017-11-17 18:31:21,523 - cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
2017-11-17 18:31:21,523 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:31:21,523 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-11-17 18:31:21,524 - util.py[DEBUG]: cloud-init mode 'single' took 0.063 seconds (0.06)
2017-11-17 18:32:43,813 - util.py[DEBUG]: Cloud-init v. 17.1 running 'init-local' at Fri, 17 Nov 2017 18:32:43 +0000. Up 5.46 seconds.
2017-11-17 18:32:43,818 - main.py[DEBUG]: No kernel command line url found.
2017-11-17 18:32:43,818 - main.py[DEBUG]: Closing stdin.
2017-11-17 18:32:43,822 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2017-11-17 18:32:43,823 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-11-17 18:32:43,830 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
2017-11-17 18:32:43,830 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
2017-11-17 18:32:43,830 - handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
2017-11-17 18:32:43,830 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-11-17 18:32:43,831 - util.py[DEBUG]: Read 5284 bytes from /var/lib/cloud/instance/obj.pkl
2017-11-17 18:32:43,838 - stages.py[DEBUG]: cache invalid in datasource: DataSourceEc2
2017-11-17 18:32:43,838 - handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: cache invalid in datasource: DataSourceEc2
2017-11-17 18:32:43,838 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-17 18:32:43,845 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:32:43,846 - __init__.py[DEBUG]: Looking for for data source in: ['NoCloud', 'ConfigDrive', 'OpenNebula', 'DigitalOcean', 'Azure', 'AltCloud', 'OVF', 'MAAS', 'GCE', 'OpenStack', 'CloudSigma', 'SmartOS', 'Bigstep', 'Scaleway', 'Aliyun', 'Ec2', 'CloudStack', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
2017-11-17 18:32:43,952 - __init__.py[DEBUG]: Searching for local data source in: ['DataSourceNoCloud', 'DataSourceConfigDrive', 'DataSourceOpenNebula', 'DataSourceDigitalOcean', 'DataSourceAzure', 'DataSourceOVF', 'DataSourceCloudSigma', 'DataSourceSmartOS', 'DataSourceEc2Local']
2017-11-17 18:32:43,952 - handlers.py[DEBUG]: start: init-local/search-NoCloud: searching for local data from DataSourceNoCloud
2017-11-17 18:32:43,953 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloud'>
2017-11-17 18:32:43,953 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:43,955 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:43,958 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:43,963 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:43,964 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:43,964 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:43,964 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:32:43,964 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_serial
2017-11-17 18:32:43,964 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_serial (quiet=False)
2017-11-17 18:32:43,964 - util.py[DEBUG]: Read 37 bytes from /sys/class/dmi/id/product_serial
2017-11-17 18:32:43,964 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_serial returned ec2c85ed-6d4c-fb0f-d96c-979762ef3b0c
2017-11-17 18:32:43,964 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
2017-11-17 18:32:43,964 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
2017-11-17 18:32:43,964 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
2017-11-17 18:32:43,964 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/network-config (quiet=False)
2017-11-17 18:32:43,965 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
2017-11-17 18:32:43,965 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
2017-11-17 18:32:43,965 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
2017-11-17 18:32:43,965 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/network-config (quiet=False)
2017-11-17 18:32:43,965 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:43,971 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:43,975 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,012 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,043 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,080 - handlers.py[DEBUG]: finish: init-local/search-NoCloud: SUCCESS: no local data found from DataSourceNoCloud
2017-11-17 18:32:44,080 - handlers.py[DEBUG]: start: init-local/search-ConfigDrive: searching for local data from DataSourceConfigDrive
2017-11-17 18:32:44,080 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceConfigDrive.DataSourceConfigDrive'>
2017-11-17 18:32:44,080 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,087 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,089 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/cd0'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,097 - util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/cd1'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,099 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,139 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,171 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=config-2', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,208 - handlers.py[DEBUG]: finish: init-local/search-ConfigDrive: SUCCESS: no local data found from DataSourceConfigDrive
2017-11-17 18:32:44,208 - handlers.py[DEBUG]: start: init-local/search-OpenNebula: searching for local data from DataSourceOpenNebula
2017-11-17 18:32:44,208 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOpenNebula.DataSourceOpenNebula'>
2017-11-17 18:32:44,208 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=CONTEXT', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,260 - util.py[DEBUG]: Running command ['blkid', '-tLABEL=CDROM', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,283 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,306 - handlers.py[DEBUG]: finish: init-local/search-OpenNebula: SUCCESS: no local data found from DataSourceOpenNebula
2017-11-17 18:32:44,306 - handlers.py[DEBUG]: start: init-local/search-DigitalOcean: searching for local data from DataSourceDigitalOcean
2017-11-17 18:32:44,306 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceDigitalOcean.DataSourceDigitalOcean'>
2017-11-17 18:32:44,306 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,310 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,313 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,314 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:44,314 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:44,314 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:44,315 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:32:44,315 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/sys_vendor
2017-11-17 18:32:44,315 - util.py[DEBUG]: Reading from /sys/class/dmi/id/sys_vendor (quiet=False)
2017-11-17 18:32:44,315 - util.py[DEBUG]: Read 4 bytes from /sys/class/dmi/id/sys_vendor
2017-11-17 18:32:44,315 - util.py[DEBUG]: dmi data /sys/class/dmi/id/sys_vendor returned Xen
2017-11-17 18:32:44,315 - handlers.py[DEBUG]: finish: init-local/search-DigitalOcean: SUCCESS: no local data found from DataSourceDigitalOcean
2017-11-17 18:32:44,315 - handlers.py[DEBUG]: start: init-local/search-Azure: searching for local data from DataSourceAzure
2017-11-17 18:32:44,315 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceAzure.DataSourceAzure'>
2017-11-17 18:32:44,318 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,321 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,322 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,323 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:44,326 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:44,326 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:44,326 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:32:44,326 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/chassis_asset_tag
2017-11-17 18:32:44,326 - util.py[DEBUG]: Reading from /sys/class/dmi/id/chassis_asset_tag (quiet=False)
2017-11-17 18:32:44,326 - util.py[DEBUG]: Read 1 bytes from /sys/class/dmi/id/chassis_asset_tag
2017-11-17 18:32:44,326 - util.py[DEBUG]: dmi data /sys/class/dmi/id/chassis_asset_tag returned 
2017-11-17 18:32:44,326 - DataSourceAzure.py[DEBUG]: Non-Azure DMI asset tag '' discovered.
2017-11-17 18:32:44,326 - handlers.py[DEBUG]: finish: init-local/search-Azure: SUCCESS: no local data found from DataSourceAzure
2017-11-17 18:32:44,327 - handlers.py[DEBUG]: start: init-local/search-OVF: searching for local data from DataSourceOVF
2017-11-17 18:32:44,327 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOVF.DataSourceOVF'>
2017-11-17 18:32:44,327 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,330 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,331 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,335 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:44,335 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:44,335 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:44,335 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:32:44,336 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:32:44,336 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:32:44,337 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:32:44,337 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:32:44,337 - util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
2017-11-17 18:32:44,337 - util.py[DEBUG]: Read 1987 bytes from /proc/mounts
2017-11-17 18:32:44,337 - util.py[DEBUG]: Fetched {'udev': {'fstype': 'devtmpfs', 'opts': 'rw,nosuid,relatime,size=499364k,nr_inodes=124841,mode=755', 'mountpoint': '/dev'}, 'proc': {'fstype': 'proc', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/proc'}, 'tmpfs': {'fstype': 'tmpfs', 'opts': 'ro,nosuid,nodev,noexec,mode=755', 'mountpoint': '/sys/fs/cgroup'}, 'cgroup': {'fstype': 'cgroup', 'opts': 'rw,nosuid,nodev,noexec,relatime,perf_event', 'mountpoint': '/sys/fs/cgroup/perf_event'}, 'debugfs': {'fstype': 'debugfs', 'opts': 'rw,relatime', 'mountpoint': '/sys/kernel/debug'}, '/dev/xvda1': {'fstype': 'ext4', 'opts': 'rw,relatime,discard,data=ordered', 'mountpoint': '/'}, 'fusectl': {'fstype': 'fusectl', 'opts': 'rw,relatime', 'mountpoint': '/sys/fs/fuse/connections'}, 'devpts': {'fstype': 'devpts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'mountpoint': '/dev/pts'}, 'pstore': {'fstype': 'pstore', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/fs/pstore'}, 'systemd-1': {'fstype': 'autofs', 'opts': 'rw,relatime,fd=36,pgrp=1,timeout=0,minproto=5,maxproto=5,direct', 'mountpoint': '/proc/sys/fs/binfmt_misc'}, 'sysfs': {'fstype': 'sysfs', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys'}, 'hugetlbfs': {'fstype': 'hugetlbfs', 'opts': 'rw,relatime', 'mountpoint': '/dev/hugepages'}, 'mqueue': {'fstype': 'mqueue', 'opts': 'rw,relatime', 'mountpoint': '/dev/mqueue'}, 'securityfs': {'fstype': 'securityfs', 'opts': 'rw,nosuid,nodev,noexec,relatime', 'mountpoint': '/sys/kernel/security'}} mounts from proc
2017-11-17 18:32:44,337 - util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
2017-11-17 18:32:44,361 - handlers.py[DEBUG]: finish: init-local/search-OVF: SUCCESS: no local data found from DataSourceOVF
2017-11-17 18:32:44,362 - handlers.py[DEBUG]: start: init-local/search-CloudSigma: searching for local data from DataSourceCloudSigma
2017-11-17 18:32:44,362 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceCloudSigma.DataSourceCloudSigma'>
2017-11-17 18:32:44,362 - DataSourceCloudSigma.py[DEBUG]: determining hypervisor product name via dmi data
2017-11-17 18:32:44,362 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,366 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,367 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,369 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:44,369 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:44,369 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:44,369 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:32:44,369 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:32:44,369 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:32:44,369 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:32:44,369 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:32:44,369 - DataSourceCloudSigma.py[DEBUG]: detected hypervisor as HVM domU
2017-11-17 18:32:44,370 - handlers.py[DEBUG]: finish: init-local/search-CloudSigma: SUCCESS: no local data found from DataSourceCloudSigma
2017-11-17 18:32:44,370 - handlers.py[DEBUG]: start: init-local/search-SmartOS: searching for local data from DataSourceSmartOS
2017-11-17 18:32:44,370 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceSmartOS.DataSourceSmartOS'>
2017-11-17 18:32:44,373 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,374 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,378 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,379 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:44,379 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:44,379 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:44,379 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:32:44,381 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
2017-11-17 18:32:44,381 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
2017-11-17 18:32:44,381 - util.py[DEBUG]: Read 9 bytes from /sys/class/dmi/id/product_name
2017-11-17 18:32:44,382 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned HVM domU
2017-11-17 18:32:44,382 - DataSourceSmartOS.py[DEBUG]: Not running on smartos
2017-11-17 18:32:44,382 - handlers.py[DEBUG]: finish: init-local/search-SmartOS: SUCCESS: no local data found from DataSourceSmartOS
2017-11-17 18:32:44,382 - handlers.py[DEBUG]: start: init-local/search-Ec2Local: searching for local data from DataSourceEc2Local
2017-11-17 18:32:44,382 - __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceEc2.DataSourceEc2Local'>
2017-11-17 18:32:44,382 - util.py[DEBUG]: Reading from /sys/hypervisor/uuid (quiet=False)
2017-11-17 18:32:44,382 - util.py[DEBUG]: Read 37 bytes from /sys/hypervisor/uuid
2017-11-17 18:32:44,382 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,386 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,387 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,390 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:44,390 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:44,390 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:44,390 - util.py[DEBUG]: Read 895 bytes from /proc/self/status
2017-11-17 18:32:44,390 - util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_serial
2017-11-17 18:32:44,391 - util.py[DEBUG]: Reading from /sys/class/dmi/id/product_serial (quiet=False)
2017-11-17 18:32:44,391 - util.py[DEBUG]: Read 37 bytes from /sys/class/dmi/id/product_serial
2017-11-17 18:32:44,391 - util.py[DEBUG]: dmi data /sys/class/dmi/id/product_serial returned ec2c85ed-6d4c-fb0f-d96c-979762ef3b0c
2017-11-17 18:32:44,391 - util.py[DEBUG]: Reading from /var/lib/cloud/seed/ec2/meta-data (quiet=False)
2017-11-17 18:32:44,391 - DataSourceEc2.py[DEBUG]: strict_mode: warn, cloud_platform=AWS
2017-11-17 18:32:44,391 - util.py[DEBUG]: Reading from /sys/class/net/eth0/carrier (quiet=False)
2017-11-17 18:32:44,391 - util.py[DEBUG]: Reading from /sys/class/net/eth0/dormant (quiet=False)
2017-11-17 18:32:44,391 - util.py[DEBUG]: Reading from /sys/class/net/eth0/operstate (quiet=False)
2017-11-17 18:32:44,393 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/eth0/operstate
2017-11-17 18:32:44,393 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:32:44,393 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:32:44,395 - dhcp.py[DEBUG]: Performing a dhcp discovery on eth0
2017-11-17 18:32:44,395 - util.py[DEBUG]: Copying /sbin/dhclient to /var/tmp/cloud-init/cloud-init-dhcp-u_vqotu6/dhclient
2017-11-17 18:32:44,400 - util.py[DEBUG]: Running command ['ip', 'link', 'set', 'dev', 'eth0', 'up'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,413 - util.py[DEBUG]: Running command ['/var/tmp/cloud-init/cloud-init-dhcp-u_vqotu6/dhclient', '-1', '-v', '-lf', '/var/tmp/cloud-init/cloud-init-dhcp-u_vqotu6/dhcp.leases', '-pf', '/var/tmp/cloud-init/cloud-init-dhcp-u_vqotu6/dhclient.pid', 'eth0', '-sf', '/bin/true'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,437 - util.py[DEBUG]: Reading from /var/tmp/cloud-init/cloud-init-dhcp-u_vqotu6/dhcp.leases (quiet=False)
2017-11-17 18:32:44,437 - util.py[DEBUG]: Read 530 bytes from /var/tmp/cloud-init/cloud-init-dhcp-u_vqotu6/dhcp.leases
2017-11-17 18:32:44,438 - __init__.py[DEBUG]: Attempting setup of ephemeral network on eth0 with 172.31.16.165/20 brd 172.31.31.255
2017-11-17 18:32:44,438 - util.py[DEBUG]: Running command ['ip', '-family', 'inet', 'addr', 'add', '172.31.16.165/20', 'broadcast', '172.31.31.255', 'dev', 'eth0'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,439 - util.py[DEBUG]: Running command ['ip', '-family', 'inet', 'link', 'set', 'dev', 'eth0', 'up'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,443 - util.py[DEBUG]: Running command ['ip', 'route', 'show', '0.0.0.0/0'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,445 - util.py[DEBUG]: Running command ['ip', '-4', 'route', 'add', 'default', 'via', '172.31.16.1', 'dev', 'eth0'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,454 - DataSourceEc2.py[DEBUG]: Removed the following from metadata urls: ['http://instance-data.:8773']
2017-11-17 18:32:44,454 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'timeout': 50.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2009-04-04/meta-data/instance-id'} configuration
2017-11-17 18:32:44,462 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2009-04-04/meta-data/instance-id (200, 19b) after 1 attempts
2017-11-17 18:32:44,462 - DataSourceEc2.py[DEBUG]: Using metadata source: 'http://169.254.169.254'
2017-11-17 18:32:44,462 - url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/2016-09-02/meta-data/instance-id' with {'url': 'http://169.254.169.254/2016-09-02/meta-data/instance-id', 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}} configuration
2017-11-17 18:32:44,465 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/instance-id (200, 19b) after 1 attempts
2017-11-17 18:32:44,465 - DataSourceEc2.py[DEBUG]: Found preferred metadata version 2016-09-02
2017-11-17 18:32:44,465 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/user-data' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/user-data'} configuration
2017-11-17 18:32:44,472 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/'} configuration
2017-11-17 18:32:44,474 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/ (200, 263b) after 1 attempts
2017-11-17 18:32:44,475 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/'} configuration
2017-11-17 18:32:44,477 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ (200, 30b) after 1 attempts
2017-11-17 18:32:44,477 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ami' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ami'} configuration
2017-11-17 18:32:44,480 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ami (200, 9b) after 1 attempts
2017-11-17 18:32:44,480 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ephemeral0' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ephemeral0'} configuration
2017-11-17 18:32:44,484 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ephemeral0 (200, 3b) after 1 attempts
2017-11-17 18:32:44,484 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ephemeral1' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ephemeral1'} configuration
2017-11-17 18:32:44,488 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/ephemeral1 (200, 3b) after 1 attempts
2017-11-17 18:32:44,488 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/root' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/root'} configuration
2017-11-17 18:32:44,490 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/block-device-mapping/root (200, 9b) after 1 attempts
2017-11-17 18:32:44,490 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/metrics/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/metrics/'} configuration
2017-11-17 18:32:44,496 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/metrics/ (200, 7b) after 1 attempts
2017-11-17 18:32:44,496 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/metrics/vhostmd' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/metrics/vhostmd'} configuration
2017-11-17 18:32:44,498 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/metrics/vhostmd (200, 38b) after 1 attempts
2017-11-17 18:32:44,498 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/'} configuration
2017-11-17 18:32:44,504 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/ (200, 11b) after 1 attempts
2017-11-17 18:32:44,504 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/'} configuration
2017-11-17 18:32:44,506 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/ (200, 5b) after 1 attempts
2017-11-17 18:32:44,506 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/'} configuration
2017-11-17 18:32:44,512 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/ (200, 18b) after 1 attempts
2017-11-17 18:32:44,512 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/'} configuration
2017-11-17 18:32:44,514 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ (200, 281b) after 1 attempts
2017-11-17 18:32:44,514 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv4-associations/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv4-associations/'} configuration
2017-11-17 18:32:44,516 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv4-associations/ (200, 13b) after 1 attempts
2017-11-17 18:32:44,516 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv4-associations/18.216.235.39' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv4-associations/18.216.235.39'} configuration
2017-11-17 18:32:44,520 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv4-associations/18.216.235.39 (200, 13b) after 1 attempts
2017-11-17 18:32:44,520 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/public-ipv4s' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/public-ipv4s'} configuration
2017-11-17 18:32:44,525 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/public-ipv4s (200, 13b) after 1 attempts
2017-11-17 18:32:44,525 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv4-cidr-block' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv4-cidr-block'} configuration
2017-11-17 18:32:44,527 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv4-cidr-block (200, 13b) after 1 attempts
2017-11-17 18:32:44,527 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/mac' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/mac'} configuration
2017-11-17 18:32:44,530 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/mac (200, 17b) after 1 attempts
2017-11-17 18:32:44,530 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv6-cidr-blocks' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv6-cidr-blocks'} configuration
2017-11-17 18:32:44,534 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv6-cidr-blocks (200, 23b) after 1 attempts
2017-11-17 18:32:44,534 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-id' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-id'} configuration
2017-11-17 18:32:44,538 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-id (200, 15b) after 1 attempts
2017-11-17 18:32:44,538 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-ipv6-cidr-blocks' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-ipv6-cidr-blocks'} configuration
2017-11-17 18:32:44,541 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-ipv6-cidr-blocks (200, 23b) after 1 attempts
2017-11-17 18:32:44,541 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv4-cidr-blocks' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv4-cidr-blocks'} configuration
2017-11-17 18:32:44,544 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-ipv4-cidr-blocks (200, 13b) after 1 attempts
2017-11-17 18:32:44,544 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/security-groups' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/security-groups'} configuration
2017-11-17 18:32:44,548 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/security-groups (200, 36b) after 1 attempts
2017-11-17 18:32:44,548 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/local-hostname' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/local-hostname'} configuration
2017-11-17 18:32:44,551 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/local-hostname (200, 43b) after 1 attempts
2017-11-17 18:32:44,552 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/public-hostname' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/public-hostname'} configuration
2017-11-17 18:32:44,556 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/public-hostname (200, 49b) after 1 attempts
2017-11-17 18:32:44,556 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/device-number' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/device-number'} configuration
2017-11-17 18:32:44,558 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/device-number (200, 1b) after 1 attempts
2017-11-17 18:32:44,559 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv6s' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv6s'} configuration
2017-11-17 18:32:44,564 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/ipv6s (200, 38b) after 1 attempts
2017-11-17 18:32:44,564 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-id' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-id'} configuration
2017-11-17 18:32:44,566 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/vpc-id (200, 12b) after 1 attempts
2017-11-17 18:32:44,566 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/owner-id' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/owner-id'} configuration
2017-11-17 18:32:44,572 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/owner-id (200, 12b) after 1 attempts
2017-11-17 18:32:44,572 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/security-group-ids' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/security-group-ids'} configuration
2017-11-17 18:32:44,574 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/security-group-ids (200, 11b) after 1 attempts
2017-11-17 18:32:44,574 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-ipv4-cidr-block' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-ipv4-cidr-block'} configuration
2017-11-17 18:32:44,580 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/subnet-ipv4-cidr-block (200, 14b) after 1 attempts
2017-11-17 18:32:44,580 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/interface-id' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/interface-id'} configuration
2017-11-17 18:32:44,582 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/interface-id (200, 12b) after 1 attempts
2017-11-17 18:32:44,582 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/local-ipv4s' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/local-ipv4s'} configuration
2017-11-17 18:32:44,588 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/network/interfaces/macs/06:23:bc:a9:a4:fa/local-ipv4s (200, 13b) after 1 attempts
2017-11-17 18:32:44,588 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/placement/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/placement/'} configuration
2017-11-17 18:32:44,590 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/placement/ (200, 17b) after 1 attempts
2017-11-17 18:32:44,590 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/placement/availability-zone' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/placement/availability-zone'} configuration
2017-11-17 18:32:44,596 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/placement/availability-zone (200, 10b) after 1 attempts
2017-11-17 18:32:44,596 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/public-keys/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/public-keys/'} configuration
2017-11-17 18:32:44,598 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/public-keys/ (200, 24b) after 1 attempts
2017-11-17 18:32:44,598 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/public-keys/0/openssh-key' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/public-keys/0/openssh-key'} configuration
2017-11-17 18:32:44,604 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/public-keys/0/openssh-key (200, 404b) after 1 attempts
2017-11-17 18:32:44,604 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/services/' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/services/'} configuration
2017-11-17 18:32:44,606 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/services/ (200, 16b) after 1 attempts
2017-11-17 18:32:44,606 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/services/domain' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/services/domain'} configuration
2017-11-17 18:32:44,612 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/services/domain (200, 13b) after 1 attempts
2017-11-17 18:32:44,612 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/services/partition' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/services/partition'} configuration
2017-11-17 18:32:44,614 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/services/partition (200, 3b) after 1 attempts
2017-11-17 18:32:44,614 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/public-hostname' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/public-hostname'} configuration
2017-11-17 18:32:44,620 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/public-hostname (200, 49b) after 1 attempts
2017-11-17 18:32:44,620 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/instance-action' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/instance-action'} configuration
2017-11-17 18:32:44,622 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/instance-action (200, 4b) after 1 attempts
2017-11-17 18:32:44,622 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/mac' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/mac'} configuration
2017-11-17 18:32:44,628 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/mac (200, 17b) after 1 attempts
2017-11-17 18:32:44,628 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/ami-id' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/ami-id'} configuration
2017-11-17 18:32:44,630 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/ami-id (200, 12b) after 1 attempts
2017-11-17 18:32:44,631 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/ami-manifest-path' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/ami-manifest-path'} configuration
2017-11-17 18:32:44,636 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/ami-manifest-path (200, 9b) after 1 attempts
2017-11-17 18:32:44,636 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/reservation-id' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/reservation-id'} configuration
2017-11-17 18:32:44,638 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/reservation-id (200, 19b) after 1 attempts
2017-11-17 18:32:44,638 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/instance-type' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/instance-type'} configuration
2017-11-17 18:32:44,645 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/instance-type (200, 8b) after 1 attempts
2017-11-17 18:32:44,645 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/local-ipv4' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/local-ipv4'} configuration
2017-11-17 18:32:44,648 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/local-ipv4 (200, 13b) after 1 attempts
2017-11-17 18:32:44,648 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/security-groups' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/security-groups'} configuration
2017-11-17 18:32:44,652 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/security-groups (200, 36b) after 1 attempts
2017-11-17 18:32:44,652 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/local-hostname' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/local-hostname'} configuration
2017-11-17 18:32:44,655 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/local-hostname (200, 43b) after 1 attempts
2017-11-17 18:32:44,655 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/hostname' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/hostname'} configuration
2017-11-17 18:32:44,660 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/hostname (200, 43b) after 1 attempts
2017-11-17 18:32:44,660 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/ami-launch-index' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/ami-launch-index'} configuration
2017-11-17 18:32:44,662 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/ami-launch-index (200, 1b) after 1 attempts
2017-11-17 18:32:44,662 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/instance-id' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/instance-id'} configuration
2017-11-17 18:32:44,668 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/instance-id (200, 19b) after 1 attempts
2017-11-17 18:32:44,669 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/public-ipv4' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/public-ipv4'} configuration
2017-11-17 18:32:44,670 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/public-ipv4 (200, 13b) after 1 attempts
2017-11-17 18:32:44,671 - url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/2016-09-02/meta-data/profile' with {'timeout': 5.0, 'method': 'GET', 'allow_redirects': True, 'headers': {'User-Agent': 'Cloud-Init/17.1'}, 'url': 'http://169.254.169.254/2016-09-02/meta-data/profile'} configuration
2017-11-17 18:32:44,676 - url_helper.py[DEBUG]: Read from http://169.254.169.254/2016-09-02/meta-data/profile (200, 11b) after 1 attempts
2017-11-17 18:32:44,676 - util.py[DEBUG]: Crawl of metadata service took 0.229 seconds
2017-11-17 18:32:44,676 - util.py[DEBUG]: Running command ['ip', '-4', 'route', 'del', 'default', 'dev', 'eth0'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,678 - util.py[DEBUG]: Running command ['ip', '-family', 'inet', 'link', 'set', 'dev', 'eth0', 'down'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,684 - util.py[DEBUG]: Running command ['ip', '-family', 'inet', 'addr', 'del', '172.31.16.165/20', 'dev', 'eth0'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,686 - handlers.py[DEBUG]: finish: init-local/search-Ec2Local: SUCCESS: found local data from DataSourceEc2Local
2017-11-17 18:32:44,686 - stages.py[INFO]: Loaded datasource DataSourceEc2Local - DataSourceEc2Local
2017-11-17 18:32:44,686 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:32:44,686 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:32:44,686 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,711 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:32:44,711 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:32:44,711 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,717 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:32:44,717 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:32:44,717 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,725 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:32:44,725 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:32:44,725 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,726 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,726 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:44,726 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-17 18:32:44,726 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/i-0f885cd59d967ec90'
2017-11-17 18:32:44,727 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource (quiet=False)
2017-11-17 18:32:44,731 - util.py[DEBUG]: Read 29 bytes from /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource
2017-11-17 18:32:44,731 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource - wb: [644] 39 bytes
2017-11-17 18:32:44,732 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [644] 29 bytes
2017-11-17 18:32:44,732 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2017-11-17 18:32:44,733 - util.py[DEBUG]: Read 20 bytes from /var/lib/cloud/data/instance-id
2017-11-17 18:32:44,733 - stages.py[DEBUG]: previous iid found to be i-0f885cd59d967ec90
2017-11-17 18:32:44,733 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [644] 20 bytes
2017-11-17 18:32:44,733 - util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [644] 20 bytes
2017-11-17 18:32:44,734 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [644] 20 bytes
2017-11-17 18:32:44,735 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 8086 bytes
2017-11-17 18:32:44,735 - main.py[DEBUG]: [local] init will now be targeting instance id: i-0f885cd59d967ec90. new=False
2017-11-17 18:32:44,736 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:32:44,736 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:32:44,736 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,760 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:32:44,760 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:32:44,760 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,761 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:32:44,762 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:32:44,762 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,770 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:32:44,770 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:32:44,770 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,770 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,771 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:44,771 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:32:44,771 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:32:44,771 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:44,771 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:44,776 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:32:44,776 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:32:44,776 - stages.py[DEBUG]: applying net config names for {'config': [{'mac_address': '06:23:bc:a9:a4:fa', 'type': 'physical', 'name': 'eth0', 'subnets': [{'type': 'dhcp4'}, {'type': 'dhcp6'}]}], 'version': 1}
2017-11-17 18:32:44,776 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:32:44,777 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:32:44,777 - util.py[DEBUG]: Reading from /sys/class/net/lo/addr_assign_type (quiet=False)
2017-11-17 18:32:44,777 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/lo/addr_assign_type
2017-11-17 18:32:44,777 - util.py[DEBUG]: Reading from /sys/class/net/lo/uevent (quiet=False)
2017-11-17 18:32:44,777 - util.py[DEBUG]: Read 23 bytes from /sys/class/net/lo/uevent
2017-11-17 18:32:44,777 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-17 18:32:44,777 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-17 18:32:44,777 - util.py[DEBUG]: Reading from /sys/class/net/lo/device/device (quiet=False)
2017-11-17 18:32:44,777 - util.py[DEBUG]: Reading from /sys/class/net/eth0/addr_assign_type (quiet=False)
2017-11-17 18:32:44,777 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/eth0/addr_assign_type
2017-11-17 18:32:44,777 - util.py[DEBUG]: Reading from /sys/class/net/eth0/uevent (quiet=False)
2017-11-17 18:32:44,777 - util.py[DEBUG]: Read 25 bytes from /sys/class/net/eth0/uevent
2017-11-17 18:32:44,777 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:32:44,778 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:32:44,778 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:32:44,778 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-11-17 18:32:44,778 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-11-17 18:32:44,778 - util.py[DEBUG]: Reading from /sys/class/net/eth0/operstate (quiet=False)
2017-11-17 18:32:44,778 - util.py[DEBUG]: Read 5 bytes from /sys/class/net/eth0/operstate
2017-11-17 18:32:44,778 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,785 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:44,788 - __init__.py[DEBUG]: no work necessary for renaming of [['06:23:bc:a9:a4:fa', 'eth0', 'vif', None]]
2017-11-17 18:32:44,788 - stages.py[DEBUG]: not a new instance. network config is not applied.
2017-11-17 18:32:44,788 - main.py[DEBUG]: [local] Exiting. datasource DataSourceEc2Local not in local mode.
2017-11-17 18:32:44,788 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:32:44,789 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-11-17 18:32:44,789 - util.py[DEBUG]: cloud-init mode 'init' took 1.075 seconds (1.08)
2017-11-17 18:32:44,789 - handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
2017-11-17 18:32:45,752 - util.py[DEBUG]: Cloud-init v. 17.1 running 'init' at Fri, 17 Nov 2017 18:32:45 +0000. Up 7.46 seconds.
2017-11-17 18:32:45,752 - main.py[DEBUG]: No kernel command line url found.
2017-11-17 18:32:45,752 - main.py[DEBUG]: Closing stdin.
2017-11-17 18:32:45,754 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2017-11-17 18:32:45,754 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-11-17 18:32:45,755 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:32:45,759 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:32:45,763 - util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:32:45,764 - main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2017-11-17 18:32:45,765 - main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
2017-11-17 18:32:45,765 - handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
2017-11-17 18:32:45,765 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-11-17 18:32:45,765 - util.py[DEBUG]: Read 8086 bytes from /var/lib/cloud/instance/obj.pkl
2017-11-17 18:32:45,767 - util.py[DEBUG]: Reading from /run/cloud-init/.instance-id (quiet=False)
2017-11-17 18:32:45,767 - util.py[DEBUG]: Read 20 bytes from /run/cloud-init/.instance-id
2017-11-17 18:32:45,768 - stages.py[DEBUG]: restored from cache with run check: DataSourceEc2Local
2017-11-17 18:32:45,768 - handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: restored from cache with run check: DataSourceEc2Local
2017-11-17 18:32:45,768 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:32:45,768 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:32:45,768 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,781 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:32:45,781 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:32:45,781 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,783 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:32:45,783 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:32:45,783 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,787 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:32:45,787 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:32:45,787 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,788 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,788 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:45,788 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:32:45,788 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:32:45,788 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,788 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:45,789 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-17 18:32:45,789 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/i-0f885cd59d967ec90'
2017-11-17 18:32:45,789 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource (quiet=False)
2017-11-17 18:32:45,789 - util.py[DEBUG]: Read 39 bytes from /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource
2017-11-17 18:32:45,790 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource - wb: [644] 39 bytes
2017-11-17 18:32:45,790 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [644] 39 bytes
2017-11-17 18:32:45,790 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2017-11-17 18:32:45,790 - util.py[DEBUG]: Read 20 bytes from /var/lib/cloud/data/instance-id
2017-11-17 18:32:45,791 - stages.py[DEBUG]: previous iid found to be i-0f885cd59d967ec90
2017-11-17 18:32:45,791 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [644] 20 bytes
2017-11-17 18:32:45,791 - util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [644] 20 bytes
2017-11-17 18:32:45,791 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [644] 20 bytes
2017-11-17 18:32:45,792 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 8162 bytes
2017-11-17 18:32:45,793 - main.py[DEBUG]: [net] init will now be targeting instance id: i-0f885cd59d967ec90. new=False
2017-11-17 18:32:45,793 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:32:45,793 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:32:45,793 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,805 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:32:45,805 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:32:45,805 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,807 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:32:45,807 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:32:45,807 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,811 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:32:45,811 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:32:45,811 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,812 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,812 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:45,812 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:32:45,812 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:32:45,812 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,812 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:45,813 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:32:45,813 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:32:45,813 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'type': 'physical', 'subnets': [{'type': 'dhcp4'}, {'type': 'dhcp6'}], 'mac_address': '06:23:bc:a9:a4:fa', 'name': 'eth0'}]}
2017-11-17 18:32:45,814 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:32:45,814 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:32:45,814 - util.py[DEBUG]: Reading from /sys/class/net/lo/addr_assign_type (quiet=False)
2017-11-17 18:32:45,814 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/lo/addr_assign_type
2017-11-17 18:32:45,814 - util.py[DEBUG]: Reading from /sys/class/net/lo/uevent (quiet=False)
2017-11-17 18:32:45,814 - util.py[DEBUG]: Read 23 bytes from /sys/class/net/lo/uevent
2017-11-17 18:32:45,814 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-17 18:32:45,814 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-17 18:32:45,814 - util.py[DEBUG]: Reading from /sys/class/net/lo/device/device (quiet=False)
2017-11-17 18:32:45,815 - util.py[DEBUG]: Reading from /sys/class/net/eth0/addr_assign_type (quiet=False)
2017-11-17 18:32:45,815 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/eth0/addr_assign_type
2017-11-17 18:32:45,815 - util.py[DEBUG]: Reading from /sys/class/net/eth0/uevent (quiet=False)
2017-11-17 18:32:45,815 - util.py[DEBUG]: Read 25 bytes from /sys/class/net/eth0/uevent
2017-11-17 18:32:45,815 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:32:45,815 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:32:45,815 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:32:45,815 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-11-17 18:32:45,815 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-11-17 18:32:45,815 - util.py[DEBUG]: Reading from /sys/class/net/eth0/operstate (quiet=False)
2017-11-17 18:32:45,815 - util.py[DEBUG]: Read 3 bytes from /sys/class/net/eth0/operstate
2017-11-17 18:32:45,816 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,817 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,819 - __init__.py[DEBUG]: no work necessary for renaming of [['06:23:bc:a9:a4:fa', 'eth0', 'vif', None]]
2017-11-17 18:32:45,819 - stages.py[DEBUG]: not a new instance. network config is not applied.
2017-11-17 18:32:45,819 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/user-data.txt - wb: [600] 0 bytes
2017-11-17 18:32:45,823 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/user-data.txt.i - wb: [600] 308 bytes
2017-11-17 18:32:45,823 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/vendor-data.txt - wb: [600] 0 bytes
2017-11-17 18:32:45,824 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/vendor-data.txt.i - wb: [600] 308 bytes
2017-11-17 18:32:45,825 - helpers.py[DEBUG]: consume_data already ran (freq=once-per-instance)
2017-11-17 18:32:45,826 - handlers.py[DEBUG]: start: init-network/consume-user-data: reading and applying user-data
2017-11-17 18:32:45,826 - launch_index.py[DEBUG]: Discarding 0 multipart messages which do not match launch index 0
2017-11-17 18:32:45,827 - stages.py[DEBUG]: Added default handler for {'text/cloud-config', 'text/cloud-config-jsonp'} from CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']]
2017-11-17 18:32:45,827 - stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
2017-11-17 18:32:45,827 - stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
2017-11-17 18:32:45,827 - stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
2017-11-17 18:32:45,827 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (__begin__, None, 3) with frequency always
2017-11-17 18:32:45,827 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency always
2017-11-17 18:32:45,827 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency always
2017-11-17 18:32:45,827 - __init__.py[DEBUG]: {'Content-Disposition': 'attachment; filename="part-001"', 'MIME-Version': '1.0', 'Content-Type': 'text/x-not-multipart'}
2017-11-17 18:32:45,827 - __init__.py[DEBUG]: Empty payload of type text/x-not-multipart
2017-11-17 18:32:45,828 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (__end__, None, 3) with frequency always
2017-11-17 18:32:45,828 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/cloud-config.txt - wb: [600] 0 bytes
2017-11-17 18:32:45,829 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency always
2017-11-17 18:32:45,829 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency always
2017-11-17 18:32:45,829 - handlers.py[DEBUG]: finish: init-network/consume-user-data: SUCCESS: reading and applying user-data
2017-11-17 18:32:45,829 - handlers.py[DEBUG]: start: init-network/consume-vendor-data: reading and applying vendor-data
2017-11-17 18:32:45,829 - stages.py[DEBUG]: no vendordata from datasource
2017-11-17 18:32:45,829 - handlers.py[DEBUG]: finish: init-network/consume-vendor-data: SUCCESS: reading and applying vendor-data
2017-11-17 18:32:45,829 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:32:45,829 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:32:45,829 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,841 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:32:45,841 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:32:45,841 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,843 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:32:45,843 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:32:45,843 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,847 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:32:45,847 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:32:45,847 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,848 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,848 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:45,848 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:32:45,848 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:32:45,848 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,848 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:45,849 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:32:45,849 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:32:45,849 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:32:45,849 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:32:45,851 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 7648 bytes
2017-11-17 18:32:45,852 - main.py[DEBUG]: used datasource 'DataSourceEc2Local' from 'Ec2' was in di_report's list: ['Ec2', 'None']
2017-11-17 18:32:45,920 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:32:45,921 - stages.py[DEBUG]: Running module migrator (<module 'cloudinit.config.cc_migrator' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_migrator.py'>) with frequency always
2017-11-17 18:32:45,921 - handlers.py[DEBUG]: start: init-network/config-migrator: running config-migrator with frequency always
2017-11-17 18:32:45,921 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7f17524f6630>)
2017-11-17 18:32:45,922 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2017-11-17 18:32:45,922 - handlers.py[DEBUG]: finish: init-network/config-migrator: SUCCESS: config-migrator ran successfully
2017-11-17 18:32:45,922 - stages.py[DEBUG]: Running module seed_random (<module 'cloudinit.config.cc_seed_random' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_seed_random.py'>) with frequency once-per-instance
2017-11-17 18:32:45,922 - handlers.py[DEBUG]: start: init-network/config-seed_random: running config-seed_random with frequency once-per-instance
2017-11-17 18:32:45,923 - helpers.py[DEBUG]: config-seed_random already ran (freq=once-per-instance)
2017-11-17 18:32:45,923 - handlers.py[DEBUG]: finish: init-network/config-seed_random: SUCCESS: config-seed_random previously ran
2017-11-17 18:32:45,923 - stages.py[DEBUG]: Running module bootcmd (<module 'cloudinit.config.cc_bootcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_bootcmd.py'>) with frequency always
2017-11-17 18:32:45,923 - handlers.py[DEBUG]: start: init-network/config-bootcmd: running config-bootcmd with frequency always
2017-11-17 18:32:45,923 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7f17524a72e8>)
2017-11-17 18:32:45,923 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2017-11-17 18:32:45,923 - handlers.py[DEBUG]: finish: init-network/config-bootcmd: SUCCESS: config-bootcmd ran successfully
2017-11-17 18:32:45,924 - stages.py[DEBUG]: Running module write-files (<module 'cloudinit.config.cc_write_files' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_write_files.py'>) with frequency once-per-instance
2017-11-17 18:32:45,924 - handlers.py[DEBUG]: start: init-network/config-write-files: running config-write-files with frequency once-per-instance
2017-11-17 18:32:45,924 - helpers.py[DEBUG]: config-write-files already ran (freq=once-per-instance)
2017-11-17 18:32:45,924 - handlers.py[DEBUG]: finish: init-network/config-write-files: SUCCESS: config-write-files previously ran
2017-11-17 18:32:45,924 - stages.py[DEBUG]: Running module growpart (<module 'cloudinit.config.cc_growpart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_growpart.py'>) with frequency always
2017-11-17 18:32:45,924 - handlers.py[DEBUG]: start: init-network/config-growpart: running config-growpart with frequency always
2017-11-17 18:32:45,924 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7f17524a5208>)
2017-11-17 18:32:45,924 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg.  Using default: {'devices': ['/'], 'mode': 'auto', 'ignore_growroot_disabled': False}
2017-11-17 18:32:45,924 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,929 - util.py[DEBUG]: Reading from /proc/1058/mountinfo (quiet=False)
2017-11-17 18:32:45,929 - util.py[DEBUG]: Read 2623 bytes from /proc/1058/mountinfo
2017-11-17 18:32:45,929 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,931 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,932 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,933 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:45,933 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:45,933 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:45,933 - util.py[DEBUG]: Read 901 bytes from /proc/self/status
2017-11-17 18:32:45,935 - util.py[DEBUG]: Reading from /sys/class/block/xvda1/partition (quiet=False)
2017-11-17 18:32:45,936 - util.py[DEBUG]: Read 2 bytes from /sys/class/block/xvda1/partition
2017-11-17 18:32:45,936 - util.py[DEBUG]: Reading from /sys/devices/vbd-768/block/xvda/dev (quiet=False)
2017-11-17 18:32:45,936 - util.py[DEBUG]: Read 6 bytes from /sys/devices/vbd-768/block/xvda/dev
2017-11-17 18:32:45,936 - util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/xvda', '1'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,977 - util.py[DEBUG]: resize_devices took 0.049 seconds
2017-11-17 18:32:45,977 - cc_growpart.py[DEBUG]: '/' NOCHANGE: no change necessary (/dev/xvda, 1)
2017-11-17 18:32:45,978 - handlers.py[DEBUG]: finish: init-network/config-growpart: SUCCESS: config-growpart ran successfully
2017-11-17 18:32:45,978 - stages.py[DEBUG]: Running module resizefs (<module 'cloudinit.config.cc_resizefs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_resizefs.py'>) with frequency always
2017-11-17 18:32:45,978 - handlers.py[DEBUG]: start: init-network/config-resizefs: running config-resizefs with frequency always
2017-11-17 18:32:45,978 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7f17524a5f28>)
2017-11-17 18:32:45,978 - schema.py[DEBUG]: Ignoring schema validation. python-jsonschema is not present
2017-11-17 18:32:45,978 - util.py[DEBUG]: Reading from /proc/1058/mountinfo (quiet=False)
2017-11-17 18:32:45,979 - util.py[DEBUG]: Read 2623 bytes from /proc/1058/mountinfo
2017-11-17 18:32:45,979 - cc_resizefs.py[DEBUG]: resize_info: dev=/dev/xvda1 mnt_point=/ path=/
2017-11-17 18:32:45,979 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,981 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,982 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,983 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:32:45,983 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:32:45,983 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:32:45,983 - util.py[DEBUG]: Read 901 bytes from /proc/self/status
2017-11-17 18:32:45,983 - cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/xvda1
2017-11-17 18:32:45,983 - util.py[DEBUG]: Running command ('resize2fs', '/dev/xvda1') with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:32:45,994 - util.py[DEBUG]: Resizing took 0.011 seconds
2017-11-17 18:32:45,994 - cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
2017-11-17 18:32:45,995 - handlers.py[DEBUG]: finish: init-network/config-resizefs: SUCCESS: config-resizefs ran successfully
2017-11-17 18:32:45,995 - stages.py[DEBUG]: Running module disk_setup (<module 'cloudinit.config.cc_disk_setup' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disk_setup.py'>) with frequency once-per-instance
2017-11-17 18:32:45,995 - handlers.py[DEBUG]: start: init-network/config-disk_setup: running config-disk_setup with frequency once-per-instance
2017-11-17 18:32:45,995 - helpers.py[DEBUG]: config-disk_setup already ran (freq=once-per-instance)
2017-11-17 18:32:45,995 - handlers.py[DEBUG]: finish: init-network/config-disk_setup: SUCCESS: config-disk_setup previously ran
2017-11-17 18:32:45,995 - stages.py[DEBUG]: Running module mounts (<module 'cloudinit.config.cc_mounts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mounts.py'>) with frequency once-per-instance
2017-11-17 18:32:45,995 - handlers.py[DEBUG]: start: init-network/config-mounts: running config-mounts with frequency once-per-instance
2017-11-17 18:32:45,996 - helpers.py[DEBUG]: config-mounts already ran (freq=once-per-instance)
2017-11-17 18:32:45,996 - handlers.py[DEBUG]: finish: init-network/config-mounts: SUCCESS: config-mounts previously ran
2017-11-17 18:32:45,996 - stages.py[DEBUG]: Running module set_hostname (<module 'cloudinit.config.cc_set_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_hostname.py'>) with frequency once-per-instance
2017-11-17 18:32:45,996 - handlers.py[DEBUG]: start: init-network/config-set_hostname: running config-set_hostname with frequency once-per-instance
2017-11-17 18:32:45,996 - helpers.py[DEBUG]: config-set_hostname already ran (freq=once-per-instance)
2017-11-17 18:32:45,996 - handlers.py[DEBUG]: finish: init-network/config-set_hostname: SUCCESS: config-set_hostname previously ran
2017-11-17 18:32:45,996 - stages.py[DEBUG]: Running module update_hostname (<module 'cloudinit.config.cc_update_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_hostname.py'>) with frequency always
2017-11-17 18:32:45,996 - handlers.py[DEBUG]: start: init-network/config-update_hostname: running config-update_hostname with frequency always
2017-11-17 18:32:45,996 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7f175251c7b8>)
2017-11-17 18:32:45,996 - cc_update_hostname.py[DEBUG]: Updating hostname to ip-172-31-16-165.us-east-2.compute.internal (ip-172-31-16-165)
2017-11-17 18:32:45,997 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2017-11-17 18:32:45,997 - util.py[DEBUG]: Read 17 bytes from /var/lib/cloud/data/previous-hostname
2017-11-17 18:32:45,997 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-11-17 18:32:45,997 - util.py[DEBUG]: Read 17 bytes from /etc/hostname
2017-11-17 18:32:45,997 - __init__.py[DEBUG]: Attempting to update hostname to ip-172-31-16-165 in 0 files
2017-11-17 18:32:45,997 - handlers.py[DEBUG]: finish: init-network/config-update_hostname: SUCCESS: config-update_hostname ran successfully
2017-11-17 18:32:45,997 - stages.py[DEBUG]: Running module update_etc_hosts (<module 'cloudinit.config.cc_update_etc_hosts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_etc_hosts.py'>) with frequency always
2017-11-17 18:32:45,998 - handlers.py[DEBUG]: start: init-network/config-update_etc_hosts: running config-update_etc_hosts with frequency always
2017-11-17 18:32:45,998 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7f175251cfd0>)
2017-11-17 18:32:45,998 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2017-11-17 18:32:45,998 - handlers.py[DEBUG]: finish: init-network/config-update_etc_hosts: SUCCESS: config-update_etc_hosts ran successfully
2017-11-17 18:32:45,998 - stages.py[DEBUG]: Running module ca-certs (<module 'cloudinit.config.cc_ca_certs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ca_certs.py'>) with frequency once-per-instance
2017-11-17 18:32:45,998 - handlers.py[DEBUG]: start: init-network/config-ca-certs: running config-ca-certs with frequency once-per-instance
2017-11-17 18:32:45,998 - helpers.py[DEBUG]: config-ca-certs already ran (freq=once-per-instance)
2017-11-17 18:32:45,998 - handlers.py[DEBUG]: finish: init-network/config-ca-certs: SUCCESS: config-ca-certs previously ran
2017-11-17 18:32:45,998 - stages.py[DEBUG]: Running module rsyslog (<module 'cloudinit.config.cc_rsyslog' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rsyslog.py'>) with frequency once-per-instance
2017-11-17 18:32:45,999 - handlers.py[DEBUG]: start: init-network/config-rsyslog: running config-rsyslog with frequency once-per-instance
2017-11-17 18:32:45,999 - helpers.py[DEBUG]: config-rsyslog already ran (freq=once-per-instance)
2017-11-17 18:32:45,999 - handlers.py[DEBUG]: finish: init-network/config-rsyslog: SUCCESS: config-rsyslog previously ran
2017-11-17 18:32:45,999 - stages.py[DEBUG]: Running module users-groups (<module 'cloudinit.config.cc_users_groups' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_users_groups.py'>) with frequency once-per-instance
2017-11-17 18:32:45,999 - handlers.py[DEBUG]: start: init-network/config-users-groups: running config-users-groups with frequency once-per-instance
2017-11-17 18:32:45,999 - helpers.py[DEBUG]: config-users-groups already ran (freq=once-per-instance)
2017-11-17 18:32:45,999 - handlers.py[DEBUG]: finish: init-network/config-users-groups: SUCCESS: config-users-groups previously ran
2017-11-17 18:32:45,999 - stages.py[DEBUG]: Running module ssh (<module 'cloudinit.config.cc_ssh' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh.py'>) with frequency once-per-instance
2017-11-17 18:32:46,000 - handlers.py[DEBUG]: start: init-network/config-ssh: running config-ssh with frequency once-per-instance
2017-11-17 18:32:46,000 - helpers.py[DEBUG]: config-ssh already ran (freq=once-per-instance)
2017-11-17 18:32:46,000 - handlers.py[DEBUG]: finish: init-network/config-ssh: SUCCESS: config-ssh previously ran
2017-11-17 18:32:46,000 - main.py[DEBUG]: Ran 15 modules with 0 failures
2017-11-17 18:32:46,000 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:32:46,001 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-11-17 18:32:46,001 - util.py[DEBUG]: cloud-init mode 'init' took 0.278 seconds (0.28)
2017-11-17 18:32:46,001 - handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
2017-11-17 18:32:47,100 - util.py[DEBUG]: Cloud-init v. 17.1 running 'modules:config' at Fri, 17 Nov 2017 18:32:47 +0000. Up 8.78 seconds.
2017-11-17 18:32:47,138 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:32:47,138 - stages.py[DEBUG]: Running module emit_upstart (<module 'cloudinit.config.cc_emit_upstart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_emit_upstart.py'>) with frequency always
2017-11-17 18:32:47,139 - handlers.py[DEBUG]: start: modules-config/config-emit_upstart: running config-emit_upstart with frequency always
2017-11-17 18:32:47,139 - helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7fa5c5433588>)
2017-11-17 18:32:47,139 - cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
2017-11-17 18:32:47,139 - cc_emit_upstart.py[DEBUG]: not upstart system, 'emit_upstart' disabled
2017-11-17 18:32:47,139 - handlers.py[DEBUG]: finish: modules-config/config-emit_upstart: SUCCESS: config-emit_upstart ran successfully
2017-11-17 18:32:47,139 - stages.py[DEBUG]: Running module snap_config (<module 'cloudinit.config.cc_snap_config' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snap_config.py'>) with frequency once-per-instance
2017-11-17 18:32:47,139 - handlers.py[DEBUG]: start: modules-config/config-snap_config: running config-snap_config with frequency once-per-instance
2017-11-17 18:32:47,140 - helpers.py[DEBUG]: config-snap_config already ran (freq=once-per-instance)
2017-11-17 18:32:47,140 - handlers.py[DEBUG]: finish: modules-config/config-snap_config: SUCCESS: config-snap_config previously ran
2017-11-17 18:32:47,140 - stages.py[DEBUG]: Running module ssh-import-id (<module 'cloudinit.config.cc_ssh_import_id' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_import_id.py'>) with frequency once-per-instance
2017-11-17 18:32:47,140 - handlers.py[DEBUG]: start: modules-config/config-ssh-import-id: running config-ssh-import-id with frequency once-per-instance
2017-11-17 18:32:47,140 - helpers.py[DEBUG]: config-ssh-import-id already ran (freq=once-per-instance)
2017-11-17 18:32:47,140 - handlers.py[DEBUG]: finish: modules-config/config-ssh-import-id: SUCCESS: config-ssh-import-id previously ran
2017-11-17 18:32:47,140 - stages.py[DEBUG]: Running module locale (<module 'cloudinit.config.cc_locale' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_locale.py'>) with frequency once-per-instance
2017-11-17 18:32:47,140 - handlers.py[DEBUG]: start: modules-config/config-locale: running config-locale with frequency once-per-instance
2017-11-17 18:32:47,140 - helpers.py[DEBUG]: config-locale already ran (freq=once-per-instance)
2017-11-17 18:32:47,140 - handlers.py[DEBUG]: finish: modules-config/config-locale: SUCCESS: config-locale previously ran
2017-11-17 18:32:47,140 - stages.py[DEBUG]: Running module set-passwords (<module 'cloudinit.config.cc_set_passwords' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_passwords.py'>) with frequency once-per-instance
2017-11-17 18:32:47,141 - handlers.py[DEBUG]: start: modules-config/config-set-passwords: running config-set-passwords with frequency once-per-instance
2017-11-17 18:32:47,141 - helpers.py[DEBUG]: config-set-passwords already ran (freq=once-per-instance)
2017-11-17 18:32:47,141 - handlers.py[DEBUG]: finish: modules-config/config-set-passwords: SUCCESS: config-set-passwords previously ran
2017-11-17 18:32:47,141 - stages.py[DEBUG]: Running module grub-dpkg (<module 'cloudinit.config.cc_grub_dpkg' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_grub_dpkg.py'>) with frequency once-per-instance
2017-11-17 18:32:47,141 - handlers.py[DEBUG]: start: modules-config/config-grub-dpkg: running config-grub-dpkg with frequency once-per-instance
2017-11-17 18:32:47,141 - helpers.py[DEBUG]: config-grub-dpkg already ran (freq=once-per-instance)
2017-11-17 18:32:47,141 - handlers.py[DEBUG]: finish: modules-config/config-grub-dpkg: SUCCESS: config-grub-dpkg previously ran
2017-11-17 18:32:47,141 - stages.py[DEBUG]: Running module apt-pipelining (<module 'cloudinit.config.cc_apt_pipelining' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_pipelining.py'>) with frequency once-per-instance
2017-11-17 18:32:47,141 - handlers.py[DEBUG]: start: modules-config/config-apt-pipelining: running config-apt-pipelining with frequency once-per-instance
2017-11-17 18:32:47,141 - helpers.py[DEBUG]: config-apt-pipelining already ran (freq=once-per-instance)
2017-11-17 18:32:47,142 - handlers.py[DEBUG]: finish: modules-config/config-apt-pipelining: SUCCESS: config-apt-pipelining previously ran
2017-11-17 18:32:47,142 - stages.py[DEBUG]: Running module apt-configure (<module 'cloudinit.config.cc_apt_configure' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_configure.py'>) with frequency once-per-instance
2017-11-17 18:32:47,142 - handlers.py[DEBUG]: start: modules-config/config-apt-configure: running config-apt-configure with frequency once-per-instance
2017-11-17 18:32:47,142 - helpers.py[DEBUG]: config-apt-configure already ran (freq=once-per-instance)
2017-11-17 18:32:47,142 - handlers.py[DEBUG]: finish: modules-config/config-apt-configure: SUCCESS: config-apt-configure previously ran
2017-11-17 18:32:47,142 - stages.py[DEBUG]: Running module ntp (<module 'cloudinit.config.cc_ntp' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ntp.py'>) with frequency once-per-instance
2017-11-17 18:32:47,142 - handlers.py[DEBUG]: start: modules-config/config-ntp: running config-ntp with frequency once-per-instance
2017-11-17 18:32:47,142 - helpers.py[DEBUG]: config-ntp already ran (freq=once-per-instance)
2017-11-17 18:32:47,142 - handlers.py[DEBUG]: finish: modules-config/config-ntp: SUCCESS: config-ntp previously ran
2017-11-17 18:32:47,142 - stages.py[DEBUG]: Running module timezone (<module 'cloudinit.config.cc_timezone' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_timezone.py'>) with frequency once-per-instance
2017-11-17 18:32:47,143 - handlers.py[DEBUG]: start: modules-config/config-timezone: running config-timezone with frequency once-per-instance
2017-11-17 18:32:47,143 - helpers.py[DEBUG]: config-timezone already ran (freq=once-per-instance)
2017-11-17 18:32:47,143 - handlers.py[DEBUG]: finish: modules-config/config-timezone: SUCCESS: config-timezone previously ran
2017-11-17 18:32:47,143 - stages.py[DEBUG]: Running module disable-ec2-metadata (<module 'cloudinit.config.cc_disable_ec2_metadata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disable_ec2_metadata.py'>) with frequency always
2017-11-17 18:32:47,143 - handlers.py[DEBUG]: start: modules-config/config-disable-ec2-metadata: running config-disable-ec2-metadata with frequency always
2017-11-17 18:32:47,143 - helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7fa5c53d0ef0>)
2017-11-17 18:32:47,143 - cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
2017-11-17 18:32:47,143 - handlers.py[DEBUG]: finish: modules-config/config-disable-ec2-metadata: SUCCESS: config-disable-ec2-metadata ran successfully
2017-11-17 18:32:47,143 - stages.py[DEBUG]: Running module runcmd (<module 'cloudinit.config.cc_runcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_runcmd.py'>) with frequency once-per-instance
2017-11-17 18:32:47,143 - handlers.py[DEBUG]: start: modules-config/config-runcmd: running config-runcmd with frequency once-per-instance
2017-11-17 18:32:47,144 - helpers.py[DEBUG]: config-runcmd already ran (freq=once-per-instance)
2017-11-17 18:32:47,144 - handlers.py[DEBUG]: finish: modules-config/config-runcmd: SUCCESS: config-runcmd previously ran
2017-11-17 18:32:47,144 - stages.py[DEBUG]: Running module byobu (<module 'cloudinit.config.cc_byobu' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_byobu.py'>) with frequency once-per-instance
2017-11-17 18:32:47,144 - handlers.py[DEBUG]: start: modules-config/config-byobu: running config-byobu with frequency once-per-instance
2017-11-17 18:32:47,144 - helpers.py[DEBUG]: config-byobu already ran (freq=once-per-instance)
2017-11-17 18:32:47,144 - handlers.py[DEBUG]: finish: modules-config/config-byobu: SUCCESS: config-byobu previously ran
2017-11-17 18:32:47,144 - main.py[DEBUG]: Ran 13 modules with 0 failures
2017-11-17 18:32:47,145 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:32:47,145 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-11-17 18:32:47,145 - util.py[DEBUG]: cloud-init mode 'modules' took 0.097 seconds (0.09)
2017-11-17 18:32:47,145 - handlers.py[DEBUG]: finish: modules-config: SUCCESS: running modules for config
2017-11-17 18:32:47,477 - util.py[DEBUG]: Cloud-init v. 17.1 running 'modules:final' at Fri, 17 Nov 2017 18:32:47 +0000. Up 9.15 seconds.
2017-11-17 18:32:47,518 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:32:47,519 - stages.py[DEBUG]: Running module snappy (<module 'cloudinit.config.cc_snappy' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snappy.py'>) with frequency once-per-instance
2017-11-17 18:32:47,519 - handlers.py[DEBUG]: start: modules-final/config-snappy: running config-snappy with frequency once-per-instance
2017-11-17 18:32:47,519 - helpers.py[DEBUG]: config-snappy already ran (freq=once-per-instance)
2017-11-17 18:32:47,519 - handlers.py[DEBUG]: finish: modules-final/config-snappy: SUCCESS: config-snappy previously ran
2017-11-17 18:32:47,519 - stages.py[DEBUG]: Running module package-update-upgrade-install (<module 'cloudinit.config.cc_package_update_upgrade_install' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_package_update_upgrade_install.py'>) with frequency once-per-instance
2017-11-17 18:32:47,519 - handlers.py[DEBUG]: start: modules-final/config-package-update-upgrade-install: running config-package-update-upgrade-install with frequency once-per-instance
2017-11-17 18:32:47,519 - helpers.py[DEBUG]: config-package-update-upgrade-install already ran (freq=once-per-instance)
2017-11-17 18:32:47,519 - handlers.py[DEBUG]: finish: modules-final/config-package-update-upgrade-install: SUCCESS: config-package-update-upgrade-install previously ran
2017-11-17 18:32:47,519 - stages.py[DEBUG]: Running module fan (<module 'cloudinit.config.cc_fan' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_fan.py'>) with frequency once-per-instance
2017-11-17 18:32:47,520 - handlers.py[DEBUG]: start: modules-final/config-fan: running config-fan with frequency once-per-instance
2017-11-17 18:32:47,520 - helpers.py[DEBUG]: config-fan already ran (freq=once-per-instance)
2017-11-17 18:32:47,520 - handlers.py[DEBUG]: finish: modules-final/config-fan: SUCCESS: config-fan previously ran
2017-11-17 18:32:47,520 - stages.py[DEBUG]: Running module landscape (<module 'cloudinit.config.cc_landscape' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_landscape.py'>) with frequency once-per-instance
2017-11-17 18:32:47,520 - handlers.py[DEBUG]: start: modules-final/config-landscape: running config-landscape with frequency once-per-instance
2017-11-17 18:32:47,520 - helpers.py[DEBUG]: config-landscape already ran (freq=once-per-instance)
2017-11-17 18:32:47,520 - handlers.py[DEBUG]: finish: modules-final/config-landscape: SUCCESS: config-landscape previously ran
2017-11-17 18:32:47,520 - stages.py[DEBUG]: Running module lxd (<module 'cloudinit.config.cc_lxd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_lxd.py'>) with frequency once-per-instance
2017-11-17 18:32:47,520 - handlers.py[DEBUG]: start: modules-final/config-lxd: running config-lxd with frequency once-per-instance
2017-11-17 18:32:47,521 - helpers.py[DEBUG]: config-lxd already ran (freq=once-per-instance)
2017-11-17 18:32:47,521 - handlers.py[DEBUG]: finish: modules-final/config-lxd: SUCCESS: config-lxd previously ran
2017-11-17 18:32:47,521 - stages.py[DEBUG]: Running module puppet (<module 'cloudinit.config.cc_puppet' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_puppet.py'>) with frequency once-per-instance
2017-11-17 18:32:47,521 - handlers.py[DEBUG]: start: modules-final/config-puppet: running config-puppet with frequency once-per-instance
2017-11-17 18:32:47,521 - helpers.py[DEBUG]: config-puppet already ran (freq=once-per-instance)
2017-11-17 18:32:47,521 - handlers.py[DEBUG]: finish: modules-final/config-puppet: SUCCESS: config-puppet previously ran
2017-11-17 18:32:47,521 - stages.py[DEBUG]: Running module chef (<module 'cloudinit.config.cc_chef' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_chef.py'>) with frequency once-per-instance
2017-11-17 18:32:47,521 - handlers.py[DEBUG]: start: modules-final/config-chef: running config-chef with frequency once-per-instance
2017-11-17 18:32:47,521 - helpers.py[DEBUG]: config-chef already ran (freq=once-per-instance)
2017-11-17 18:32:47,521 - handlers.py[DEBUG]: finish: modules-final/config-chef: SUCCESS: config-chef previously ran
2017-11-17 18:32:47,521 - stages.py[DEBUG]: Running module salt-minion (<module 'cloudinit.config.cc_salt_minion' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_salt_minion.py'>) with frequency once-per-instance
2017-11-17 18:32:47,522 - handlers.py[DEBUG]: start: modules-final/config-salt-minion: running config-salt-minion with frequency once-per-instance
2017-11-17 18:32:47,522 - helpers.py[DEBUG]: config-salt-minion already ran (freq=once-per-instance)
2017-11-17 18:32:47,522 - handlers.py[DEBUG]: finish: modules-final/config-salt-minion: SUCCESS: config-salt-minion previously ran
2017-11-17 18:32:47,522 - stages.py[DEBUG]: Running module mcollective (<module 'cloudinit.config.cc_mcollective' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mcollective.py'>) with frequency once-per-instance
2017-11-17 18:32:47,522 - handlers.py[DEBUG]: start: modules-final/config-mcollective: running config-mcollective with frequency once-per-instance
2017-11-17 18:32:47,522 - helpers.py[DEBUG]: config-mcollective already ran (freq=once-per-instance)
2017-11-17 18:32:47,522 - handlers.py[DEBUG]: finish: modules-final/config-mcollective: SUCCESS: config-mcollective previously ran
2017-11-17 18:32:47,522 - stages.py[DEBUG]: Running module rightscale_userdata (<module 'cloudinit.config.cc_rightscale_userdata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rightscale_userdata.py'>) with frequency once-per-instance
2017-11-17 18:32:47,523 - handlers.py[DEBUG]: start: modules-final/config-rightscale_userdata: running config-rightscale_userdata with frequency once-per-instance
2017-11-17 18:32:47,523 - helpers.py[DEBUG]: config-rightscale_userdata already ran (freq=once-per-instance)
2017-11-17 18:32:47,523 - handlers.py[DEBUG]: finish: modules-final/config-rightscale_userdata: SUCCESS: config-rightscale_userdata previously ran
2017-11-17 18:32:47,523 - stages.py[DEBUG]: Running module scripts-vendor (<module 'cloudinit.config.cc_scripts_vendor' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_vendor.py'>) with frequency once-per-instance
2017-11-17 18:32:47,523 - handlers.py[DEBUG]: start: modules-final/config-scripts-vendor: running config-scripts-vendor with frequency once-per-instance
2017-11-17 18:32:47,523 - helpers.py[DEBUG]: config-scripts-vendor already ran (freq=once-per-instance)
2017-11-17 18:32:47,523 - handlers.py[DEBUG]: finish: modules-final/config-scripts-vendor: SUCCESS: config-scripts-vendor previously ran
2017-11-17 18:32:47,523 - stages.py[DEBUG]: Running module scripts-per-once (<module 'cloudinit.config.cc_scripts_per_once' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_once.py'>) with frequency once
2017-11-17 18:32:47,523 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-once: running config-scripts-per-once with frequency once
2017-11-17 18:32:47,524 - helpers.py[DEBUG]: config-scripts-per-once already ran (freq=once)
2017-11-17 18:32:47,524 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-once: SUCCESS: config-scripts-per-once previously ran
2017-11-17 18:32:47,524 - stages.py[DEBUG]: Running module scripts-per-boot (<module 'cloudinit.config.cc_scripts_per_boot' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_boot.py'>) with frequency always
2017-11-17 18:32:47,524 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-boot: running config-scripts-per-boot with frequency always
2017-11-17 18:32:47,524 - helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f00bd2746a0>)
2017-11-17 18:32:47,525 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-boot: SUCCESS: config-scripts-per-boot ran successfully
2017-11-17 18:32:47,525 - stages.py[DEBUG]: Running module scripts-per-instance (<module 'cloudinit.config.cc_scripts_per_instance' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_instance.py'>) with frequency once-per-instance
2017-11-17 18:32:47,525 - handlers.py[DEBUG]: start: modules-final/config-scripts-per-instance: running config-scripts-per-instance with frequency once-per-instance
2017-11-17 18:32:47,525 - helpers.py[DEBUG]: config-scripts-per-instance already ran (freq=once-per-instance)
2017-11-17 18:32:47,525 - handlers.py[DEBUG]: finish: modules-final/config-scripts-per-instance: SUCCESS: config-scripts-per-instance previously ran
2017-11-17 18:32:47,525 - stages.py[DEBUG]: Running module scripts-user (<module 'cloudinit.config.cc_scripts_user' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_user.py'>) with frequency once-per-instance
2017-11-17 18:32:47,525 - handlers.py[DEBUG]: start: modules-final/config-scripts-user: running config-scripts-user with frequency once-per-instance
2017-11-17 18:32:47,525 - helpers.py[DEBUG]: config-scripts-user already ran (freq=once-per-instance)
2017-11-17 18:32:47,525 - handlers.py[DEBUG]: finish: modules-final/config-scripts-user: SUCCESS: config-scripts-user previously ran
2017-11-17 18:32:47,525 - stages.py[DEBUG]: Running module ssh-authkey-fingerprints (<module 'cloudinit.config.cc_ssh_authkey_fingerprints' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_authkey_fingerprints.py'>) with frequency once-per-instance
2017-11-17 18:32:47,526 - handlers.py[DEBUG]: start: modules-final/config-ssh-authkey-fingerprints: running config-ssh-authkey-fingerprints with frequency once-per-instance
2017-11-17 18:32:47,526 - helpers.py[DEBUG]: config-ssh-authkey-fingerprints already ran (freq=once-per-instance)
2017-11-17 18:32:47,526 - handlers.py[DEBUG]: finish: modules-final/config-ssh-authkey-fingerprints: SUCCESS: config-ssh-authkey-fingerprints previously ran
2017-11-17 18:32:47,526 - stages.py[DEBUG]: Running module keys-to-console (<module 'cloudinit.config.cc_keys_to_console' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_keys_to_console.py'>) with frequency once-per-instance
2017-11-17 18:32:47,526 - handlers.py[DEBUG]: start: modules-final/config-keys-to-console: running config-keys-to-console with frequency once-per-instance
2017-11-17 18:32:47,526 - helpers.py[DEBUG]: config-keys-to-console already ran (freq=once-per-instance)
2017-11-17 18:32:47,526 - handlers.py[DEBUG]: finish: modules-final/config-keys-to-console: SUCCESS: config-keys-to-console previously ran
2017-11-17 18:32:47,526 - stages.py[DEBUG]: Running module phone-home (<module 'cloudinit.config.cc_phone_home' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_phone_home.py'>) with frequency once-per-instance
2017-11-17 18:32:47,526 - handlers.py[DEBUG]: start: modules-final/config-phone-home: running config-phone-home with frequency once-per-instance
2017-11-17 18:32:47,526 - helpers.py[DEBUG]: config-phone-home already ran (freq=once-per-instance)
2017-11-17 18:32:47,527 - handlers.py[DEBUG]: finish: modules-final/config-phone-home: SUCCESS: config-phone-home previously ran
2017-11-17 18:32:47,527 - stages.py[DEBUG]: Running module final-message (<module 'cloudinit.config.cc_final_message' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_final_message.py'>) with frequency always
2017-11-17 18:32:47,527 - handlers.py[DEBUG]: start: modules-final/config-final-message: running config-final-message with frequency always
2017-11-17 18:32:47,527 - helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f00bd1adac8>)
2017-11-17 18:32:47,527 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:32:47,527 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-11-17 18:32:47,530 - util.py[DEBUG]: Cloud-init v. 17.1 finished at Fri, 17 Nov 2017 18:32:47 +0000. Datasource DataSourceEc2Local.  Up 9.25 seconds
2017-11-17 18:32:47,530 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [644] 49 bytes
2017-11-17 18:32:47,530 - handlers.py[DEBUG]: finish: modules-final/config-final-message: SUCCESS: config-final-message ran successfully
2017-11-17 18:32:47,530 - stages.py[DEBUG]: Running module power-state-change (<module 'cloudinit.config.cc_power_state_change' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_power_state_change.py'>) with frequency once-per-instance
2017-11-17 18:32:47,531 - handlers.py[DEBUG]: start: modules-final/config-power-state-change: running config-power-state-change with frequency once-per-instance
2017-11-17 18:32:47,531 - helpers.py[DEBUG]: config-power-state-change already ran (freq=once-per-instance)
2017-11-17 18:32:47,531 - handlers.py[DEBUG]: finish: modules-final/config-power-state-change: SUCCESS: config-power-state-change previously ran
2017-11-17 18:32:47,531 - main.py[DEBUG]: Ran 20 modules with 0 failures
2017-11-17 18:32:47,532 - util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
2017-11-17 18:32:47,532 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:32:47,532 - util.py[DEBUG]: Read 10 bytes from /proc/uptime
2017-11-17 18:32:47,532 - util.py[DEBUG]: cloud-init mode 'modules' took 0.108 seconds (0.11)
2017-11-17 18:32:47,532 - handlers.py[DEBUG]: finish: modules-final: SUCCESS: running modules for final
2017-11-17 18:43:11,487 - util.py[DEBUG]: Cloud-init v. 17.1 running 'init' at Fri, 17 Nov 2017 18:43:11 +0000. Up 632.65 seconds.
2017-11-17 18:43:11,487 - main.py[DEBUG]: No kernel command line url found.
2017-11-17 18:43:11,487 - main.py[DEBUG]: Closing stdin.
2017-11-17 18:43:11,489 - util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [644] 0 bytes
2017-11-17 18:43:11,490 - util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
2017-11-17 18:43:11,490 - util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:43:11,493 - util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:43:11,495 - util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0, 1] (shell=False, capture=True)
2017-11-17 18:43:11,497 - main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
2017-11-17 18:43:11,497 - main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
2017-11-17 18:43:11,497 - handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
2017-11-17 18:43:11,497 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
2017-11-17 18:43:11,497 - util.py[DEBUG]: Read 7648 bytes from /var/lib/cloud/instance/obj.pkl
2017-11-17 18:43:11,500 - util.py[DEBUG]: Reading from /run/cloud-init/.instance-id (quiet=False)
2017-11-17 18:43:11,500 - util.py[DEBUG]: Read 20 bytes from /run/cloud-init/.instance-id
2017-11-17 18:43:11,500 - stages.py[DEBUG]: restored from cache with run check: DataSourceEc2Local
2017-11-17 18:43:11,500 - handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: restored from cache with run check: DataSourceEc2Local
2017-11-17 18:43:11,500 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:43:11,500 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:43:11,500 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,513 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:43:11,514 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:43:11,514 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,515 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:43:11,515 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:43:11,515 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,519 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:43:11,519 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:43:11,519 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,520 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,520 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:43:11,521 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:43:11,521 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:43:11,521 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,521 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:43:11,521 - util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
2017-11-17 18:43:11,521 - util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/i-0f885cd59d967ec90'
2017-11-17 18:43:11,522 - util.py[DEBUG]: Reading from /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource (quiet=False)
2017-11-17 18:43:11,522 - util.py[DEBUG]: Read 39 bytes from /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource
2017-11-17 18:43:11,522 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/datasource - wb: [644] 39 bytes
2017-11-17 18:43:11,522 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [644] 39 bytes
2017-11-17 18:43:11,523 - util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
2017-11-17 18:43:11,523 - util.py[DEBUG]: Read 20 bytes from /var/lib/cloud/data/instance-id
2017-11-17 18:43:11,523 - stages.py[DEBUG]: previous iid found to be i-0f885cd59d967ec90
2017-11-17 18:43:11,523 - util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [644] 20 bytes
2017-11-17 18:43:11,524 - util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [644] 20 bytes
2017-11-17 18:43:11,524 - util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [644] 20 bytes
2017-11-17 18:43:11,525 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 7577 bytes
2017-11-17 18:43:11,525 - main.py[DEBUG]: [net] init will now be targeting instance id: i-0f885cd59d967ec90. new=False
2017-11-17 18:43:11,525 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:43:11,525 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:43:11,525 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,537 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:43:11,537 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:43:11,537 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,539 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:43:11,539 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:43:11,539 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,543 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:43:11,543 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:43:11,543 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,544 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,544 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:43:11,544 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:43:11,544 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:43:11,544 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,544 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:43:11,545 - stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'type': 'physical', 'mac_address': '06:23:bc:a9:a4:fa', 'subnets': [{'type': 'dhcp4'}, {'type': 'dhcp6'}], 'name': 'eth0'}]}
2017-11-17 18:43:11,546 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:43:11,546 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:43:11,546 - util.py[DEBUG]: Reading from /sys/class/net/lo/addr_assign_type (quiet=False)
2017-11-17 18:43:11,546 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/lo/addr_assign_type
2017-11-17 18:43:11,546 - util.py[DEBUG]: Reading from /sys/class/net/lo/uevent (quiet=False)
2017-11-17 18:43:11,546 - util.py[DEBUG]: Read 23 bytes from /sys/class/net/lo/uevent
2017-11-17 18:43:11,546 - util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
2017-11-17 18:43:11,546 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
2017-11-17 18:43:11,546 - util.py[DEBUG]: Reading from /sys/class/net/lo/device/device (quiet=False)
2017-11-17 18:43:11,547 - util.py[DEBUG]: Reading from /sys/class/net/eth0/addr_assign_type (quiet=False)
2017-11-17 18:43:11,547 - util.py[DEBUG]: Read 2 bytes from /sys/class/net/eth0/addr_assign_type
2017-11-17 18:43:11,547 - util.py[DEBUG]: Reading from /sys/class/net/eth0/uevent (quiet=False)
2017-11-17 18:43:11,547 - util.py[DEBUG]: Read 25 bytes from /sys/class/net/eth0/uevent
2017-11-17 18:43:11,547 - util.py[DEBUG]: Reading from /sys/class/net/eth0/address (quiet=False)
2017-11-17 18:43:11,547 - util.py[DEBUG]: Read 18 bytes from /sys/class/net/eth0/address
2017-11-17 18:43:11,547 - util.py[DEBUG]: Reading from /sys/class/net/eth0/device/device (quiet=False)
2017-11-17 18:43:11,547 - util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
2017-11-17 18:43:11,547 - util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
2017-11-17 18:43:11,547 - util.py[DEBUG]: Reading from /sys/class/net/eth0/operstate (quiet=False)
2017-11-17 18:43:11,547 - util.py[DEBUG]: Read 3 bytes from /sys/class/net/eth0/operstate
2017-11-17 18:43:11,548 - util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,549 - util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,551 - __init__.py[DEBUG]: no work necessary for renaming of [['06:23:bc:a9:a4:fa', 'eth0', 'vif', None]]
2017-11-17 18:43:11,551 - stages.py[DEBUG]: not a new instance. network config is not applied.
2017-11-17 18:43:11,552 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/user-data.txt - wb: [600] 0 bytes
2017-11-17 18:43:11,554 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/user-data.txt.i - wb: [600] 330 bytes
2017-11-17 18:43:11,554 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/vendor-data.txt - wb: [600] 0 bytes
2017-11-17 18:43:11,555 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/vendor-data.txt.i - wb: [600] 308 bytes
2017-11-17 18:43:11,556 - helpers.py[DEBUG]: consume_data already ran (freq=once-per-instance)
2017-11-17 18:43:11,556 - handlers.py[DEBUG]: start: init-network/consume-user-data: reading and applying user-data
2017-11-17 18:43:11,556 - launch_index.py[DEBUG]: Discarding 0 multipart messages which do not match launch index 0
2017-11-17 18:43:11,556 - stages.py[DEBUG]: Added default handler for {'text/cloud-config-jsonp', 'text/cloud-config'} from CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']]
2017-11-17 18:43:11,556 - stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
2017-11-17 18:43:11,557 - stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
2017-11-17 18:43:11,557 - stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
2017-11-17 18:43:11,557 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (__begin__, None, 3) with frequency always
2017-11-17 18:43:11,557 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency always
2017-11-17 18:43:11,557 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency always
2017-11-17 18:43:11,557 - __init__.py[DEBUG]: {'Content-Type': 'text/x-not-multipart', 'MIME-Version': '1.0', 'Content-Disposition': 'attachment; filename="part-001"'}
2017-11-17 18:43:11,557 - __init__.py[DEBUG]: Empty payload of type text/x-not-multipart
2017-11-17 18:43:11,557 - __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config-jsonp', 'text/cloud-config']] (__end__, None, 3) with frequency always
2017-11-17 18:43:11,557 - util.py[DEBUG]: Writing to /var/lib/cloud/instances/i-0f885cd59d967ec90/cloud-config.txt - wb: [600] 0 bytes
2017-11-17 18:43:11,558 - __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency always
2017-11-17 18:43:11,558 - __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency always
2017-11-17 18:43:11,558 - handlers.py[DEBUG]: finish: init-network/consume-user-data: SUCCESS: reading and applying user-data
2017-11-17 18:43:11,558 - handlers.py[DEBUG]: start: init-network/consume-vendor-data: reading and applying vendor-data
2017-11-17 18:43:11,558 - stages.py[DEBUG]: no vendordata from datasource
2017-11-17 18:43:11,558 - handlers.py[DEBUG]: finish: init-network/consume-vendor-data: SUCCESS: reading and applying vendor-data
2017-11-17 18:43:11,558 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
2017-11-17 18:43:11,559 - util.py[DEBUG]: Read 3001 bytes from /etc/cloud/cloud.cfg
2017-11-17 18:43:11,559 - util.py[DEBUG]: Attempting to load yaml from string of length 3001 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,571 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
2017-11-17 18:43:11,571 - util.py[DEBUG]: Read 238 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
2017-11-17 18:43:11,571 - util.py[DEBUG]: Attempting to load yaml from string of length 238 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,573 - util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
2017-11-17 18:43:11,573 - util.py[DEBUG]: Read 2057 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
2017-11-17 18:43:11,573 - util.py[DEBUG]: Attempting to load yaml from string of length 2057 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,577 - util.py[DEBUG]: Reading from /run/cloud-init/cloud.cfg (quiet=False)
2017-11-17 18:43:11,577 - util.py[DEBUG]: Read 44 bytes from /run/cloud-init/cloud.cfg
2017-11-17 18:43:11,577 - util.py[DEBUG]: Attempting to load yaml from string of length 44 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,577 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,578 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:43:11,578 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:43:11,578 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:43:11,578 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,578 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:43:11,579 - util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
2017-11-17 18:43:11,579 - util.py[DEBUG]: Read 0 bytes from /var/lib/cloud/instance/cloud-config.txt
2017-11-17 18:43:11,579 - util.py[DEBUG]: Attempting to load yaml from string of length 0 with allowed root types (<class 'dict'>,)
2017-11-17 18:43:11,579 - util.py[DEBUG]: load_yaml given empty string, returning default
2017-11-17 18:43:11,581 - util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [400] 7546 bytes
2017-11-17 18:43:11,582 - main.py[DEBUG]: used datasource 'DataSourceEc2Local' from 'Ec2' was in di_report's list: ['Ec2', 'None']
2017-11-17 18:43:11,619 - stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
2017-11-17 18:43:11,620 - stages.py[DEBUG]: Running module migrator (<module 'cloudinit.config.cc_migrator' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_migrator.py'>) with frequency always
2017-11-17 18:43:11,620 - handlers.py[DEBUG]: start: init-network/config-migrator: running config-migrator with frequency always
2017-11-17 18:43:11,620 - helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7f2ef5732f98>)
2017-11-17 18:43:11,620 - cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
2017-11-17 18:43:11,621 - handlers.py[DEBUG]: finish: init-network/config-migrator: SUCCESS: config-migrator ran successfully
2017-11-17 18:43:11,621 - stages.py[DEBUG]: Running module seed_random (<module 'cloudinit.config.cc_seed_random' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_seed_random.py'>) with frequency once-per-instance
2017-11-17 18:43:11,621 - handlers.py[DEBUG]: start: init-network/config-seed_random: running config-seed_random with frequency once-per-instance
2017-11-17 18:43:11,621 - helpers.py[DEBUG]: config-seed_random already ran (freq=once-per-instance)
2017-11-17 18:43:11,621 - handlers.py[DEBUG]: finish: init-network/config-seed_random: SUCCESS: config-seed_random previously ran
2017-11-17 18:43:11,621 - stages.py[DEBUG]: Running module bootcmd (<module 'cloudinit.config.cc_bootcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_bootcmd.py'>) with frequency always
2017-11-17 18:43:11,621 - handlers.py[DEBUG]: start: init-network/config-bootcmd: running config-bootcmd with frequency always
2017-11-17 18:43:11,621 - helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7f2ef572fc50>)
2017-11-17 18:43:11,622 - cc_bootcmd.py[DEBUG]: Skipping module named bootcmd, no 'bootcmd' key in configuration
2017-11-17 18:43:11,622 - handlers.py[DEBUG]: finish: init-network/config-bootcmd: SUCCESS: config-bootcmd ran successfully
2017-11-17 18:43:11,622 - stages.py[DEBUG]: Running module write-files (<module 'cloudinit.config.cc_write_files' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_write_files.py'>) with frequency once-per-instance
2017-11-17 18:43:11,622 - handlers.py[DEBUG]: start: init-network/config-write-files: running config-write-files with frequency once-per-instance
2017-11-17 18:43:11,622 - helpers.py[DEBUG]: config-write-files already ran (freq=once-per-instance)
2017-11-17 18:43:11,622 - handlers.py[DEBUG]: finish: init-network/config-write-files: SUCCESS: config-write-files previously ran
2017-11-17 18:43:11,622 - stages.py[DEBUG]: Running module growpart (<module 'cloudinit.config.cc_growpart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_growpart.py'>) with frequency always
2017-11-17 18:43:11,622 - handlers.py[DEBUG]: start: init-network/config-growpart: running config-growpart with frequency always
2017-11-17 18:43:11,622 - helpers.py[DEBUG]: Running config-growpart using lock (<cloudinit.helpers.DummyLock object at 0x7f2ef572f898>)
2017-11-17 18:43:11,623 - cc_growpart.py[DEBUG]: No 'growpart' entry in cfg.  Using default: {'ignore_growroot_disabled': False, 'mode': 'auto', 'devices': ['/']}
2017-11-17 18:43:11,623 - util.py[DEBUG]: Running command ['growpart', '--help'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,626 - util.py[DEBUG]: Reading from /proc/1486/mountinfo (quiet=False)
2017-11-17 18:43:11,626 - util.py[DEBUG]: Read 2861 bytes from /proc/1486/mountinfo
2017-11-17 18:43:11,626 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,627 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,629 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,630 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:43:11,630 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:43:11,630 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:43:11,630 - util.py[DEBUG]: Read 905 bytes from /proc/self/status
2017-11-17 18:43:11,632 - util.py[DEBUG]: Reading from /sys/class/block/xvda1/partition (quiet=False)
2017-11-17 18:43:11,633 - util.py[DEBUG]: Read 2 bytes from /sys/class/block/xvda1/partition
2017-11-17 18:43:11,633 - util.py[DEBUG]: Reading from /sys/devices/vbd-768/block/xvda/dev (quiet=False)
2017-11-17 18:43:11,633 - util.py[DEBUG]: Read 6 bytes from /sys/devices/vbd-768/block/xvda/dev
2017-11-17 18:43:11,633 - util.py[DEBUG]: Running command ['growpart', '--dry-run', '/dev/xvda', '1'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,646 - util.py[DEBUG]: resize_devices took 0.021 seconds
2017-11-17 18:43:11,646 - cc_growpart.py[DEBUG]: '/' NOCHANGE: no change necessary (/dev/xvda, 1)
2017-11-17 18:43:11,647 - handlers.py[DEBUG]: finish: init-network/config-growpart: SUCCESS: config-growpart ran successfully
2017-11-17 18:43:11,647 - stages.py[DEBUG]: Running module resizefs (<module 'cloudinit.config.cc_resizefs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_resizefs.py'>) with frequency always
2017-11-17 18:43:11,647 - handlers.py[DEBUG]: start: init-network/config-resizefs: running config-resizefs with frequency always
2017-11-17 18:43:11,647 - helpers.py[DEBUG]: Running config-resizefs using lock (<cloudinit.helpers.DummyLock object at 0x7f2ef572f668>)
2017-11-17 18:43:11,647 - schema.py[DEBUG]: Ignoring schema validation. python-jsonschema is not present
2017-11-17 18:43:11,647 - util.py[DEBUG]: Reading from /proc/1486/mountinfo (quiet=False)
2017-11-17 18:43:11,648 - util.py[DEBUG]: Read 2861 bytes from /proc/1486/mountinfo
2017-11-17 18:43:11,648 - cc_resizefs.py[DEBUG]: resize_info: dev=/dev/xvda1 mnt_point=/ path=/
2017-11-17 18:43:11,648 - util.py[DEBUG]: Running command ['systemd-detect-virt', '--quiet', '--container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,649 - util.py[DEBUG]: Running command ['running-in-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,650 - util.py[DEBUG]: Running command ['lxc-is-container'] with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,652 - util.py[DEBUG]: Reading from /proc/1/environ (quiet=False)
2017-11-17 18:43:11,652 - util.py[DEBUG]: Read 150 bytes from /proc/1/environ
2017-11-17 18:43:11,652 - util.py[DEBUG]: Reading from /proc/self/status (quiet=False)
2017-11-17 18:43:11,652 - util.py[DEBUG]: Read 905 bytes from /proc/self/status
2017-11-17 18:43:11,652 - cc_resizefs.py[DEBUG]: Resizing / (ext4) using resize2fs /dev/xvda1
2017-11-17 18:43:11,652 - util.py[DEBUG]: Running command ('resize2fs', '/dev/xvda1') with allowed return codes [0] (shell=False, capture=True)
2017-11-17 18:43:11,657 - util.py[DEBUG]: Resizing took 0.005 seconds
2017-11-17 18:43:11,657 - cc_resizefs.py[DEBUG]: Resized root filesystem (type=ext4, val=True)
2017-11-17 18:43:11,657 - handlers.py[DEBUG]: finish: init-network/config-resizefs: SUCCESS: config-resizefs ran successfully
2017-11-17 18:43:11,657 - stages.py[DEBUG]: Running module disk_setup (<module 'cloudinit.config.cc_disk_setup' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disk_setup.py'>) with frequency once-per-instance
2017-11-17 18:43:11,657 - handlers.py[DEBUG]: start: init-network/config-disk_setup: running config-disk_setup with frequency once-per-instance
2017-11-17 18:43:11,657 - helpers.py[DEBUG]: config-disk_setup already ran (freq=once-per-instance)
2017-11-17 18:43:11,658 - handlers.py[DEBUG]: finish: init-network/config-disk_setup: SUCCESS: config-disk_setup previously ran
2017-11-17 18:43:11,658 - stages.py[DEBUG]: Running module mounts (<module 'cloudinit.config.cc_mounts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mounts.py'>) with frequency once-per-instance
2017-11-17 18:43:11,658 - handlers.py[DEBUG]: start: init-network/config-mounts: running config-mounts with frequency once-per-instance
2017-11-17 18:43:11,658 - helpers.py[DEBUG]: config-mounts already ran (freq=once-per-instance)
2017-11-17 18:43:11,658 - handlers.py[DEBUG]: finish: init-network/config-mounts: SUCCESS: config-mounts previously ran
2017-11-17 18:43:11,658 - stages.py[DEBUG]: Running module set_hostname (<module 'cloudinit.config.cc_set_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_hostname.py'>) with frequency once-per-instance
2017-11-17 18:43:11,658 - handlers.py[DEBUG]: start: init-network/config-set_hostname: running config-set_hostname with frequency once-per-instance
2017-11-17 18:43:11,658 - helpers.py[DEBUG]: config-set_hostname already ran (freq=once-per-instance)
2017-11-17 18:43:11,658 - handlers.py[DEBUG]: finish: init-network/config-set_hostname: SUCCESS: config-set_hostname previously ran
2017-11-17 18:43:11,658 - stages.py[DEBUG]: Running module update_hostname (<module 'cloudinit.config.cc_update_hostname' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_hostname.py'>) with frequency always
2017-11-17 18:43:11,659 - handlers.py[DEBUG]: start: init-network/config-update_hostname: running config-update_hostname with frequency always
2017-11-17 18:43:11,659 - helpers.py[DEBUG]: Running config-update_hostname using lock (<cloudinit.helpers.DummyLock object at 0x7f2ef5fe5ac8>)
2017-11-17 18:43:11,659 - cc_update_hostname.py[DEBUG]: Updating hostname to ip-172-31-16-165.us-east-2.compute.internal (ip-172-31-16-165)
2017-11-17 18:43:11,659 - util.py[DEBUG]: Reading from /var/lib/cloud/data/previous-hostname (quiet=False)
2017-11-17 18:43:11,659 - util.py[DEBUG]: Read 17 bytes from /var/lib/cloud/data/previous-hostname
2017-11-17 18:43:11,659 - util.py[DEBUG]: Reading from /etc/hostname (quiet=False)
2017-11-17 18:43:11,659 - util.py[DEBUG]: Read 17 bytes from /etc/hostname
2017-11-17 18:43:11,659 - __init__.py[DEBUG]: Attempting to update hostname to ip-172-31-16-165 in 0 files
2017-11-17 18:43:11,659 - handlers.py[DEBUG]: finish: init-network/config-update_hostname: SUCCESS: config-update_hostname ran successfully
2017-11-17 18:43:11,659 - stages.py[DEBUG]: Running module update_etc_hosts (<module 'cloudinit.config.cc_update_etc_hosts' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_update_etc_hosts.py'>) with frequency always
2017-11-17 18:43:11,660 - handlers.py[DEBUG]: start: init-network/config-update_etc_hosts: running config-update_etc_hosts with frequency always
2017-11-17 18:43:11,660 - helpers.py[DEBUG]: Running config-update_etc_hosts using lock (<cloudinit.helpers.DummyLock object at 0x7f2ef5fe5160>)
2017-11-17 18:43:11,660 - cc_update_etc_hosts.py[DEBUG]: Configuration option 'manage_etc_hosts' is not set, not managing /etc/hosts in module update_etc_hosts
2017-11-17 18:43:11,660 - handlers.py[DEBUG]: finish: init-network/config-update_etc_hosts: SUCCESS: config-update_etc_hosts ran successfully
2017-11-17 18:43:11,660 - stages.py[DEBUG]: Running module ca-certs (<module 'cloudinit.config.cc_ca_certs' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ca_certs.py'>) with frequency once-per-instance
2017-11-17 18:43:11,660 - handlers.py[DEBUG]: start: init-network/config-ca-certs: running config-ca-certs with frequency once-per-instance
2017-11-17 18:43:11,660 - helpers.py[DEBUG]: config-ca-certs already ran (freq=once-per-instance)
2017-11-17 18:43:11,660 - handlers.py[DEBUG]: finish: init-network/config-ca-certs: SUCCESS: config-ca-certs previously ran
2017-11-17 18:43:11,660 - stages.py[DEBUG]: Running module rsyslog (<module 'cloudinit.config.cc_rsyslog' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rsyslog.py'>) with frequency once-per-instance
2017-11-17 18:43:11,661 - handlers.py[DEBUG]: start: init-network/config-rsyslog: running config-rsyslog with frequency once-per-instance
2017-11-17 18:43:11,661 - helpers.py[DEBUG]: config-rsyslog already ran (freq=once-per-instance)
2017-11-17 18:43:11,661 - handlers.py[DEBUG]: finish: init-network/config-rsyslog: SUCCESS: config-rsyslog previously ran
2017-11-17 18:43:11,661 - stages.py[DEBUG]: Running module users-groups (<module 'cloudinit.config.cc_users_groups' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_users_groups.py'>) with frequency once-per-instance
2017-11-17 18:43:11,661 - handlers.py[DEBUG]: start: init-network/config-users-groups: running config-users-groups with frequency once-per-instance
2017-11-17 18:43:11,661 - helpers.py[DEBUG]: config-users-groups already ran (freq=once-per-instance)
2017-11-17 18:43:11,661 - handlers.py[DEBUG]: finish: init-network/config-users-groups: SUCCESS: config-users-groups previously ran
2017-11-17 18:43:11,661 - stages.py[DEBUG]: Running module ssh (<module 'cloudinit.config.cc_ssh' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh.py'>) with frequency once-per-instance
2017-11-17 18:43:11,661 - handlers.py[DEBUG]: start: init-network/config-ssh: running config-ssh with frequency once-per-instance
2017-11-17 18:43:11,661 - helpers.py[DEBUG]: config-ssh already ran (freq=once-per-instance)
2017-11-17 18:43:11,662 - handlers.py[DEBUG]: finish: init-network/config-ssh: SUCCESS: config-ssh previously ran
2017-11-17 18:43:11,662 - main.py[DEBUG]: Ran 15 modules with 0 failures
2017-11-17 18:43:11,662 - util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
2017-11-17 18:43:11,662 - util.py[DEBUG]: Read 14 bytes from /proc/uptime
2017-11-17 18:43:11,662 - util.py[DEBUG]: cloud-init mode 'init' took 0.205 seconds (0.21)
2017-11-17 18:43:11,662 - handlers.py[DEBUG]: finish: init-network: SUCCESS: searching for network datasources
Download as text