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 | Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.8 running 'init-local' at Fri, 30 Sep 2016 17:30:39 +0000. Up 10.85 seconds.
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance/boot-finished
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/data/no-net
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-local/check-cache: attempting to read from cache [check]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: no cache found
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-local/check-cache: SUCCESS: no cache found
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Looking for for data source in: ['NoCloud', 'ConfigDrive', 'OpenNebula', 'Azure', 'AltCloud', 'OVF', 'MAAS', 'GCE', 'OpenStack', 'CloudSigma', 'SmartOS', 'Ec2', 'CloudStack', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM']
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Searching for local data source in: ['DataSourceNoCloud', 'DataSourceConfigDrive', 'DataSourceOpenNebula', 'DataSourceOVF', 'DataSourceSmartOS']
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-local/search-NoCloud: searching for local data from DataSourceNoCloud
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloud'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/network-config (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/network-config (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-local/search-NoCloud: SUCCESS: no local data found from DataSourceNoCloud
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-local/search-ConfigDrive: searching for local data from DataSourceConfigDrive
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceConfigDrive.DataSourceConfigDrive'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/cd0'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/cd1'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=config-2', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-local/search-ConfigDrive: SUCCESS: no local data found from DataSourceConfigDrive
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-local/search-OpenNebula: searching for local data from DataSourceOpenNebula
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOpenNebula.DataSourceOpenNebula'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=CONTEXT', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=CDROM', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-local/search-OpenNebula: SUCCESS: no local data found from DataSourceOpenNebula
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-local/search-OVF: searching for local data from DataSourceOVF
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOVF.DataSourceOVF'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /sys/class/dmi/id/product_name
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned OpenStack Nova
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 2178 bytes from /proc/mounts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Fetched {'configfs': {'opts': 'rw,relatime', 'fstype': 'configfs', 'mountpoint': '/sys/kernel/config'}, 'securityfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'securityfs', 'mountpoint': '/sys/kernel/security'}, 'cgroup': {'opts': 'rw,nosuid,nodev,noexec,relatime,blkio', 'fstype': 'cgroup', 'mountpoint': '/sys/fs/cgroup/blkio'}, '/dev/vda1': {'opts': 'rw,relatime,data=ordered', 'fstype': 'ext4', 'mountpoint': '/'}, 'mqueue': {'opts': 'rw,relatime', 'fstype': 'mqueue', 'mountpoint': '/dev/mqueue'}, 'hugetlbfs': {'opts': 'rw,relatime', 'fstype': 'hugetlbfs', 'mountpoint': '/dev/hugepages'}, 'tmpfs': {'opts': 'ro,nosuid,nodev,noexec,mode=755', 'fstype': 'tmpfs', 'mountpoint': '/sys/fs/cgroup'}, 'udev': {'opts': 'rw,nosuid,relatime,size=1018060k,nr_inodes=254515,mode=755', 'fstype': 'devtmpfs', 'mountpoint': '/dev'}, 'devpts': {'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000', 'fstype': 'devpts', 'mountpoint': '/dev/pts'}, 'proc': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'proc', 'mountpoint': '/proc'}, '/dev/vda15': {'opts': 'rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro', 'fstype': 'vfat', 'mountpoint': '/boot/efi'}, 'sysfs': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'sysfs', 'mountpoint': '/sys'}, 'fusectl': {'opts': 'rw,relatime', 'fstype': 'fusectl', 'mountpoint': '/sys/fs/fuse/connections'}, 'systemd-1': {'opts': 'rw,relatime,fd=33,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=10011', 'fstype': 'autofs', 'mountpoint': '/proc/sys/fs/binfmt_misc'}, 'debugfs': {'opts': 'rw,relatime', 'fstype': 'debugfs', 'mountpoint': '/sys/kernel/debug'}, 'pstore': {'opts': 'rw,nosuid,nodev,noexec,relatime', 'fstype': 'pstore', 'mountpoint': '/sys/fs/pstore'}} mounts from proc
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-local/search-OVF: SUCCESS: no local data found from DataSourceOVF
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-local/search-SmartOS: searching for local data from DataSourceSmartOS
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceSmartOS.DataSourceSmartOS'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /sys/class/dmi/id/product_name
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned OpenStack Nova
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] DataSourceSmartOS.py[DEBUG]: Not running on smartos
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-local/search-SmartOS: SUCCESS: no local data found from DataSourceSmartOS
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] main.py[DEBUG]: No local datasource found
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/carrier (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/dormant (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/operstate (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 5 bytes from /sys/class/net/ens2/operstate
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/address (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens2/address
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'mac_address': 'fa:16:3e:85:c3:9b', 'subnets': [{'type': 'dhcp'}], 'type': 'physical', 'name': 'ens2'}]}
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/operstate (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 5 bytes from /sys/class/net/ens2/operstate
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/address (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens2/address
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: no work necessary for renaming of [['fa:16:3e:85:c3:9b', 'ens2']]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[INFO]: Applying network configuration from fallback bringup=False: {'version': 1, 'config': [{'mac_address': 'fa:16:3e:85:c3:9b', 'subnets': [{'type': 'dhcp'}], 'type': 'physical', 'name': 'ens2'}]}
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 367 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] main.py[DEBUG]: [local] Exiting without datasource in local mode
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 11 bytes from /proc/uptime
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'init' took 0.784 seconds (0.79)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-local: SUCCESS: searching for local datasources
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.8 running 'init' at Fri, 30 Sep 2016 17:30:41 +0000. Up 12.93 seconds.
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/log/cloud-init.log - ab: [420] 0 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Changing the ownership of /var/log/cloud-init.log to 104:4
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['ifconfig', '-a'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['netstat', '-rn'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['netstat', '-A', 'inet6', '-n'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] main.py[DEBUG]: Checking to see if files that we need already exist from a previous run that would allow us to stop early.
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] main.py[DEBUG]: Execution continuing, no previous run detected that would allow us to stop early.
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/check-cache: attempting to read from cache [trust]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/obj.pkl (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: no cache found
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/check-cache: SUCCESS: no cache found
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Looking for for data source in: ['NoCloud', 'ConfigDrive', 'OpenNebula', 'Azure', 'AltCloud', 'OVF', 'MAAS', 'GCE', 'OpenStack', 'CloudSigma', 'SmartOS', 'Ec2', 'CloudStack', 'None'], via packages ['', 'cloudinit.sources'] that matches dependencies ['FILESYSTEM', 'NETWORK']
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Searching for network data source in: ['DataSourceNoCloudNet', 'DataSourceAzureNet', 'DataSourceAltCloud', 'DataSourceOVFNet', 'DataSourceMAAS', 'DataSourceGCE', 'DataSourceOpenStack', 'DataSourceEc2', 'DataSourceCloudStack', 'DataSourceNone']
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/search-NoCloudNet: searching for network data from DataSourceNoCloudNet
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceNoCloud.DataSourceNoCloudNet'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/user-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/meta-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/vendor-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud/network-config (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/user-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/meta-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/vendor-data (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/seed/nocloud-net/network-config (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr0'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-odevice', '/dev/sr1'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=vfat', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tLABEL=cidata', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/search-NoCloudNet: SUCCESS: no network data found from DataSourceNoCloudNet
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/search-AzureNet: searching for network data from DataSourceAzureNet
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceAzure.DataSourceAzureNet'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=iso9660', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['blkid', '-tTYPE=udf', '-odevice'] with allowed return codes [0, 2] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/search-AzureNet: SUCCESS: no network data found from DataSourceAzureNet
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/search-AltCloud: searching for network data from DataSourceAltCloud
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceAltCloud.DataSourceAltCloud'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] DataSourceAltCloud.py[DEBUG]: Invoked get_data()
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /sys/class/dmi/id/product_name
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned OpenStack Nova
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] DataSourceAltCloud.py[DEBUG]: cloud_type: UNKNOWN
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/search-AltCloud: SUCCESS: no network data found from DataSourceAltCloud
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/search-OVFNet: searching for network data from DataSourceOVFNet
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOVF.DataSourceOVFNet'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: querying dmi data /sys/class/dmi/id/product_name
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/dmi/id/product_name (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 15 bytes from /sys/class/dmi/id/product_name
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: dmi data /sys/class/dmi/id/product_name returned OpenStack Nova
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/mounts (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 2178 bytes from /proc/mounts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Fetched {'securityfs': {'mountpoint': '/sys/kernel/security', 'fstype': 'securityfs', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'sysfs': {'mountpoint': '/sys', 'fstype': 'sysfs', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'tmpfs': {'mountpoint': '/sys/fs/cgroup', 'fstype': 'tmpfs', 'opts': 'ro,nosuid,nodev,noexec,mode=755'}, 'cgroup': {'mountpoint': '/sys/fs/cgroup/blkio', 'fstype': 'cgroup', 'opts': 'rw,nosuid,nodev,noexec,relatime,blkio'}, 'fusectl': {'mountpoint': '/sys/fs/fuse/connections', 'fstype': 'fusectl', 'opts': 'rw,relatime'}, '/dev/vda1': {'mountpoint': '/', 'fstype': 'ext4', 'opts': 'rw,relatime,data=ordered'}, 'hugetlbfs': {'mountpoint': '/dev/hugepages', 'fstype': 'hugetlbfs', 'opts': 'rw,relatime'}, 'configfs': {'mountpoint': '/sys/kernel/config', 'fstype': 'configfs', 'opts': 'rw,relatime'}, 'mqueue': {'mountpoint': '/dev/mqueue', 'fstype': 'mqueue', 'opts': 'rw,relatime'}, 'devpts': {'mountpoint': '/dev/pts', 'fstype': 'devpts', 'opts': 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000'}, 'proc': {'mountpoint': '/proc', 'fstype': 'proc', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, 'debugfs': {'mountpoint': '/sys/kernel/debug', 'fstype': 'debugfs', 'opts': 'rw,relatime'}, 'pstore': {'mountpoint': '/sys/fs/pstore', 'fstype': 'pstore', 'opts': 'rw,nosuid,nodev,noexec,relatime'}, '/dev/vda15': {'mountpoint': '/boot/efi', 'fstype': 'vfat', 'opts': 'rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro'}, 'systemd-1': {'mountpoint': '/proc/sys/fs/binfmt_misc', 'fstype': 'autofs', 'opts': 'rw,relatime,fd=33,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=10011'}, 'udev': {'mountpoint': '/dev', 'fstype': 'devtmpfs', 'opts': 'rw,nosuid,relatime,size=1018060k,nr_inodes=254515,mode=755'}} mounts from proc
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/search-OVFNet: SUCCESS: no network data found from DataSourceOVFNet
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/search-MAAS: searching for network data from DataSourceMAAS
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceMAAS.DataSourceMAAS'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/search-MAAS: SUCCESS: no network data found from DataSourceMAAS
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/search-GCE: searching for network data from DataSourceGCE
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceGCE.DataSourceGCE'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] DataSourceGCE.py[DEBUG]: http://metadata.google.internal/computeMetadata/v1/ is not resolvable
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/search-GCE: SUCCESS: no network data found from DataSourceGCE
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/search-OpenStack: searching for network data from DataSourceOpenStack
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Seeing if we can get any data from <class 'cloudinit.sources.DataSourceOpenStack.DataSourceOpenStack'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/1] open 'http://169.254.169.254/openstack' with {'allow_redirects': True, 'timeout': 10.0, 'method': 'GET', 'url': 'http://169.254.169.254/openstack', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/openstack (200, 50b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] DataSourceOpenStack.py[DEBUG]: Using metadata source: 'http://169.254.169.254'
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/openstack' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/openstack', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/openstack (200, 50b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] openstack.py[DEBUG]: Selected version 'latest' from [b'2012-08-10', b'2013-04-04', b'2013-10-17', b'2015-10-15', b'latest']
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/openstack/latest/vendor_data.json' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/openstack/latest/vendor_data.json', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/openstack/latest/vendor_data.json (200, 2b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/openstack/latest/user_data' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/openstack/latest/user_data', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/openstack/latest/user_data (200, 6249b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/openstack/latest/network_data.json' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/openstack/latest/network_data.json', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/openstack/latest/network_data.json (200, 353b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/openstack/latest/meta_data.json' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/openstack/latest/meta_data.json', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/openstack/latest/meta_data.json (200, 1821b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/ (200, 223b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/block-device-mapping/' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/block-device-mapping/', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/block-device-mapping/ (200, 19b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/block-device-mapping/ephemeral0' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/block-device-mapping/ephemeral0', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/block-device-mapping/ephemeral0 (200, 8b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/block-device-mapping/root' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/block-device-mapping/root', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/block-device-mapping/root (200, 8b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/block-device-mapping/ami' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/block-device-mapping/ami', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/block-device-mapping/ami (200, 3b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/placement/' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/placement/', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/placement/ (200, 17b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/placement/availability-zone' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/placement/availability-zone', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/placement/availability-zone (200, 4b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/public-keys/' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/public-keys/', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/public-keys/ (200, 10b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/public-keys/0/openssh-key' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/public-keys/0/openssh-key', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/public-keys/0/openssh-key (200, 397b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/ami-id' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/ami-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/ami-id (200, 12b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/hostname' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/hostname', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/hostname (200, 33b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/instance-id' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/instance-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/instance-id (200, 10b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/public-ipv4' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/public-ipv4', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/public-ipv4 (200, 0b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/ami-manifest-path' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/ami-manifest-path', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/ami-manifest-path (200, 5b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/local-ipv4' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/local-ipv4', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/local-ipv4 (200, 10b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/instance-action' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/instance-action', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/instance-action (200, 4b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/ami-launch-index' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/ami-launch-index', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/ami-launch-index (200, 1b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/reservation-id' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/reservation-id', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/reservation-id (200, 10b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/instance-type' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/instance-type', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/instance-type (200, 8b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/public-hostname' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/public-hostname', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/public-hostname (200, 33b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/local-hostname' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/local-hostname', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/local-hostname (200, 33b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: [0/6] open 'http://169.254.169.254/latest/meta-data/security-groups' with {'allow_redirects': True, 'timeout': 5.0, 'method': 'GET', 'url': 'http://169.254.169.254/latest/meta-data/security-groups', 'headers': {'User-Agent': 'Cloud-Init/0.7.8'}} configuration
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] url_helper.py[DEBUG]: Read from http://169.254.169.254/latest/meta-data/security-groups (200, 0b) after 1 attempts
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Crawl of openstack metadata service took 7.423 seconds
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/search-OpenStack: SUCCESS: found network data from DataSourceOpenStack
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[INFO]: Loaded datasource DataSourceOpenStack - DataSourceOpenStack [net,ver=2]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 3018 bytes from /etc/cloud/cloud.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 3018 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to remove /var/lib/cloud/instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/var/lib/cloud/instance' => '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63'
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/datasource (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/datasource - wb: [420] 53 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-datasource - wb: [420] 53 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/data/instance-id (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: previous iid found to be NO_PREVIOUS_INSTANCE_ID
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/instance-id - wb: [420] 37 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /run/cloud-init/.instance-id - wb: [420] 37 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/data/previous-instance-id - wb: [420] 24 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/obj.pkl - wb: [256] 14803 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] main.py[DEBUG]: [net] init will now be targeting instance id: 279164e5-eac0-484a-805f-df5faa0ebd63. new=True
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 3018 bytes from /etc/cloud/cloud.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 3018 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/carrier (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 2 bytes from /sys/class/net/ens2/carrier
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/address (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens2/address
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: applying net config names for {'version': 1, 'config': [{'subnets': [{'type': 'dhcp'}], 'mac_address': 'fa:16:3e:85:c3:9b', 'type': 'physical', 'name': 'ens2'}]}
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/lo/operstate (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 8 bytes from /sys/class/net/lo/operstate
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/lo/address (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/lo/address
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/operstate (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 3 bytes from /sys/class/net/ens2/operstate
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /sys/class/net/ens2/address (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 18 bytes from /sys/class/net/ens2/address
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['ip', '-6', 'addr', 'show', 'permanent', 'scope', 'global'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['ip', '-4', 'addr', 'show'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: no work necessary for renaming of [['fa:16:3e:85:c3:9b', 'ens2']]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[INFO]: Applying network configuration from fallback bringup=True: {'version': 1, 'config': [{'subnets': [{'type': 'dhcp'}], 'mac_address': 'fa:16:3e:85:c3:9b', 'type': 'physical', 'name': 'ens2'}]}
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/network/interfaces.d/50-cloud-init.cfg - wb: [420] 367 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/user-data.txt - wb: [384] 6249 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 6249 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/user-data.txt.i - wb: [384] 6554 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/vendor-data.txt - wb: [384] 0 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/vendor-data.txt.i - wb: [384] 308 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/consume_data - wb: [420] 23 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running consume_data using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/consume_data'>)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/consume-user-data: reading and applying user-data
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/cloud-config-jsonp', 'text/cloud-config'} from CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/x-shellscript'} from ShellScriptPartHandler: [['text/x-shellscript']]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/cloud-boothook'} from BootHookPartHandler: [['text/cloud-boothook']]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Added default handler for {'text/upstart-job'} from UpstartJobPartHandler: [['text/upstart-job']]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__begin__, None, 3) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__begin__, None, 2) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__begin__, None, 2) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__begin__, None, 2) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: {'MIME-Version': '1.0', 'Content-Disposition': 'attachment; filename="part-001"', 'Content-Type': 'text/cloud-config'}
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (text/cloud-config, part-001, 3) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 6249 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cloud_config.py[DEBUG]: Merging by applying [('dict', ['replace']), ('list', []), ('str', [])]
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler CloudConfigPartHandler: [['text/cloud-config', 'text/cloud-config-jsonp']] (__end__, None, 3) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/cloud-config.txt - wb: [384] 13215 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler UpstartJobPartHandler: [['text/upstart-job']] (__end__, None, 2) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler BootHookPartHandler: [['text/cloud-boothook']] (__end__, None, 2) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: Calling handler ShellScriptPartHandler: [['text/x-shellscript']] (__end__, None, 2) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/consume-user-data: SUCCESS: reading and applying user-data
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/consume-vendor-data: reading and applying vendor-data
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: no vendordata from datasource
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/consume-vendor-data: SUCCESS: reading and applying vendor-data
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 3018 bytes from /etc/cloud/cloud.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 3018 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/90_dpkg.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 197 bytes from /etc/cloud/cloud.cfg.d/90_dpkg.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 197 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/cloud.cfg.d/05_logging.cfg (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 1910 bytes from /etc/cloud/cloud.cfg.d/05_logging.cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 1910 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 13215 bytes from /var/lib/cloud/instance/cloud-config.txt
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 13215 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /var/lib/cloud/instance/cloud-config.txt (quiet=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 13215 bytes from /var/lib/cloud/instance/cloud-config.txt
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Attempting to load yaml from string of length 13215 with allowed root types (<class 'dict'>,)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module migrator (<module 'cloudinit.config.cc_migrator' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_migrator.py'>) with frequency always
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-migrator: running config-migrator with frequency always
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-migrator using lock (<cloudinit.helpers.DummyLock object at 0x7fcfdafbbda0>)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cc_migrator.py[DEBUG]: Migrated 0 semaphore files to there canonicalized names
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-migrator: SUCCESS: config-migrator ran successfully
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module ubuntu-init-switch (<module 'cloudinit.config.cc_ubuntu_init_switch' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ubuntu_init_switch.py'>) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-ubuntu-init-switch: running config-ubuntu-init-switch with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_ubuntu_init_switch - wb: [420] 23 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-ubuntu-init-switch using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_ubuntu_init_switch'>)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cc_ubuntu_init_switch.py[DEBUG]: ubuntu-init-switch: target=None. nothing to do
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-ubuntu-init-switch: SUCCESS: config-ubuntu-init-switch ran successfully
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module seed_random (<module 'cloudinit.config.cc_seed_random' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_seed_random.py'>) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-seed_random: running config-seed_random with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_seed_random - wb: [420] 24 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-seed_random using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_seed_random'>)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cc_seed_random.py[DEBUG]: seed_random: adding 512 bytes of random seed entropy to /dev/urandom
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /dev/urandom - ab: [None] 512 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cc_seed_random.py[DEBUG]: no command provided
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: init-network/config-seed_random: SUCCESS: config-seed_random ran successfully
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module bootcmd (<module 'cloudinit.config.cc_bootcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_bootcmd.py'>) with frequency always
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: init-network/config-bootcmd: running config-bootcmd with frequency always
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-bootcmd using lock (<cloudinit.helpers.DummyLock object at 0x7fcfdafbb748>)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Created temporary file /tmp/tmp79p0qsz8.sh
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Shellified 5 commands.
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['/bin/sh', '/tmp/tmp79p0qsz8.sh'] with allowed return codes [0] (shell=False, capture=False)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module emit_upstart (<module 'cloudinit.config.cc_emit_upstart' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_emit_upstart.py'>) with frequency always
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-emit_upstart: running config-emit_upstart with frequency always
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-emit_upstart using lock (<cloudinit.helpers.DummyLock object at 0x7fc687606320>)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cc_emit_upstart.py[DEBUG]: no /sbin/initctl located
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cc_emit_upstart.py[DEBUG]: not upstart system, 'emit_upstart' disabled
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-emit_upstart: SUCCESS: config-emit_upstart ran successfully
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module ntp (<module 'cloudinit.config.cc_ntp' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ntp.py'>) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-ntp: running config-ntp with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_ntp - wb: [420] 25 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-ntp using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_ntp'>)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cc_ntp.py[DEBUG]: Skipping module named ntp,not present or disabled by cfg
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-ntp: SUCCESS: config-ntp ran successfully
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module ssh-import-id (<module 'cloudinit.config.cc_ssh_import_id' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_import_id.py'>) with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-ssh-import-id: running config-ssh-import-id with frequency once-per-instance
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_ssh_import_id - wb: [420] 25 bytes
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-import-id using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_ssh_import_id'>)
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] cc_ssh_import_id.py[DEBUG]: Importing ssh ids for user ubuntu.
Sep 30 17:32:37 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['sudo', '-Hu', 'ubuntu', 'ssh-import-id', 'smoser'] with allowed return codes [0] (shell=False, capture=False)
Sep 30 17:32:40 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-ssh-import-id: SUCCESS: config-ssh-import-id ran successfully
Sep 30 17:32:40 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module locale (<module 'cloudinit.config.cc_locale' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_locale.py'>) with frequency once-per-instance
Sep 30 17:32:40 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-locale: running config-locale with frequency once-per-instance
Sep 30 17:32:40 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_locale - wb: [420] 25 bytes
Sep 30 17:32:40 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-locale using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_locale'>)
Sep 30 17:32:40 yakkety-20160930-172959 [CLOUDINIT] cc_locale.py[DEBUG]: Setting locale to en_US.UTF-8
Sep 30 17:32:40 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['locale-gen', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Sep 30 17:32:41 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['update-locale', 'en_US.UTF-8'] with allowed return codes [0] (shell=False, capture=False)
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/default/locale - wb: [420] 87 bytes
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-locale: SUCCESS: config-locale ran successfully
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module set-passwords (<module 'cloudinit.config.cc_set_passwords' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_set_passwords.py'>) with frequency once-per-instance
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-set-passwords: running config-set-passwords with frequency once-per-instance
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_set_passwords - wb: [420] 24 bytes
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-set-passwords using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_set_passwords'>)
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-set-passwords: SUCCESS: config-set-passwords ran successfully
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module grub-dpkg (<module 'cloudinit.config.cc_grub_dpkg' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_grub_dpkg.py'>) with frequency once-per-instance
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-grub-dpkg: running config-grub-dpkg with frequency once-per-instance
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_grub_dpkg - wb: [420] 25 bytes
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-grub-dpkg using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_grub_dpkg'>)
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] cc_grub_dpkg.py[DEBUG]: Setting grub debconf-set-selections with '/dev/vda','false'
Sep 30 17:32:42 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['debconf-set-selections'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-grub-dpkg: SUCCESS: config-grub-dpkg ran successfully
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module apt-pipelining (<module 'cloudinit.config.cc_apt_pipelining' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_pipelining.py'>) with frequency once-per-instance
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-apt-pipelining: running config-apt-pipelining with frequency once-per-instance
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_apt_pipelining - wb: [420] 25 bytes
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-pipelining using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_apt_pipelining'>)
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/apt.conf.d/90cloud-init-pipelining - wb: [420] 80 bytes
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] cc_apt_pipelining.py[DEBUG]: Wrote /etc/apt/apt.conf.d/90cloud-init-pipelining with apt pipeline depth setting 0
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-apt-pipelining: SUCCESS: config-apt-pipelining ran successfully
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module apt-configure (<module 'cloudinit.config.cc_apt_configure' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_apt_configure.py'>) with frequency once-per-instance
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-apt-configure: running config-apt-configure with frequency once-per-instance
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_apt_configure - wb: [420] 24 bytes
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-apt-configure using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_apt_configure'>)
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: handling apt (module apt-configure) with apt config '{}'
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['lsb_release', '--all'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: got primary mirror: None
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: got security mirror: None
Sep 30 17:32:43 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] __init__.py[DEBUG]: filtered distro mirror info: {'primary': 'http://nova.clouds.archive.ubuntu.com/ubuntu/', 'security': 'http://security.ubuntu.com/ubuntu'}
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Apt Mirror info: {'MIRROR': 'http://nova.clouds.archive.ubuntu.com/ubuntu/', 'primary': 'http://nova.clouds.archive.ubuntu.com/ubuntu/', 'SECURITY': 'http://security.ubuntu.com/ubuntu', 'PRIMARY': 'http://nova.clouds.archive.ubuntu.com/ubuntu/', 'security': 'http://security.ubuntu.com/ubuntu'}
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: debconf_selections was not set in config
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[INFO]: No custom template provided, fall back to builtin
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/cloud/templates/sources.list.ubuntu.tmpl (quiet=False)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 2841 bytes from /etc/cloud/templates/sources.list.ubuntu.tmpl
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /etc/apt/sources.list - wb: [420] 3329 bytes
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['dpkg', '--print-architecture'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_multiverse_i18n_Translation-en to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_multiverse_i18n_Translation-en
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_universe_i18n_Translation-en to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_universe_i18n_Translation-en
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety-updates_InRelease to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety-updates_InRelease
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_universe_binary-amd64_Packages to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_universe_binary-amd64_Packages
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_InRelease to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_InRelease
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_restricted_binary-amd64_Packages to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_restricted_binary-amd64_Packages
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety-backports_InRelease to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety-backports_InRelease
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_main_i18n_Translation-en to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_main_i18n_Translation-en
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_multiverse_binary-amd64_Packages to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_multiverse_binary-amd64_Packages
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_restricted_i18n_Translation-en to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_restricted_i18n_Translation-en
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_apt_configure.py[DEBUG]: Renaming apt list /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_yakkety_main_binary-amd64_Packages to /var/lib/apt/lists/nova.clouds.archive.ubuntu.com_ubuntu_dists_yakkety_main_binary-amd64_Packages
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-apt-configure: SUCCESS: config-apt-configure ran successfully
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module timezone (<module 'cloudinit.config.cc_timezone' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_timezone.py'>) with frequency once-per-instance
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-timezone: running config-timezone with frequency once-per-instance
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_timezone - wb: [420] 25 bytes
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-timezone using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_timezone'>)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_timezone.py[DEBUG]: Skipping module named timezone, no 'timezone' specified
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-timezone: SUCCESS: config-timezone ran successfully
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module disable-ec2-metadata (<module 'cloudinit.config.cc_disable_ec2_metadata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_disable_ec2_metadata.py'>) with frequency always
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-disable-ec2-metadata: running config-disable-ec2-metadata with frequency always
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-disable-ec2-metadata using lock (<cloudinit.helpers.DummyLock object at 0x7fc6875b9dd8>)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_disable_ec2_metadata.py[DEBUG]: Skipping module named disable-ec2-metadata, disabling the ec2 route not enabled
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-disable-ec2-metadata: SUCCESS: config-disable-ec2-metadata ran successfully
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module runcmd (<module 'cloudinit.config.cc_runcmd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_runcmd.py'>) with frequency once-per-instance
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-runcmd: running config-runcmd with frequency once-per-instance
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_runcmd - wb: [420] 25 bytes
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-runcmd using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_runcmd'>)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Shellified 1 commands.
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/scripts/runcmd - wb: [448] 884 bytes
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-runcmd: SUCCESS: config-runcmd ran successfully
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module byobu (<module 'cloudinit.config.cc_byobu' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_byobu.py'>) with frequency once-per-instance
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-config/config-byobu: running config-byobu with frequency once-per-instance
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_byobu - wb: [420] 25 bytes
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-byobu using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_byobu'>)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] cc_byobu.py[DEBUG]: Skipping module named byobu, no 'byobu' values found
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config/config-byobu: SUCCESS: config-byobu ran successfully
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] main.py[DEBUG]: Ran 12 modules with 0 failures
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 14 bytes from /proc/uptime
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 8.001 seconds (8.00)
Sep 30 17:32:44 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-config: SUCCESS: running modules for config
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.8 running 'modules:final' at Fri, 30 Sep 2016 17:32:45 +0000. Up 135.60 seconds.
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Using distro class <class 'cloudinit.distros.ubuntu.Distro'>
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module snappy (<module 'cloudinit.config.cc_snappy' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_snappy.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-snappy: running config-snappy with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_snappy - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-snappy using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_snappy'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/system-image/channel.ini (quiet=True)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 0 bytes from /etc/system-image/channel.ini
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] cc_snappy.py[DEBUG]: snappy: 'auto' mode, and system not snappy
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-snappy: SUCCESS: config-snappy ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module package-update-upgrade-install (<module 'cloudinit.config.cc_package_update_upgrade_install' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_package_update_upgrade_install.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-package-update-upgrade-install: running config-package-update-upgrade-install with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_package_update_upgrade_install - wb: [420] 24 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-package-update-upgrade-install using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_package_update_upgrade_install'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-package-update-upgrade-install: SUCCESS: config-package-update-upgrade-install ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module fan (<module 'cloudinit.config.cc_fan' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_fan.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-fan: running config-fan with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_fan - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-fan using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_fan'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] cc_fan.py[DEBUG]: fan: no 'fan' config entry. disabling
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-fan: SUCCESS: config-fan ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module landscape (<module 'cloudinit.config.cc_landscape' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_landscape.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-landscape: running config-landscape with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_landscape - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-landscape using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_landscape'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-landscape: SUCCESS: config-landscape ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module lxd (<module 'cloudinit.config.cc_lxd' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_lxd.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-lxd: running config-lxd with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_lxd - wb: [420] 24 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-lxd using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_lxd'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] cc_lxd.py[DEBUG]: Skipping module named lxd, not present or disabled by cfg
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-lxd: SUCCESS: config-lxd ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module puppet (<module 'cloudinit.config.cc_puppet' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_puppet.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-puppet: running config-puppet with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_puppet - wb: [420] 24 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-puppet using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_puppet'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] cc_puppet.py[DEBUG]: Skipping module named puppet, no 'puppet' configuration found
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-puppet: SUCCESS: config-puppet ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module chef (<module 'cloudinit.config.cc_chef' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_chef.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-chef: running config-chef with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_chef - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-chef using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_chef'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] cc_chef.py[DEBUG]: Skipping module named chef, no 'chef' key in configuration
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-chef: SUCCESS: config-chef ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module salt-minion (<module 'cloudinit.config.cc_salt_minion' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_salt_minion.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-salt-minion: running config-salt-minion with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_salt_minion - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-salt-minion using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_salt_minion'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] cc_salt_minion.py[DEBUG]: Skipping module named salt-minion, no 'salt_minion' key in configuration
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-salt-minion: SUCCESS: config-salt-minion ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module mcollective (<module 'cloudinit.config.cc_mcollective' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_mcollective.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-mcollective: running config-mcollective with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_mcollective - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-mcollective using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_mcollective'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] cc_mcollective.py[DEBUG]: Skipping module named mcollective, no 'mcollective' key in configuration
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-mcollective: SUCCESS: config-mcollective ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module rightscale_userdata (<module 'cloudinit.config.cc_rightscale_userdata' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_rightscale_userdata.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-rightscale_userdata: running config-rightscale_userdata with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_rightscale_userdata - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-rightscale_userdata using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_rightscale_userdata'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] cc_rightscale_userdata.py[DEBUG]: Failed to get raw userdata in module rightscale_userdata
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-rightscale_userdata: SUCCESS: config-rightscale_userdata ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module scripts-vendor (<module 'cloudinit.config.cc_scripts_vendor' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_vendor.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-vendor: running config-scripts-vendor with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_scripts_vendor - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-vendor using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_scripts_vendor'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-vendor: SUCCESS: config-scripts-vendor ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module scripts-per-once (<module 'cloudinit.config.cc_scripts_per_once' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_once.py'>) with frequency once
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-per-once: running config-scripts-per-once with frequency once
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/sem/config_scripts_per_once.once - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-once using lock (<FileLock using file '/var/lib/cloud/sem/config_scripts_per_once.once'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-per-once: SUCCESS: config-scripts-per-once ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module scripts-per-boot (<module 'cloudinit.config.cc_scripts_per_boot' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_boot.py'>) with frequency always
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-per-boot: running config-scripts-per-boot with frequency always
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-boot using lock (<cloudinit.helpers.DummyLock object at 0x7f11f9f21b70>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-per-boot: SUCCESS: config-scripts-per-boot ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module scripts-per-instance (<module 'cloudinit.config.cc_scripts_per_instance' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_per_instance.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-per-instance: running config-scripts-per-instance with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_scripts_per_instance - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-per-instance using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_scripts_per_instance'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-per-instance: SUCCESS: config-scripts-per-instance ran successfully
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module scripts-user (<module 'cloudinit.config.cc_scripts_user' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_scripts_user.py'>) with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-scripts-user: running config-scripts-user with frequency once-per-instance
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_scripts_user - wb: [420] 25 bytes
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-scripts-user using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_scripts_user'>)
Sep 30 17:32:45 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['/var/lib/cloud/instance/scripts/runcmd'] with allowed return codes [0] (shell=False, capture=False)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-scripts-user: SUCCESS: config-scripts-user ran successfully
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module ssh-authkey-fingerprints (<module 'cloudinit.config.cc_ssh_authkey_fingerprints' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_ssh_authkey_fingerprints.py'>) with frequency once-per-instance
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-ssh-authkey-fingerprints: running config-ssh-authkey-fingerprints with frequency once-per-instance
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_ssh_authkey_fingerprints - wb: [420] 24 bytes
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-ssh-authkey-fingerprints using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_ssh_authkey_fingerprints'>)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /etc/ssh/sshd_config (quiet=False)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 2506 bytes from /etc/ssh/sshd_config
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /home/ubuntu/.ssh/authorized_keys (quiet=False)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 1250 bytes from /home/ubuntu/.ssh/authorized_keys
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-ssh-authkey-fingerprints: SUCCESS: config-ssh-authkey-fingerprints ran successfully
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module keys-to-console (<module 'cloudinit.config.cc_keys_to_console' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_keys_to_console.py'>) with frequency once-per-instance
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-keys-to-console: running config-keys-to-console with frequency once-per-instance
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_keys_to_console - wb: [420] 24 bytes
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-keys-to-console using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_keys_to_console'>)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Running command ['/usr/lib/cloud-init/write-ssh-key-fingerprints', '', 'ssh-dss'] with allowed return codes [0] (shell=False, capture=True)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-keys-to-console: SUCCESS: config-keys-to-console ran successfully
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module phone-home (<module 'cloudinit.config.cc_phone_home' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_phone_home.py'>) with frequency once-per-instance
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-phone-home: running config-phone-home with frequency once-per-instance
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_phone_home - wb: [420] 25 bytes
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-phone-home using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_phone_home'>)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] cc_phone_home.py[DEBUG]: Skipping module named phone-home, no 'phone_home' configuration found
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-phone-home: SUCCESS: config-phone-home ran successfully
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module final-message (<module 'cloudinit.config.cc_final_message' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_final_message.py'>) with frequency always
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-final-message: running config-final-message with frequency always
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-final-message using lock (<cloudinit.helpers.DummyLock object at 0x7f11f9edda58>)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 14 bytes from /proc/uptime
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Cloud-init v. 0.7.8 finished at Fri, 30 Sep 2016 17:32:56 +0000. Datasource DataSourceOpenStack [net,ver=2]. Up 146.79 seconds
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instance/boot-finished - wb: [420] 52 bytes
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-final-message: SUCCESS: config-final-message ran successfully
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] stages.py[DEBUG]: Running module power-state-change (<module 'cloudinit.config.cc_power_state_change' from '/usr/lib/python3/dist-packages/cloudinit/config/cc_power_state_change.py'>) with frequency once-per-instance
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: start: modules-final/config-power-state-change: running config-power-state-change with frequency once-per-instance
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Writing to /var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_power_state_change - wb: [420] 25 bytes
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] helpers.py[DEBUG]: Running config-power-state-change using lock (<FileLock using file '/var/lib/cloud/instances/279164e5-eac0-484a-805f-df5faa0ebd63/sem/config_power_state_change'>)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] cc_power_state_change.py[DEBUG]: no power_state provided. doing nothing
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final/config-power-state-change: SUCCESS: config-power-state-change ran successfully
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] main.py[DEBUG]: Ran 20 modules with 0 failures
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Creating symbolic link from '/run/cloud-init/result.json' => '../../var/lib/cloud/data/result.json'
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Reading from /proc/uptime (quiet=False)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: Read 14 bytes from /proc/uptime
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] util.py[DEBUG]: cloud-init mode 'modules' took 11.218 seconds (11.22)
Sep 30 17:32:56 yakkety-20160930-172959 [CLOUDINIT] handlers.py[DEBUG]: finish: modules-final: SUCCESS: running modules for final
|