Eucalyptus on Eucalyptus

Eucalyptus ユーザのみなさんこんにちは、これは Eucalyptus Advent Calendar 2014 の23日目のエントリです。

昨日のエントリは @MayumiK0 さんの連投エントリ「Eucalyptusの効能」でした。一見するとネタ投稿のように見えますが、ネタだけでなく技術的なこともバッチリ書かれてて、さすが @MayumiK0 さんです。

Eucalyptus Advent Calendar 2014 に参加してくださった OpenStacker や CloudStacker のつわものどもが Eucalyptus のインストールに挑んで敗れ、挙句に「Eucalyptus のインストールが簡単ってイメージあるー?それどこ情報?どこ情報よー?」って言っている状況に対し、本当に Eucalyptus のインストールが難しいのかを検証してみようかと思います。というのも、今回の各 Advent Calendar で OpenStack のインストールCloudStack のインストールWakame-VDC のインストール を全てやっている日本 Eucalyptus ユーザ会が Eucalyptus のインストールを試すことで真にインストールが簡単なのはどれかが証明できるのではないでしょうか?(異論は認めないのが大人の流儀)。ということで、本日のエントリは「Eucalyptus on Eucalyptus」です。

と、大見得切ってみましたが、インスタンスの起動には失敗する未来が待っていること確実です。というのも、Eucalyptus は CentOS 6.x で動くのですが、Eucalyptus on Eucalyptus ということは Eucalyptus が対応するハイパーバイザ on ハイパーバイザということになり、一番手軽に Eucalyptus をインストールしようとすると faststart を利用することになり、そうすると KVM on KVM という構成になり、つまり nested KVM の機能が必須となります。

しかし一方で CentOS 6.x のカーネルでは nested KVM がサポートされておりませんので、これは動かないことが間違いないのですが前述のとおり OpenStack も CloudStack も Wakame-VDC も同様の構成で実施したので、まさかここで下段 Eucalyptus のカーネルを CentOS の xen4 リポジトリに登録されている kernel-3.10 を使って成功させるなんていうアンフェアなことはできません。できません、できません、そんなことはできません。

ということで、失敗間違いないけどやってみます。

使用するインスタンスの情報は以下のとおり。インスタンスタイプは m2.2xlarge でして今回の環境ですと

[root@euca4 ~]# euca-describe-instance-types m2.2xlarge
INSTANCETYPE    Name        CPUs  Memory (MiB)  Disk (GiB)
INSTANCETYPE    m2.2xlarge     2          4096          30

というスペックです。

で、faststart のページ を見るといつの間にか「CentOS 6.6 で叩けよな」って書いてあります。そんな馬鹿な…いつの間にそんなことに…。まーどうせ失敗する流れなので CentOS 6.5 のまま実行します。

あ、ちなみに本当は 12/02 の @giraffeforestg さんのエントリ を見てトラップは避けるべきなのですが、先に散っていった OpenStacker や CloudStacker に敬意を表し、何も事前準備なしに faststart のインストールコマンドを叩きます。だって faststart のページにも「最初にこれやっとけ」的な記述がないし、そんな記述しないから OpenStacker や CloudStacker に「Eucalyptus マジ難ぃ〜」とか言われちゃうんです。

        *'``・* 。
        |     `*。
       ,。∩      *    もうどうにでもな~れ
      + (´・ω・`) *。+゚
      `*。 ヽ、  つ *゚*
       `・+。*・' ゚⊃ +゚
       ☆   ∪~ 。*゚
        `・+。*・ ゚

ぽちっとな。

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
[root@ip-192-168-122-235 ~]# bash <(curl -Ls eucalyptus.com/install)
NOTE: if you're running on a laptop, you might want to make sure that
you have turned off sleep/ACPI in your BIOS.  If the laptop goes to sleep,
virtual machines could terminate.

Continue? [Y/n]
y

[Precheck] Checking root
[Precheck] OK, running as root

[Precheck] Checking curl version
[Precheck] OK, curl is up to date

WARNING: we recommend at least 100G of disk space available
in /var for a Eucalyptus Faststart installation.  Running with
less disk space may result in issues with image and volume
management, and may dramatically reduce the number of instances
your cloud can run simultaneously.

Your free space is: 3.0G

Continue? [y/N]
y
パッケージ eucalyptus はインストールされていません。
[Precheck] Checking OS
[Precheck] OK, OS is supported

パッケージ PackageKit はインストールされていません。
パッケージ NetworkManager はインストールされていません。
[Precheck] Checking hardware virtualization
=====
[FATAL] Processor doesn't support virtualization

Your processor doesn't appear to support virtualization.
Eucalyptus requires virtualization to be enabled on your system.
Please check your BIOS settings, or install Eucalyptus on a
system that supports virtualization.

はい、そうですね。怒られますよねー。

少しだけ悪あがきしてみますか…。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
[root@ip-192-168-122-235 ~]# curl -Ls eucalyptus.com/install > faststart.install.sh
[root@ip-192-168-122-235 ~]# sed -i -e "s/vmx/hypervisor/" faststart.install.sh
[root@ip-192-168-122-235 ~]# chmod +x faststart.install.sh 
[root@ip-192-168-122-235 ~]# ./faststart.install.sh 
NOTE: if you're running on a laptop, you might want to make sure that
you have turned off sleep/ACPI in your BIOS.  If the laptop goes to sleep,
virtual machines could terminate.

Continue? [Y/n]
y

[Precheck] Checking root
[Precheck] OK, running as root

[Precheck] Checking curl version
[Precheck] OK, curl is up to date

WARNING: we recommend at least 100G of disk space available
in /var for a Eucalyptus Faststart installation.  Running with
less disk space may result in issues with image and volume
management, and may dramatically reduce the number of instances
your cloud can run simultaneously.

Your free space is: 3.0G

Continue? [y/N]
y
パッケージ eucalyptus はインストールされていません。
[Precheck] Checking OS
[Precheck] OK, OS is supported

パッケージ PackageKit はインストールされていません。
パッケージ NetworkManager はインストールされていません。
[Precheck] Checking hardware virtualization
[Precheck] OK, processor supports virtualization

[Precheck] Checking if Chef Client is installed
which: no chef-solo in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
=====
[INFO] Chef not found. Installing Chef Client


  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 18285  100 18285    0     0  10634      0  0:00:01  0:00:01 --:--:-- 29731
警告: /tmp/install.sh.1398/chef-12.0.3-1.x86_64.rpm: ヘッダ V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
[Precheck] OK, Chef Client is installed

[Precheck] Identifying primary network interface
wlan0: error fetching interface information: Device not found
em1: error fetching interface information: Device not found
Active network interface eth0 found
[Precheck] OK, network interfaces checked.

BOOTPROTO="dhcp"
=====
WARNING: we recommend configuring Eucalypus servers to use
a static IP address. This system is configured to use DHCP,
which will cause problems if you lose the DHCP lease for this
system.

Continue anyway? [y/N]
y
[Precheck] OK, running a full update of the OS. This could take a bit; please wait.
To see the update in progress, run the following command in another terminal:

  tail -f /var/log/euca-install-12.23.2014-14.49.16.log

[Precheck] Package update in progress...
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.fairway.ne.jp
 * epel: ftp.riken.jp
 * extras: mirror.fairway.ne.jp
 * updates: mirror.fairway.ne.jp
Setting up Update Process
Resolving Dependencies
--> Running transaction check
---> Package PyYAML.x86_64 0:3.10-3.el6 will be updated
---> Package PyYAML.x86_64 0:3.10-3.1.el6 will be an update
---> Package audit.x86_64 0:2.2-4.el6_5 will be updated
---> Package audit.x86_64 0:2.3.7-5.el6 will be an update
---> Package audit-libs.x86_64 0:2.2-4.el6_5 will be updated
---> Package audit-libs.x86_64 0:2.3.7-5.el6 will be an update
---> Package audit-libs-python.x86_64 0:2.2-4.el6_5 will be updated
---> Package audit-libs-python.x86_64 0:2.3.7-5.el6 will be an update
---> Package authconfig.x86_64 0:6.1.12-13.el6 will be updated
---> Package authconfig.x86_64 0:6.1.12-19.el6 will be an update
---> Package bash.x86_64 0:4.1.2-15.el6_4 will be updated
---> Package bash.x86_64 0:4.1.2-29.el6 will be an update
---> Package binutils.x86_64 0:2.20.51.0.2-5.36.el6 will be updated
---> Package binutils.x86_64 0:2.20.51.0.2-5.42.el6 will be an update
---> Package ca-certificates.noarch 0:2013.1.94-65.0.el6 will be updated
---> Package ca-certificates.noarch 0:2014.1.98-65.1.el6 will be an update
---> Package centos-release.x86_64 0:6-5.el6.centos.11.1 will be updated
---> Package centos-release.x86_64 0:6-6.el6.centos.12.2 will be an update
---> Package cloud-init.noarch 0:0.7.4-2.el6 will be obsoleted
---> Package cloud-init.x86_64 0:0.7.5-10.el6.centos.2 will be obsoleting
--> Processing Dependency: python-oauth for package: cloud-init-0.7.5-10.el6.centos.2.x86_64
---> Package coreutils.x86_64 0:8.4-31.el6 will be updated
---> Package coreutils.x86_64 0:8.4-37.el6 will be an update
---> Package coreutils-libs.x86_64 0:8.4-31.el6 will be updated
---> Package coreutils-libs.x86_64 0:8.4-37.el6 will be an update
---> Package cpio.x86_64 0:2.10-11.el6_3 will be updated
---> Package cpio.x86_64 0:2.10-12.el6_5 will be an update
---> Package cryptsetup-luks.x86_64 0:1.2.0-7.el6 will be updated
---> Package cryptsetup-luks.x86_64 0:1.2.0-11.el6 will be an update
---> Package cryptsetup-luks-libs.x86_64 0:1.2.0-7.el6 will be updated
---> Package cryptsetup-luks-libs.x86_64 0:1.2.0-11.el6 will be an update
---> Package curl.x86_64 0:7.19.7-37.el6_4 will be updated
---> Package curl.x86_64 0:7.19.7-40.el6_6.3 will be an update
---> Package cyrus-sasl.x86_64 0:2.1.23-13.el6_3.1 will be updated
---> Package cyrus-sasl.x86_64 0:2.1.23-15.el6_6.1 will be an update
---> Package cyrus-sasl-lib.x86_64 0:2.1.23-13.el6_3.1 will be updated
---> Package cyrus-sasl-lib.x86_64 0:2.1.23-15.el6_6.1 will be an update
---> Package device-mapper.x86_64 0:1.02.79-8.el6 will be updated
---> Package device-mapper.x86_64 0:1.02.90-2.el6_6.1 will be an update
---> Package device-mapper-event.x86_64 0:1.02.79-8.el6 will be updated
---> Package device-mapper-event.x86_64 0:1.02.90-2.el6_6.1 will be an update
---> Package device-mapper-event-libs.x86_64 0:1.02.79-8.el6 will be updated
---> Package device-mapper-event-libs.x86_64 0:1.02.90-2.el6_6.1 will be an update
---> Package device-mapper-libs.x86_64 0:1.02.79-8.el6 will be updated
---> Package device-mapper-libs.x86_64 0:1.02.90-2.el6_6.1 will be an update
---> Package device-mapper-multipath.x86_64 0:0.4.9-72.el6 will be updated
---> Package device-mapper-multipath.x86_64 0:0.4.9-80.el6_6.1 will be an update
---> Package device-mapper-multipath-libs.x86_64 0:0.4.9-72.el6 will be updated
---> Package device-mapper-multipath-libs.x86_64 0:0.4.9-80.el6_6.1 will be an update
---> Package device-mapper-persistent-data.x86_64 0:0.2.8-2.el6 will be updated
---> Package device-mapper-persistent-data.x86_64 0:0.3.2-1.el6 will be an update
---> Package dhclient.x86_64 12:4.1.1-38.P1.el6.centos will be updated
---> Package dhclient.x86_64 12:4.1.1-43.P1.el6.centos will be an update
---> Package dhcp-common.x86_64 12:4.1.1-38.P1.el6.centos will be updated
---> Package dhcp-common.x86_64 12:4.1.1-43.P1.el6.centos will be an update
---> Package dracut.noarch 0:004-335.el6 will be updated
---> Package dracut.noarch 0:004-356.el6 will be an update
---> Package dracut-kernel.noarch 0:004-335.el6 will be updated
---> Package dracut-kernel.noarch 0:004-356.el6 will be an update
---> Package e2fsprogs.x86_64 0:1.41.12-18.el6 will be updated
---> Package e2fsprogs.x86_64 0:1.41.12-21.el6 will be an update
---> Package e2fsprogs-libs.x86_64 0:1.41.12-18.el6 will be updated
---> Package e2fsprogs-libs.x86_64 0:1.41.12-21.el6 will be an update
---> Package elfutils-libelf.x86_64 0:0.152-1.el6 will be updated
---> Package elfutils-libelf.x86_64 0:0.158-3.2.el6 will be an update
---> Package ethtool.x86_64 2:3.5-1.el6 will be updated
---> Package ethtool.x86_64 2:3.5-5.el6 will be an update
---> Package file.x86_64 0:5.04-15.el6 will be updated
---> Package file.x86_64 0:5.04-21.el6 will be an update
---> Package file-libs.x86_64 0:5.04-15.el6 will be updated
---> Package file-libs.x86_64 0:5.04-21.el6 will be an update
---> Package glib2.x86_64 0:2.26.1-3.el6 will be updated
---> Package glib2.x86_64 0:2.28.8-4.el6 will be an update
---> Package glibc.x86_64 0:2.12-1.132.el6 will be updated
---> Package glibc.x86_64 0:2.12-1.149.el6 will be an update
---> Package glibc-common.x86_64 0:2.12-1.132.el6 will be updated
---> Package glibc-common.x86_64 0:2.12-1.149.el6 will be an update
---> Package gnupg2.x86_64 0:2.0.14-6.el6_4 will be updated
---> Package gnupg2.x86_64 0:2.0.14-8.el6 will be an update
---> Package grep.x86_64 0:2.6.3-4.el6 will be updated
---> Package grep.x86_64 0:2.6.3-6.el6 will be an update
---> Package grub.x86_64 1:0.97-83.el6 will be updated
---> Package grub.x86_64 1:0.97-93.el6 will be an update
---> Package grubby.x86_64 0:7.0.15-5.el6 will be updated
---> Package grubby.x86_64 0:7.0.15-7.el6 will be an update
---> Package gzip.x86_64 0:1.3.12-19.el6_4 will be updated
---> Package gzip.x86_64 0:1.3.12-22.el6 will be an update
---> Package hwdata.noarch 0:0.233-9.1.el6 will be updated
---> Package hwdata.noarch 0:0.233-11.1.el6 will be an update
---> Package initscripts.x86_64 0:9.03.40-2.el6.centos will be updated
---> Package initscripts.x86_64 0:9.03.46-1.el6.centos.1 will be an update
---> Package iproute.x86_64 0:2.6.32-31.el6 will be updated
---> Package iproute.x86_64 0:2.6.32-33.el6_6 will be an update
---> Package iptables.x86_64 0:1.4.7-11.el6 will be updated
---> Package iptables.x86_64 0:1.4.7-14.el6 will be an update
---> Package iptables-ipv6.x86_64 0:1.4.7-11.el6 will be updated
---> Package iptables-ipv6.x86_64 0:1.4.7-14.el6 will be an update
---> Package iscsi-initiator-utils.x86_64 0:6.2.0.873-10.el6 will be updated
---> Package iscsi-initiator-utils.x86_64 0:6.2.0.873-13.el6 will be an update
---> Package kernel.x86_64 0:2.6.32-504.3.3.el6 will be installed
---> Package kernel-firmware.noarch 0:2.6.32-431.el6 will be updated
---> Package kernel-firmware.noarch 0:2.6.32-504.3.3.el6 will be an update
---> Package keyutils-libs.x86_64 0:1.4-4.el6 will be updated
---> Package keyutils-libs.x86_64 0:1.4-5.el6 will be an update
---> Package kpartx.x86_64 0:0.4.9-72.el6 will be updated
---> Package kpartx.x86_64 0:0.4.9-80.el6_6.1 will be an update
---> Package krb5-libs.x86_64 0:1.10.3-10.el6_4.6 will be updated
---> Package krb5-libs.x86_64 0:1.10.3-33.el6 will be an update
---> Package less.x86_64 0:436-10.el6 will be updated
---> Package less.x86_64 0:436-13.el6 will be an update
---> Package libblkid.x86_64 0:2.17.2-12.14.el6 will be updated
---> Package libblkid.x86_64 0:2.17.2-12.18.el6 will be an update
---> Package libcgroup.x86_64 0:0.40.rc1-5.el6_5.1 will be updated
---> Package libcgroup.x86_64 0:0.40.rc1-15.el6_6 will be an update
---> Package libcom_err.x86_64 0:1.41.12-18.el6 will be updated
---> Package libcom_err.x86_64 0:1.41.12-21.el6 will be an update
---> Package libcurl.x86_64 0:7.19.7-37.el6_4 will be updated
---> Package libcurl.x86_64 0:7.19.7-40.el6_6.3 will be an update
---> Package libdrm.x86_64 0:2.4.45-2.el6 will be updated
---> Package libdrm.x86_64 0:2.4.52-4.el6 will be an update
---> Package libgcc.x86_64 0:4.4.7-4.el6 will be updated
---> Package libgcc.x86_64 0:4.4.7-11.el6 will be an update
---> Package libpciaccess.x86_64 0:0.13.1-2.el6 will be updated
---> Package libpciaccess.x86_64 0:0.13.3-0.1.el6 will be an update
---> Package libselinux.x86_64 0:2.0.94-5.3.el6_4.1 will be updated
---> Package libselinux.x86_64 0:2.0.94-5.8.el6 will be an update
---> Package libselinux-python.x86_64 0:2.0.94-5.3.el6_4.1 will be updated
---> Package libselinux-python.x86_64 0:2.0.94-5.8.el6 will be an update
---> Package libselinux-utils.x86_64 0:2.0.94-5.3.el6_4.1 will be updated
---> Package libselinux-utils.x86_64 0:2.0.94-5.8.el6 will be an update
---> Package libss.x86_64 0:1.41.12-18.el6 will be updated
---> Package libss.x86_64 0:1.41.12-21.el6 will be an update
---> Package libstdc++.x86_64 0:4.4.7-4.el6 will be updated
---> Package libstdc++.x86_64 0:4.4.7-11.el6 will be an update
---> Package libtasn1.x86_64 0:2.3-3.el6_2.1 will be updated
---> Package libtasn1.x86_64 0:2.3-6.el6_5 will be an update
---> Package libudev.x86_64 0:147-2.51.el6 will be updated
---> Package libudev.x86_64 0:147-2.57.el6 will be an update
---> Package libuuid.x86_64 0:2.17.2-12.14.el6 will be updated
---> Package libuuid.x86_64 0:2.17.2-12.18.el6 will be an update
---> Package libxml2.x86_64 0:2.7.6-14.el6 will be updated
---> Package libxml2.x86_64 0:2.7.6-17.el6_6.1 will be an update
---> Package lvm2.x86_64 0:2.02.100-8.el6 will be updated
---> Package lvm2.x86_64 0:2.02.111-2.el6_6.1 will be an update
---> Package lvm2-libs.x86_64 0:2.02.100-8.el6 will be updated
---> Package lvm2-libs.x86_64 0:2.02.111-2.el6_6.1 will be an update
---> Package mdadm.x86_64 0:3.2.6-7.el6 will be updated
---> Package mdadm.x86_64 0:3.3-6.el6_6.1 will be an update
---> Package module-init-tools.x86_64 0:3.9-21.el6_4 will be updated
---> Package module-init-tools.x86_64 0:3.9-24.el6 will be an update
---> Package nspr.x86_64 0:4.10.0-1.el6 will be updated
---> Package nspr.x86_64 0:4.10.6-1.el6_5 will be an update
---> Package nss.x86_64 0:3.15.1-15.el6 will be updated
---> Package nss.x86_64 0:3.16.2.3-3.el6_6 will be an update
---> Package nss-softokn.x86_64 0:3.14.3-9.el6 will be updated
---> Package nss-softokn.x86_64 0:3.14.3-18.el6_6 will be an update
---> Package nss-softokn-freebl.x86_64 0:3.14.3-9.el6 will be updated
---> Package nss-softokn-freebl.x86_64 0:3.14.3-18.el6_6 will be an update
---> Package nss-sysinit.x86_64 0:3.15.1-15.el6 will be updated
---> Package nss-sysinit.x86_64 0:3.16.2.3-3.el6_6 will be an update
---> Package nss-tools.x86_64 0:3.15.1-15.el6 will be updated
---> Package nss-tools.x86_64 0:3.16.2.3-3.el6_6 will be an update
---> Package nss-util.x86_64 0:3.15.1-3.el6 will be updated
---> Package nss-util.x86_64 0:3.16.2.3-2.el6_6 will be an update
---> Package ntp.x86_64 0:4.2.6p5-1.el6.centos will be updated
---> Package ntp.x86_64 0:4.2.6p5-2.el6.centos will be an update
---> Package ntpdate.x86_64 0:4.2.6p5-1.el6.centos will be updated
---> Package ntpdate.x86_64 0:4.2.6p5-2.el6.centos will be an update
---> Package openldap.x86_64 0:2.4.23-32.el6_4.1 will be updated
---> Package openldap.x86_64 0:2.4.39-8.el6 will be an update
---> Package openssh.x86_64 0:5.3p1-94.el6 will be updated
---> Package openssh.x86_64 0:5.3p1-104.el6_6.1 will be an update
---> Package openssh-clients.x86_64 0:5.3p1-94.el6 will be updated
---> Package openssh-clients.x86_64 0:5.3p1-104.el6_6.1 will be an update
---> Package openssh-server.x86_64 0:5.3p1-94.el6 will be updated
---> Package openssh-server.x86_64 0:5.3p1-104.el6_6.1 will be an update
---> Package openssl.x86_64 0:1.0.1e-15.el6 will be updated
---> Package openssl.x86_64 0:1.0.1e-30.el6_6.4 will be an update
---> Package p11-kit.x86_64 0:0.18.5-2.el6 will be updated
---> Package p11-kit.x86_64 0:0.18.5-2.el6_5.2 will be an update
---> Package p11-kit-trust.x86_64 0:0.18.5-2.el6 will be updated
---> Package p11-kit-trust.x86_64 0:0.18.5-2.el6_5.2 will be an update
---> Package pam.x86_64 0:1.1.1-17.el6 will be updated
---> Package pam.x86_64 0:1.1.1-20.el6 will be an update
---> Package pciutils-libs.x86_64 0:3.1.10-2.el6 will be updated
---> Package pciutils-libs.x86_64 0:3.1.10-4.el6 will be an update
---> Package plymouth.x86_64 0:0.8.3-27.el6.centos will be updated
---> Package plymouth.x86_64 0:0.8.3-27.el6.centos.1 will be an update
---> Package plymouth-core-libs.x86_64 0:0.8.3-27.el6.centos will be updated
---> Package plymouth-core-libs.x86_64 0:0.8.3-27.el6.centos.1 will be an update
---> Package plymouth-scripts.x86_64 0:0.8.3-27.el6.centos will be updated
---> Package plymouth-scripts.x86_64 0:0.8.3-27.el6.centos.1 will be an update
---> Package policycoreutils.x86_64 0:2.0.83-19.39.el6 will be updated
---> Package policycoreutils.x86_64 0:2.0.83-19.47.el6_6.1 will be an update
---> Package policycoreutils-python.x86_64 0:2.0.83-19.39.el6 will be updated
---> Package policycoreutils-python.x86_64 0:2.0.83-19.47.el6_6.1 will be an update
---> Package procmail.x86_64 0:3.22-25.1.el6 will be updated
---> Package procmail.x86_64 0:3.22-25.1.el6_5.1 will be an update
---> Package procps.x86_64 0:3.2.8-25.el6 will be updated
---> Package procps.x86_64 0:3.2.8-30.el6 will be an update
---> Package psmisc.x86_64 0:22.6-15.el6_0.1 will be updated
---> Package psmisc.x86_64 0:22.6-19.el6_5 will be an update
---> Package python.x86_64 0:2.6.6-51.el6 will be updated
---> Package python.x86_64 0:2.6.6-52.el6 will be an update
---> Package python-argparse.noarch 0:1.2.1-2.el6 will be updated
---> Package python-argparse.noarch 0:1.2.1-2.el6.centos will be an update
---> Package python-backports.x86_64 0:1.0-3.el6 will be updated
---> Package python-backports.x86_64 0:1.0-3.el6.centos will be an update
---> Package python-backports-ssl_match_hostname.noarch 0:3.4.0.2-1.el6 will be updated
---> Package python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el6.centos will be an update
---> Package python-boto.noarch 0:2.27.0-1.el6 will be updated
---> Package python-boto.noarch 0:2.34.0-4.el6 will be an update
--> Processing Dependency: python-rsa for package: python-boto-2.34.0-4.el6.noarch
---> Package python-chardet.noarch 0:2.0.1-1.el6 will be updated
---> Package python-chardet.noarch 0:2.0.1-1.el6.centos will be an update
---> Package python-jsonpatch.noarch 0:1.2-2.el6 will be updated
---> Package python-jsonpatch.noarch 0:1.2-2.el6.centos will be an update
---> Package python-jsonpointer.noarch 0:1.0-3.el6 will be updated
---> Package python-jsonpointer.noarch 0:1.0-3.el6.centos will be an update
---> Package python-libs.x86_64 0:2.6.6-51.el6 will be updated
---> Package python-libs.x86_64 0:2.6.6-52.el6 will be an update
---> Package python-ordereddict.noarch 0:1.1-2.el6 will be updated
---> Package python-ordereddict.noarch 0:1.1-2.el6.centos will be an update
---> Package python-prettytable.noarch 0:0.7.2-1.el6 will be updated
---> Package python-prettytable.noarch 0:0.7.2-1.el6.centos will be an update
---> Package python-requests.noarch 0:1.1.0-4.el6 will be updated
---> Package python-requests.noarch 0:1.1.0-4.el6.centos will be an update
---> Package python-six.noarch 0:1.6.1-1.el6 will be updated
---> Package python-six.noarch 0:1.7.3-1.el6.centos will be an update
---> Package python-urllib3.noarch 0:1.5-7.el6 will be updated
---> Package python-urllib3.noarch 0:1.5-7.el6.centos will be an update
---> Package rpm.x86_64 0:4.8.0-37.el6 will be updated
---> Package rpm.x86_64 0:4.8.0-38.el6_6 will be an update
---> Package rpm-libs.x86_64 0:4.8.0-37.el6 will be updated
---> Package rpm-libs.x86_64 0:4.8.0-38.el6_6 will be an update
---> Package rpm-python.x86_64 0:4.8.0-37.el6 will be updated
---> Package rpm-python.x86_64 0:4.8.0-38.el6_6 will be an update
---> Package rsyslog.x86_64 0:5.8.10-8.el6 will be updated
---> Package rsyslog.x86_64 0:5.8.10-10.el6_6 will be an update
---> Package selinux-policy.noarch 0:3.7.19-231.el6 will be updated
---> Package selinux-policy.noarch 0:3.7.19-260.el6_6.1 will be an update
---> Package selinux-policy-targeted.noarch 0:3.7.19-231.el6 will be updated
---> Package selinux-policy-targeted.noarch 0:3.7.19-260.el6_6.1 will be an update
---> Package shadow-utils.x86_64 2:4.1.4.2-13.el6 will be updated
---> Package shadow-utils.x86_64 2:4.1.4.2-19.el6 will be an update
---> Package shared-mime-info.x86_64 0:0.70-4.el6 will be updated
---> Package shared-mime-info.x86_64 0:0.70-6.el6 will be an update
---> Package sudo.x86_64 0:1.8.6p3-12.el6 will be updated
---> Package sudo.x86_64 0:1.8.6p3-15.el6 will be an update
---> Package system-config-firewall-base.noarch 0:1.2.27-5.el6 will be updated
---> Package system-config-firewall-base.noarch 0:1.2.27-7.2.el6_6 will be an update
---> Package tzdata.noarch 0:2013g-1.el6 will be updated
---> Package tzdata.noarch 0:2014j-1.el6 will be an update
---> Package udev.x86_64 0:147-2.51.el6 will be updated
---> Package udev.x86_64 0:147-2.57.el6 will be an update
---> Package upstart.x86_64 0:0.6.5-12.el6_4.1 will be updated
---> Package upstart.x86_64 0:0.6.5-13.el6_5.3 will be an update
---> Package util-linux-ng.x86_64 0:2.17.2-12.14.el6 will be updated
---> Package util-linux-ng.x86_64 0:2.17.2-12.18.el6 will be an update
---> Package xfsprogs.x86_64 0:3.1.1-14.el6 will be updated
---> Package xfsprogs.x86_64 0:3.1.1-16.el6 will be an update
---> Package xz-libs.x86_64 0:4.999.9-0.3.beta.20091007git.el6 will be updated
---> Package xz-libs.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be an update
---> Package yum.noarch 0:3.2.29-40.el6.centos will be updated
---> Package yum.noarch 0:3.2.29-60.el6.centos will be an update
---> Package yum-plugin-fastestmirror.noarch 0:1.1.30-14.el6 will be updated
---> Package yum-plugin-fastestmirror.noarch 0:1.1.30-30.el6 will be an update
--> Running transaction check
---> Package python-oauth.noarch 0:1.0.1-1.el6.centos will be installed
---> Package python-rsa.noarch 0:3.1.1-5.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================
 Package                                   Arch         Version                                 Repository     Size
====================================================================================================================
Installing:
 cloud-init                                x86_64       0.7.5-10.el6.centos.2                   extras        432 k
     replacing  cloud-init.noarch 0.7.4-2.el6
 kernel                                    x86_64       2.6.32-504.3.3.el6                      updates        29 M
Updating:
 PyYAML                                    x86_64       3.10-3.1.el6                            updates       157 k
 audit                                     x86_64       2.3.7-5.el6                             base          208 k
 audit-libs                                x86_64       2.3.7-5.el6                             base           71 k
 audit-libs-python                         x86_64       2.3.7-5.el6                             base           62 k
 authconfig                                x86_64       6.1.12-19.el6                           base          377 k
 bash                                      x86_64       4.1.2-29.el6                            base          907 k
 binutils                                  x86_64       2.20.51.0.2-5.42.el6                    base          2.8 M
 ca-certificates                           noarch       2014.1.98-65.1.el6                      base          1.1 M
 centos-release                            x86_64       6-6.el6.centos.12.2                     base           21 k
 coreutils                                 x86_64       8.4-37.el6                              base          3.0 M
 coreutils-libs                            x86_64       8.4-37.el6                              base           50 k
 cpio                                      x86_64       2.10-12.el6_5                           base          192 k
 cryptsetup-luks                           x86_64       1.2.0-11.el6                            base           95 k
 cryptsetup-luks-libs                      x86_64       1.2.0-11.el6                            base           51 k
 curl                                      x86_64       7.19.7-40.el6_6.3                       updates       194 k
 cyrus-sasl                                x86_64       2.1.23-15.el6_6.1                       updates        78 k
 cyrus-sasl-lib                            x86_64       2.1.23-15.el6_6.1                       updates       136 k
 device-mapper                             x86_64       1.02.90-2.el6_6.1                       updates       173 k
 device-mapper-event                       x86_64       1.02.90-2.el6_6.1                       updates       122 k
 device-mapper-event-libs                  x86_64       1.02.90-2.el6_6.1                       updates       116 k
 device-mapper-libs                        x86_64       1.02.90-2.el6_6.1                       updates       218 k
 device-mapper-multipath                   x86_64       0.4.9-80.el6_6.1                        updates       122 k
 device-mapper-multipath-libs              x86_64       0.4.9-80.el6_6.1                        updates       189 k
 device-mapper-persistent-data             x86_64       0.3.2-1.el6                             base          2.5 M
 dhclient                                  x86_64       12:4.1.1-43.P1.el6.centos               base          318 k
 dhcp-common                               x86_64       12:4.1.1-43.P1.el6.centos               base          143 k
 dracut                                    noarch       004-356.el6                             base          123 k
 dracut-kernel                             noarch       004-356.el6                             base           25 k
 e2fsprogs                                 x86_64       1.41.12-21.el6                          base          553 k
 e2fsprogs-libs                            x86_64       1.41.12-21.el6                          base          121 k
 elfutils-libelf                           x86_64       0.158-3.2.el6                           base          182 k
 ethtool                                   x86_64       2:3.5-5.el6                             base          101 k
 file                                      x86_64       5.04-21.el6                             base           47 k
 file-libs                                 x86_64       5.04-21.el6                             base          313 k
 glib2                                     x86_64       2.28.8-4.el6                            base          1.7 M
 glibc                                     x86_64       2.12-1.149.el6                          base          3.8 M
 glibc-common                              x86_64       2.12-1.149.el6                          base           14 M
 gnupg2                                    x86_64       2.0.14-8.el6                            base          1.6 M
 grep                                      x86_64       2.6.3-6.el6                             base          229 k
 grub                                      x86_64       1:0.97-93.el6                           base          936 k
 grubby                                    x86_64       7.0.15-7.el6                            base           43 k
 gzip                                      x86_64       1.3.12-22.el6                           base          116 k
 hwdata                                    noarch       0.233-11.1.el6                          base          1.2 M
 initscripts                               x86_64       9.03.46-1.el6.centos.1                  updates       943 k
 iproute                                   x86_64       2.6.32-33.el6_6                         updates       365 k
 iptables                                  x86_64       1.4.7-14.el6                            base          252 k
 iptables-ipv6                             x86_64       1.4.7-14.el6                            base          100 k
 iscsi-initiator-utils                     x86_64       6.2.0.873-13.el6                        base          719 k
 kernel-firmware                           noarch       2.6.32-504.3.3.el6                      updates        14 M
 keyutils-libs                             x86_64       1.4-5.el6                               base           20 k
 kpartx                                    x86_64       0.4.9-80.el6_6.1                        updates        62 k
 krb5-libs                                 x86_64       1.10.3-33.el6                           base          765 k
 less                                      x86_64       436-13.el6                              base          108 k
 libblkid                                  x86_64       2.17.2-12.18.el6                        base          116 k
 libcgroup                                 x86_64       0.40.rc1-15.el6_6                       updates       129 k
 libcom_err                                x86_64       1.41.12-21.el6                          base           37 k
 libcurl                                   x86_64       7.19.7-40.el6_6.3                       updates       166 k
 libdrm                                    x86_64       2.4.52-4.el6                            base          123 k
 libgcc                                    x86_64       4.4.7-11.el6                            base          102 k
 libpciaccess                              x86_64       0.13.3-0.1.el6                          base           24 k
 libselinux                                x86_64       2.0.94-5.8.el6                          base          108 k
 libselinux-python                         x86_64       2.0.94-5.8.el6                          base          203 k
 libselinux-utils                          x86_64       2.0.94-5.8.el6                          base           82 k
 libss                                     x86_64       1.41.12-21.el6                          base           41 k
 libstdc++                                 x86_64       4.4.7-11.el6                            base          294 k
 libtasn1                                  x86_64       2.3-6.el6_5                             base          238 k
 libudev                                   x86_64       147-2.57.el6                            base           75 k
 libuuid                                   x86_64       2.17.2-12.18.el6                        base           69 k
 libxml2                                   x86_64       2.7.6-17.el6_6.1                        updates       801 k
 lvm2                                      x86_64       2.02.111-2.el6_6.1                      updates       816 k
 lvm2-libs                                 x86_64       2.02.111-2.el6_6.1                      updates       901 k
 mdadm                                     x86_64       3.3-6.el6_6.1                           updates       341 k
 module-init-tools                         x86_64       3.9-24.el6                              base          465 k
 nspr                                      x86_64       4.10.6-1.el6_5                          base          113 k
 nss                                       x86_64       3.16.2.3-3.el6_6                        updates       834 k
 nss-softokn                               x86_64       3.14.3-18.el6_6                         updates       261 k
 nss-softokn-freebl                        x86_64       3.14.3-18.el6_6                         updates       164 k
 nss-sysinit                               x86_64       3.16.2.3-3.el6_6                        updates        44 k
 nss-tools                                 x86_64       3.16.2.3-3.el6_6                        updates       427 k
 nss-util                                  x86_64       3.16.2.3-2.el6_6                        updates        66 k
 ntp                                       x86_64       4.2.6p5-2.el6.centos                    updates       593 k
 ntpdate                                   x86_64       4.2.6p5-2.el6.centos                    updates        75 k
 openldap                                  x86_64       2.4.39-8.el6                            base          280 k
 openssh                                   x86_64       5.3p1-104.el6_6.1                       updates       272 k
 openssh-clients                           x86_64       5.3p1-104.el6_6.1                       updates       437 k
 openssh-server                            x86_64       5.3p1-104.el6_6.1                       updates       321 k
 openssl                                   x86_64       1.0.1e-30.el6_6.4                       updates       1.5 M
 p11-kit                                   x86_64       0.18.5-2.el6_5.2                        base           94 k
 p11-kit-trust                             x86_64       0.18.5-2.el6_5.2                        base           71 k
 pam                                       x86_64       1.1.1-20.el6                            base          659 k
 pciutils-libs                             x86_64       3.1.10-4.el6                            base           34 k
 plymouth                                  x86_64       0.8.3-27.el6.centos.1                   base           89 k
 plymouth-core-libs                        x86_64       0.8.3-27.el6.centos.1                   base           88 k
 plymouth-scripts                          x86_64       0.8.3-27.el6.centos.1                   base           31 k
 policycoreutils                           x86_64       2.0.83-19.47.el6_6.1                    updates       650 k
 policycoreutils-python                    x86_64       2.0.83-19.47.el6_6.1                    updates       346 k
 procmail                                  x86_64       3.22-25.1.el6_5.1                       base          162 k
 procps                                    x86_64       3.2.8-30.el6                            base          214 k
 psmisc                                    x86_64       22.6-19.el6_5                           base           81 k
 python                                    x86_64       2.6.6-52.el6                            base           74 k
 python-argparse                           noarch       1.2.1-2.el6.centos                      extras         48 k
 python-backports                          x86_64       1.0-3.el6.centos                        extras        5.3 k
 python-backports-ssl_match_hostname       noarch       3.4.0.2-4.el6.centos                    extras         13 k
 python-boto                               noarch       2.34.0-4.el6                            epel          1.7 M
 python-chardet                            noarch       2.0.1-1.el6.centos                      extras        225 k
 python-jsonpatch                          noarch       1.2-2.el6.centos                        extras         14 k
 python-jsonpointer                        noarch       1.0-3.el6.centos                        extras        9.3 k
 python-libs                               x86_64       2.6.6-52.el6                            base          5.3 M
 python-ordereddict                        noarch       1.1-2.el6.centos                        extras        7.7 k
 python-prettytable                        noarch       0.7.2-1.el6.centos                      extras         37 k
 python-requests                           noarch       1.1.0-4.el6.centos                      extras         71 k
 python-six                                noarch       1.7.3-1.el6.centos                      extras         27 k
 python-urllib3                            noarch       1.5-7.el6.centos                        extras         41 k
 rpm                                       x86_64       4.8.0-38.el6_6                          updates       901 k
 rpm-libs                                  x86_64       4.8.0-38.el6_6                          updates       313 k
 rpm-python                                x86_64       4.8.0-38.el6_6                          updates        57 k
 rsyslog                                   x86_64       5.8.10-10.el6_6                         updates       650 k
 selinux-policy                            noarch       3.7.19-260.el6_6.1                      updates       863 k
 selinux-policy-targeted                   noarch       3.7.19-260.el6_6.1                      updates       3.0 M
 shadow-utils                              x86_64       2:4.1.4.2-19.el6                        base          899 k
 shared-mime-info                          x86_64       0.70-6.el6                              base          209 k
 sudo                                      x86_64       1.8.6p3-15.el6                          base          704 k
 system-config-firewall-base               noarch       1.2.27-7.2.el6_6                        updates       434 k
 tzdata                                    noarch       2014j-1.el6                             updates       445 k
 udev                                      x86_64       147-2.57.el6                            base          349 k
 upstart                                   x86_64       0.6.5-13.el6_5.3                        base          177 k
 util-linux-ng                             x86_64       2.17.2-12.18.el6                        base          1.6 M
 xfsprogs                                  x86_64       3.1.1-16.el6                            base          724 k
 xz-libs                                   x86_64       4.999.9-0.5.beta.20091007git.el6        base           89 k
 yum                                       noarch       3.2.29-60.el6.centos                    base          1.0 M
 yum-plugin-fastestmirror                  noarch       1.1.30-30.el6                           base           31 k
Installing for dependencies:
 python-oauth                              noarch       1.0.1-1.el6.centos                      extras         17 k
 python-rsa                                noarch       3.1.1-5.el6                             epel           60 k

Transaction Summary
====================================================================================================================
Install       4 Package(s)
Upgrade     131 Package(s)

Total download size: 118 M
Downloading Packages:
(1/135): PyYAML-3.10-3.1.el6.x86_64.rpm                                                      | 157 kB     00:00     
(2/135): audit-2.3.7-5.el6.x86_64.rpm                                                        | 208 kB     00:00     
(3/135): audit-libs-2.3.7-5.el6.x86_64.rpm                                                   |  71 kB     00:00     
(4/135): audit-libs-python-2.3.7-5.el6.x86_64.rpm                                            |  62 kB     00:00     
(5/135): authconfig-6.1.12-19.el6.x86_64.rpm                                                 | 377 kB     00:01     
(6/135): bash-4.1.2-29.el6.x86_64.rpm                                                        | 907 kB     00:02     
(7/135): binutils-2.20.51.0.2-5.42.el6.x86_64.rpm                                            | 2.8 MB     00:09     
(8/135): ca-certificates-2014.1.98-65.1.el6.noarch.rpm                                       | 1.1 MB     00:04     
(9/135): centos-release-6-6.el6.centos.12.2.x86_64.rpm                                       |  21 kB     00:00     
(10/135): cloud-init-0.7.5-10.el6.centos.2.x86_64.rpm                                        | 432 kB     00:01     
(11/135): coreutils-8.4-37.el6.x86_64.rpm                                                    | 3.0 MB     00:10     
(12/135): coreutils-libs-8.4-37.el6.x86_64.rpm                                               |  50 kB     00:00     
(13/135): cpio-2.10-12.el6_5.x86_64.rpm                                                      | 192 kB     00:00     
(14/135): cryptsetup-luks-1.2.0-11.el6.x86_64.rpm                                            |  95 kB     00:00     
(15/135): cryptsetup-luks-libs-1.2.0-11.el6.x86_64.rpm                                       |  51 kB     00:00     
(16/135): curl-7.19.7-40.el6_6.3.x86_64.rpm                                                  | 194 kB     00:00     
(17/135): cyrus-sasl-2.1.23-15.el6_6.1.x86_64.rpm                                            |  78 kB     00:00     
(18/135): cyrus-sasl-lib-2.1.23-15.el6_6.1.x86_64.rpm                                        | 136 kB     00:00     
(19/135): device-mapper-1.02.90-2.el6_6.1.x86_64.rpm                                         | 173 kB     00:00     
(20/135): device-mapper-event-1.02.90-2.el6_6.1.x86_64.rpm                                   | 122 kB     00:00     
(21/135): device-mapper-event-libs-1.02.90-2.el6_6.1.x86_64.rpm                              | 116 kB     00:00     
(22/135): device-mapper-libs-1.02.90-2.el6_6.1.x86_64.rpm                                    | 218 kB     00:00     
(23/135): device-mapper-multipath-0.4.9-80.el6_6.1.x86_64.rpm                                | 122 kB     00:00     
(24/135): device-mapper-multipath-libs-0.4.9-80.el6_6.1.x86_64.rpm                           | 189 kB     00:00     
(25/135): device-mapper-persistent-data-0.3.2-1.el6.x86_64.rpm                               | 2.5 MB     00:09     
(26/135): dhclient-4.1.1-43.P1.el6.centos.x86_64.rpm                                         | 318 kB     00:01     
(27/135): dhcp-common-4.1.1-43.P1.el6.centos.x86_64.rpm                                      | 143 kB     00:00     
(28/135): dracut-004-356.el6.noarch.rpm                                                      | 123 kB     00:00     
(29/135): dracut-kernel-004-356.el6.noarch.rpm                                               |  25 kB     00:00     
(30/135): e2fsprogs-1.41.12-21.el6.x86_64.rpm                                                | 553 kB     00:01     
(31/135): e2fsprogs-libs-1.41.12-21.el6.x86_64.rpm                                           | 121 kB     00:00     
(32/135): elfutils-libelf-0.158-3.2.el6.x86_64.rpm                                           | 182 kB     00:00     
(33/135): ethtool-3.5-5.el6.x86_64.rpm                                                       | 101 kB     00:00     
(34/135): file-5.04-21.el6.x86_64.rpm                                                        |  47 kB     00:00     
(35/135): file-libs-5.04-21.el6.x86_64.rpm                                                   | 313 kB     00:01     
(36/135): glib2-2.28.8-4.el6.x86_64.rpm                                                      | 1.7 MB     00:07     
(37/135): glibc-2.12-1.149.el6.x86_64.rpm                                                    | 3.8 MB     00:13     
(38/135): glibc-common-2.12-1.149.el6.x86_64.rpm                                             |  14 MB     00:48     
(39/135): gnupg2-2.0.14-8.el6.x86_64.rpm                                                     | 1.6 MB     00:05     
(40/135): grep-2.6.3-6.el6.x86_64.rpm                                                        | 229 kB     00:01     
(41/135): grub-0.97-93.el6.x86_64.rpm                                                        | 936 kB     00:03     
(42/135): grubby-7.0.15-7.el6.x86_64.rpm                                                     |  43 kB     00:00     
(43/135): gzip-1.3.12-22.el6.x86_64.rpm                                                      | 116 kB     00:00     
(44/135): hwdata-0.233-11.1.el6.noarch.rpm                                                   | 1.2 MB     00:03     
(45/135): initscripts-9.03.46-1.el6.centos.1.x86_64.rpm                                      | 943 kB     00:02     
(46/135): iproute-2.6.32-33.el6_6.x86_64.rpm                                                 | 365 kB     00:01     
(47/135): iptables-1.4.7-14.el6.x86_64.rpm                                                   | 252 kB     00:01     
(48/135): iptables-ipv6-1.4.7-14.el6.x86_64.rpm                                              | 100 kB     00:00     
(49/135): iscsi-initiator-utils-6.2.0.873-13.el6.x86_64.rpm                                  | 719 kB     00:02     
(50/135): kernel-2.6.32-504.3.3.el6.x86_64.rpm                                               |  29 MB     01:38     
(51/135): kernel-firmware-2.6.32-504.3.3.el6.noarch.rpm                                      |  14 MB     00:47     
(52/135): keyutils-libs-1.4-5.el6.x86_64.rpm                                                 |  20 kB     00:00     
(53/135): kpartx-0.4.9-80.el6_6.1.x86_64.rpm                                                 |  62 kB     00:00     
(54/135): krb5-libs-1.10.3-33.el6.x86_64.rpm                                                 | 765 kB     00:03     
(55/135): less-436-13.el6.x86_64.rpm                                                         | 108 kB     00:00     
(56/135): libblkid-2.17.2-12.18.el6.x86_64.rpm                                               | 116 kB     00:00     
(57/135): libcgroup-0.40.rc1-15.el6_6.x86_64.rpm                                             | 129 kB     00:00     
(58/135): libcom_err-1.41.12-21.el6.x86_64.rpm                                               |  37 kB     00:00     
(59/135): libcurl-7.19.7-40.el6_6.3.x86_64.rpm                                               | 166 kB     00:00     
(60/135): libdrm-2.4.52-4.el6.x86_64.rpm                                                     | 123 kB     00:00     
(61/135): libgcc-4.4.7-11.el6.x86_64.rpm                                                     | 102 kB     00:00     
(62/135): libpciaccess-0.13.3-0.1.el6.x86_64.rpm                                             |  24 kB     00:00     
(63/135): libselinux-2.0.94-5.8.el6.x86_64.rpm                                               | 108 kB     00:00     
(64/135): libselinux-python-2.0.94-5.8.el6.x86_64.rpm                                        | 203 kB     00:00     
(65/135): libselinux-utils-2.0.94-5.8.el6.x86_64.rpm                                         |  82 kB     00:00     
(66/135): libss-1.41.12-21.el6.x86_64.rpm                                                    |  41 kB     00:00     
(67/135): libstdc++-4.4.7-11.el6.x86_64.rpm                                                  | 294 kB     00:00     
(68/135): libtasn1-2.3-6.el6_5.x86_64.rpm                                                    | 238 kB     00:00     
(69/135): libudev-147-2.57.el6.x86_64.rpm                                                    |  75 kB     00:00     
(70/135): libuuid-2.17.2-12.18.el6.x86_64.rpm                                                |  69 kB     00:00     
(71/135): libxml2-2.7.6-17.el6_6.1.x86_64.rpm                                                | 801 kB     00:02     
(72/135): lvm2-2.02.111-2.el6_6.1.x86_64.rpm                                                 | 816 kB     00:02     
(73/135): lvm2-libs-2.02.111-2.el6_6.1.x86_64.rpm                                            | 901 kB     00:02     
(74/135): mdadm-3.3-6.el6_6.1.x86_64.rpm                                                     | 341 kB     00:01     
(75/135): module-init-tools-3.9-24.el6.x86_64.rpm                                            | 465 kB     00:01     
(76/135): nspr-4.10.6-1.el6_5.x86_64.rpm                                                     | 113 kB     00:00     
(77/135): nss-3.16.2.3-3.el6_6.x86_64.rpm                                                    | 834 kB     00:02     
(78/135): nss-softokn-3.14.3-18.el6_6.x86_64.rpm                                             | 261 kB     00:00     
(79/135): nss-softokn-freebl-3.14.3-18.el6_6.x86_64.rpm                                      | 164 kB     00:00     
(80/135): nss-sysinit-3.16.2.3-3.el6_6.x86_64.rpm                                            |  44 kB     00:00     
(81/135): nss-tools-3.16.2.3-3.el6_6.x86_64.rpm                                              | 427 kB     00:01     
(82/135): nss-util-3.16.2.3-2.el6_6.x86_64.rpm                                               |  66 kB     00:00     
(83/135): ntp-4.2.6p5-2.el6.centos.x86_64.rpm                                                | 593 kB     00:01     
(84/135): ntpdate-4.2.6p5-2.el6.centos.x86_64.rpm                                            |  75 kB     00:00     
(85/135): openldap-2.4.39-8.el6.x86_64.rpm                                                   | 280 kB     00:00     
(86/135): openssh-5.3p1-104.el6_6.1.x86_64.rpm                                               | 272 kB     00:00     
(87/135): openssh-clients-5.3p1-104.el6_6.1.x86_64.rpm                                       | 437 kB     00:01     
(88/135): openssh-server-5.3p1-104.el6_6.1.x86_64.rpm                                        | 321 kB     00:00     
(89/135): openssl-1.0.1e-30.el6_6.4.x86_64.rpm                                               | 1.5 MB     00:04     
(90/135): p11-kit-0.18.5-2.el6_5.2.x86_64.rpm                                                |  94 kB     00:00     
(91/135): p11-kit-trust-0.18.5-2.el6_5.2.x86_64.rpm                                          |  71 kB     00:00     
(92/135): pam-1.1.1-20.el6.x86_64.rpm                                                        | 659 kB     00:02     
(93/135): pciutils-libs-3.1.10-4.el6.x86_64.rpm                                              |  34 kB     00:00     
(94/135): plymouth-0.8.3-27.el6.centos.1.x86_64.rpm                                          |  89 kB     00:00     
(95/135): plymouth-core-libs-0.8.3-27.el6.centos.1.x86_64.rpm                                |  88 kB     00:00     
(96/135): plymouth-scripts-0.8.3-27.el6.centos.1.x86_64.rpm                                  |  31 kB     00:00     
(97/135): policycoreutils-2.0.83-19.47.el6_6.1.x86_64.rpm                                    | 650 kB     00:02     
(98/135): policycoreutils-python-2.0.83-19.47.el6_6.1.x86_64.rpm                             | 346 kB     00:01     
(99/135): procmail-3.22-25.1.el6_5.1.x86_64.rpm                                              | 162 kB     00:00     
(100/135): procps-3.2.8-30.el6.x86_64.rpm                                                    | 214 kB     00:00     
(101/135): psmisc-22.6-19.el6_5.x86_64.rpm                                                   |  81 kB     00:00     
(102/135): python-2.6.6-52.el6.x86_64.rpm                                                    |  74 kB     00:00     
(103/135): python-argparse-1.2.1-2.el6.centos.noarch.rpm                                     |  48 kB     00:00     
(104/135): python-backports-1.0-3.el6.centos.x86_64.rpm                                      | 5.3 kB     00:00     
(105/135): python-backports-ssl_match_hostname-3.4.0.2-4.el6.centos.noarch.rpm               |  13 kB     00:00     
(106/135): python-boto-2.34.0-4.el6.noarch.rpm                                               | 1.7 MB     00:01     
(107/135): python-chardet-2.0.1-1.el6.centos.noarch.rpm                                      | 225 kB     00:00     
(108/135): python-jsonpatch-1.2-2.el6.centos.noarch.rpm                                      |  14 kB     00:00     
(109/135): python-jsonpointer-1.0-3.el6.centos.noarch.rpm                                    | 9.3 kB     00:00     
(110/135): python-libs-2.6.6-52.el6.x86_64.rpm                                               | 5.3 MB     00:16     
(111/135): python-oauth-1.0.1-1.el6.centos.noarch.rpm                                        |  17 kB     00:00     
(112/135): python-ordereddict-1.1-2.el6.centos.noarch.rpm                                    | 7.7 kB     00:00     
(113/135): python-prettytable-0.7.2-1.el6.centos.noarch.rpm                                  |  37 kB     00:00     
(114/135): python-requests-1.1.0-4.el6.centos.noarch.rpm                                     |  71 kB     00:00     
(115/135): python-rsa-3.1.1-5.el6.noarch.rpm                                                 |  60 kB     00:00     
(116/135): python-six-1.7.3-1.el6.centos.noarch.rpm                                          |  27 kB     00:00     
(117/135): python-urllib3-1.5-7.el6.centos.noarch.rpm                                        |  41 kB     00:00     
(118/135): rpm-4.8.0-38.el6_6.x86_64.rpm                                                     | 901 kB     00:02     
(119/135): rpm-libs-4.8.0-38.el6_6.x86_64.rpm                                                | 313 kB     00:00     
(120/135): rpm-python-4.8.0-38.el6_6.x86_64.rpm                                              |  57 kB     00:00     
(121/135): rsyslog-5.8.10-10.el6_6.x86_64.rpm                                                | 650 kB     00:02     
(122/135): selinux-policy-3.7.19-260.el6_6.1.noarch.rpm                                      | 863 kB     00:02     
(123/135): selinux-policy-targeted-3.7.19-260.el6_6.1.noarch.rpm                             | 3.0 MB     00:09     
(124/135): shadow-utils-4.1.4.2-19.el6.x86_64.rpm                                            | 899 kB     00:02     
(125/135): shared-mime-info-0.70-6.el6.x86_64.rpm                                            | 209 kB     00:00     
(126/135): sudo-1.8.6p3-15.el6.x86_64.rpm                                                    | 704 kB     00:01     
(127/135): system-config-firewall-base-1.2.27-7.2.el6_6.noarch.rpm                           | 434 kB     00:01     
(128/135): tzdata-2014j-1.el6.noarch.rpm                                                     | 445 kB     00:01     
(129/135): udev-147-2.57.el6.x86_64.rpm                                                      | 349 kB     00:01     
(130/135): upstart-0.6.5-13.el6_5.3.x86_64.rpm                                               | 177 kB     00:00     
(131/135): util-linux-ng-2.17.2-12.18.el6.x86_64.rpm                                         | 1.6 MB     00:04     
(132/135): xfsprogs-3.1.1-16.el6.x86_64.rpm                                                  | 724 kB     00:02     
(133/135): xz-libs-4.999.9-0.5.beta.20091007git.el6.x86_64.rpm                               |  89 kB     00:00     
(134/135): yum-3.2.29-60.el6.centos.noarch.rpm                                               | 1.0 MB     00:03     
(135/135): yum-plugin-fastestmirror-1.1.30-30.el6.noarch.rpm                                 |  31 kB     00:00     
--------------------------------------------------------------------------------------------------------------------
Total                                                                               300 kB/s | 118 MB     06:43     
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Warning: RPMDB altered outside of yum.
  Updating   : libgcc-4.4.7-11.el6.x86_64                                                                     1/267 
  Updating   : tzdata-2014j-1.el6.noarch                                                                      2/267 
  Updating   : glibc-common-2.12-1.149.el6.x86_64                                                             3/267 
  Updating   : bash-4.1.2-29.el6.x86_64                                                                       4/267 
  Updating   : glibc-2.12-1.149.el6.x86_64                                                                    5/267 
  Updating   : nss-softokn-freebl-3.14.3-18.el6_6.x86_64                                                      6/267 
  Updating   : libselinux-2.0.94-5.8.el6.x86_64                                                               7/267 
  Updating   : libcom_err-1.41.12-21.el6.x86_64                                                               8/267 
  Updating   : nspr-4.10.6-1.el6_5.x86_64                                                                     9/267 
  Updating   : audit-libs-2.3.7-5.el6.x86_64                                                                 10/267 
  Updating   : 2:shadow-utils-4.1.4.2-19.el6.x86_64                                                          11/267 
  Updating   : nss-util-3.16.2.3-2.el6_6.x86_64                                                              12/267 
  Updating   : grep-2.6.3-6.el6.x86_64                                                                       13/267 
  Updating   : coreutils-libs-8.4-37.el6.x86_64                                                              14/267 
  Updating   : coreutils-8.4-37.el6.x86_64                                                                   15/267 
  Updating   : pam-1.1.1-20.el6.x86_64                                                                       16/267 
  Updating   : libuuid-2.17.2-12.18.el6.x86_64                                                               17/267 
  Updating   : libblkid-2.17.2-12.18.el6.x86_64                                                              18/267 
  Updating   : file-libs-5.04-21.el6.x86_64                                                                  19/267 
  Updating   : libudev-147-2.57.el6.x86_64                                                                   20/267 
  Updating   : elfutils-libelf-0.158-3.2.el6.x86_64                                                          21/267 
  Updating   : xz-libs-4.999.9-0.5.beta.20091007git.el6.x86_64                                               22/267 
  Updating   : plymouth-scripts-0.8.3-27.el6.centos.1.x86_64                                                 23/267 
  Updating   : nss-softokn-3.14.3-18.el6_6.x86_64                                                            24/267 
  Updating   : nss-3.16.2.3-3.el6_6.x86_64                                                                   25/267 
  Updating   : nss-sysinit-3.16.2.3-3.el6_6.x86_64                                                           26/267 
  Updating   : procps-3.2.8-30.el6.x86_64                                                                    27/267 
  Updating   : libselinux-utils-2.0.94-5.8.el6.x86_64                                                        28/267 
  Updating   : libtasn1-2.3-6.el6_5.x86_64                                                                   29/267 
  Updating   : p11-kit-0.18.5-2.el6_5.2.x86_64                                                               30/267 
  Updating   : cpio-2.10-12.el6_5.x86_64                                                                     31/267 
  Updating   : cyrus-sasl-lib-2.1.23-15.el6_6.1.x86_64                                                       32/267 
  Updating   : p11-kit-trust-0.18.5-2.el6_5.2.x86_64                                                         33/267 
  Updating   : ca-certificates-2014.1.98-65.1.el6.noarch                                                     34/267 
  Updating   : nss-tools-3.16.2.3-3.el6_6.x86_64                                                             35/267 
  Updating   : file-5.04-21.el6.x86_64                                                                       36/267 
  Updating   : upstart-0.6.5-13.el6_5.3.x86_64                                                               37/267 
  Updating   : libss-1.41.12-21.el6.x86_64                                                                   38/267 
  Updating   : e2fsprogs-libs-1.41.12-21.el6.x86_64                                                          39/267 
  Updating   : e2fsprogs-1.41.12-21.el6.x86_64                                                               40/267 
  Updating   : psmisc-22.6-19.el6_5.x86_64                                                                   41/267 
  Updating   : libstdc++-4.4.7-11.el6.x86_64                                                                 42/267 
  Updating   : device-mapper-persistent-data-0.3.2-1.el6.x86_64                                              43/267 
  Updating   : keyutils-libs-1.4-5.el6.x86_64                                                                44/267 
  Updating   : krb5-libs-1.10.3-33.el6.x86_64                                                                45/267 
  Updating   : openssl-1.0.1e-30.el6_6.4.x86_64                                                              46/267 
  Updating   : python-2.6.6-52.el6.x86_64                                                                    47/267 
  Updating   : python-libs-2.6.6-52.el6.x86_64                                                               48/267 
  Updating   : python-ordereddict-1.1-2.el6.centos.noarch                                                    49/267 
  Updating   : libselinux-python-2.0.94-5.8.el6.x86_64                                                       50/267 
  Updating   : libcurl-7.19.7-40.el6_6.3.x86_64                                                              51/267 
  Updating   : rpm-libs-4.8.0-38.el6_6.x86_64                                                                52/267 
  Updating   : curl-7.19.7-40.el6_6.3.x86_64                                                                 53/267 
  Updating   : rpm-4.8.0-38.el6_6.x86_64                                                                     54/267 
  Updating   : openldap-2.4.39-8.el6.x86_64                                                                  55/267 
  Updating   : rpm-python-4.8.0-38.el6_6.x86_64                                                              56/267 
  Updating   : yum-plugin-fastestmirror-1.1.30-30.el6.noarch                                                 57/267 
  Updating   : yum-3.2.29-60.el6.centos.noarch                                                               58/267 
  Updating   : PyYAML-3.10-3.1.el6.x86_64                                                                    59/267 
  Updating   : python-jsonpointer-1.0-3.el6.centos.noarch                                                    60/267 
  Updating   : python-jsonpatch-1.2-2.el6.centos.noarch                                                      61/267 
  Updating   : python-argparse-1.2.1-2.el6.centos.noarch                                                     62/267 
  Installing : python-rsa-3.1.1-5.el6.noarch                                                                 63/267 
  Updating   : python-six-1.7.3-1.el6.centos.noarch                                                          64/267 
  Updating   : audit-libs-python-2.3.7-5.el6.x86_64                                                          65/267 
  Updating   : python-prettytable-0.7.2-1.el6.centos.noarch                                                  66/267 
  Updating   : python-chardet-2.0.1-1.el6.centos.noarch                                                      67/267 
  Updating   : python-backports-1.0-3.el6.centos.x86_64                                                      68/267 
  Updating   : python-backports-ssl_match_hostname-3.4.0.2-4.el6.centos.noarch                               69/267 
  Updating   : python-urllib3-1.5-7.el6.centos.noarch                                                        70/267 
  Updating   : python-requests-1.1.0-4.el6.centos.noarch                                                     71/267 
  Updating   : python-boto-2.34.0-4.el6.noarch                                                               72/267 
  Installing : python-oauth-1.0.1-1.el6.centos.noarch                                                        73/267 
  Updating   : 2:ethtool-3.5-5.el6.x86_64                                                                    74/267 
  Updating   : plymouth-core-libs-0.8.3-27.el6.centos.1.x86_64                                               75/267 
  Updating   : libxml2-2.7.6-17.el6_6.1.x86_64                                                               76/267 
  Updating   : glib2-2.28.8-4.el6.x86_64                                                                     77/267 
  Updating   : shared-mime-info-0.70-6.el6.x86_64                                                            78/267 
  Updating   : grubby-7.0.15-7.el6.x86_64                                                                    79/267 
  Updating   : binutils-2.20.51.0.2-5.42.el6.x86_64                                                          80/267 
  Updating   : module-init-tools-3.9-24.el6.x86_64                                                           81/267 
  Updating   : hwdata-0.233-11.1.el6.noarch                                                                  82/267 
  Updating   : libpciaccess-0.13.3-0.1.el6.x86_64                                                            83/267 
  Updating   : less-436-13.el6.x86_64                                                                        84/267 
  Updating   : gzip-1.3.12-22.el6.x86_64                                                                     85/267 
  Updating   : centos-release-6-6.el6.centos.12.2.x86_64                                                     86/267 
  Updating   : iptables-1.4.7-14.el6.x86_64                                                                  87/267 
  Updating   : iproute-2.6.32-33.el6_6.x86_64                                                                88/267 
  Updating   : util-linux-ng-2.17.2-12.18.el6.x86_64                                                         89/267 
  Updating   : initscripts-9.03.46-1.el6.centos.1.x86_64                                                     90/267 
  Updating   : udev-147-2.57.el6.x86_64                                                                      91/267 
  Updating   : policycoreutils-2.0.83-19.47.el6_6.1.x86_64                                                   92/267 
  Updating   : device-mapper-libs-1.02.90-2.el6_6.1.x86_64                                                   93/267 
  Updating   : device-mapper-1.02.90-2.el6_6.1.x86_64                                                        94/267 
  Updating   : device-mapper-event-libs-1.02.90-2.el6_6.1.x86_64                                             95/267 
  Updating   : openssh-5.3p1-104.el6_6.1.x86_64                                                              96/267 
  Updating   : device-mapper-event-1.02.90-2.el6_6.1.x86_64                                                  97/267 
  Updating   : lvm2-libs-2.02.111-2.el6_6.1.x86_64                                                           98/267 
  Updating   : kpartx-0.4.9-80.el6_6.1.x86_64                                                                99/267 
  Updating   : device-mapper-multipath-libs-0.4.9-80.el6_6.1.x86_64                                         100/267 
  Updating   : cryptsetup-luks-libs-1.2.0-11.el6.x86_64                                                     101/267 
  Updating   : selinux-policy-3.7.19-260.el6_6.1.noarch                                                     102/267 
  Updating   : libdrm-2.4.52-4.el6.x86_64                                                                   103/267 
  Updating   : plymouth-0.8.3-27.el6.centos.1.x86_64                                                        104/267 
  Updating   : dracut-004-356.el6.noarch                                                                    105/267 
  Updating   : dracut-kernel-004-356.el6.noarch                                                             106/267 
  Updating   : rsyslog-5.8.10-10.el6_6.x86_64                                                               107/267 
  Updating   : libcgroup-0.40.rc1-15.el6_6.x86_64                                                           108/267 
  Updating   : policycoreutils-python-2.0.83-19.47.el6_6.1.x86_64                                           109/267 
  Updating   : ntpdate-4.2.6p5-2.el6.centos.x86_64                                                          110/267 
  Updating   : iptables-ipv6-1.4.7-14.el6.x86_64                                                            111/267 
  Updating   : 12:dhcp-common-4.1.1-43.P1.el6.centos.x86_64                                                 112/267 
  Updating   : kernel-firmware-2.6.32-504.3.3.el6.noarch                                                    113/267 
  Installing : kernel-2.6.32-504.3.3.el6.x86_64                                                             114/267 
  Updating   : 12:dhclient-4.1.1-43.P1.el6.centos.x86_64                                                    115/267 
  Updating   : system-config-firewall-base-1.2.27-7.2.el6_6.noarch                                          116/267 
  Updating   : ntp-4.2.6p5-2.el6.centos.x86_64                                                              117/267 
  Installing : cloud-init-0.7.5-10.el6.centos.2.x86_64                                                      118/267 
warning: /etc/cloud/cloud.cfg created as /etc/cloud/cloud.cfg.rpmnew
  Updating   : selinux-policy-targeted-3.7.19-260.el6_6.1.noarch                                            119/267 
  Updating   : cryptsetup-luks-1.2.0-11.el6.x86_64                                                          120/267 
  Updating   : device-mapper-multipath-0.4.9-80.el6_6.1.x86_64                                              121/267 
  Updating   : lvm2-2.02.111-2.el6_6.1.x86_64                                                               122/267 
  Updating   : openssh-server-5.3p1-104.el6_6.1.x86_64                                                      123/267 
  Updating   : openssh-clients-5.3p1-104.el6_6.1.x86_64                                                     124/267 
  Updating   : mdadm-3.3-6.el6_6.1.x86_64                                                                   125/267 
  Updating   : iscsi-initiator-utils-6.2.0.873-13.el6.x86_64                                                126/267 
  Updating   : cyrus-sasl-2.1.23-15.el6_6.1.x86_64                                                          127/267 
  Updating   : sudo-1.8.6p3-15.el6.x86_64                                                                   128/267 
  Updating   : gnupg2-2.0.14-8.el6.x86_64                                                                   129/267 
  Updating   : authconfig-6.1.12-19.el6.x86_64                                                              130/267 
  Updating   : 1:grub-0.97-93.el6.x86_64                                                                    131/267 
  Updating   : xfsprogs-3.1.1-16.el6.x86_64                                                                 132/267 
  Updating   : audit-2.3.7-5.el6.x86_64                                                                     133/267 
  Updating   : procmail-3.22-25.1.el6_5.1.x86_64                                                            134/267 
  Updating   : pciutils-libs-3.1.10-4.el6.x86_64                                                            135/267 
  Cleanup    : openssh-server-5.3p1-94.el6.x86_64                                                           136/267 
  Cleanup    : cloud-init-0.7.4-2.el6.noarch                                                                137/267 
  Cleanup    : cyrus-sasl-2.1.23-13.el6_3.1.x86_64                                                          138/267 
  Cleanup    : openssh-clients-5.3p1-94.el6.x86_64                                                          139/267 
  Cleanup    : openssh-5.3p1-94.el6.x86_64                                                                  140/267 
  Cleanup    : policycoreutils-python-2.0.83-19.39.el6.x86_64                                               141/267 
  Cleanup    : device-mapper-multipath-0.4.9-72.el6.x86_64                                                  142/267 
  Cleanup    : lvm2-2.02.100-8.el6.x86_64                                                                   143/267 
  Cleanup    : lvm2-libs-2.02.100-8.el6.x86_64                                                              144/267 
  Cleanup    : device-mapper-event-1.02.79-8.el6.x86_64                                                     145/267 
  Cleanup    : e2fsprogs-1.41.12-18.el6.x86_64                                                              146/267 
  Cleanup    : sudo-1.8.6p3-12.el6.x86_64                                                                   147/267 
  Cleanup    : rsyslog-5.8.10-8.el6.x86_64                                                                  148/267 
  Cleanup    : ntp-4.2.6p5-1.el6.centos.x86_64                                                              149/267 
  Cleanup    : iscsi-initiator-utils-6.2.0.873-10.el6.x86_64                                                150/267 
  Cleanup    : ntpdate-4.2.6p5-1.el6.centos.x86_64                                                          151/267 
  Cleanup    : authconfig-6.1.12-13.el6.x86_64                                                              152/267 
  Cleanup    : gnupg2-2.0.14-6.el6_4.x86_64                                                                 153/267 
  Cleanup    : 12:dhclient-4.1.1-38.P1.el6.centos.x86_64                                                    154/267 
  Cleanup    : xfsprogs-3.1.1-14.el6.x86_64                                                                 155/267 
  Cleanup    : python-requests-1.1.0-4.el6.noarch                                                           156/267 
  Cleanup    : python-urllib3-1.5-7.el6.noarch                                                              157/267 
  Cleanup    : system-config-firewall-base-1.2.27-5.el6.noarch                                              158/267 
  Cleanup    : selinux-policy-targeted-3.7.19-231.el6.noarch                                                159/267 
  Cleanup    : selinux-policy-3.7.19-231.el6.noarch                                                         160/267 
  Cleanup    : 1:grub-0.97-83.el6.x86_64                                                                    161/267 
  Cleanup    : python-backports-ssl_match_hostname-3.4.0.2-1.el6.noarch                                     162/267 
  Cleanup    : python-jsonpatch-1.2-2.el6.noarch                                                            163/267 
  Cleanup    : python-jsonpointer-1.0-3.el6.noarch                                                          164/267 
  Cleanup    : python-backports-1.0-3.el6.x86_64                                                            165/267 
  Cleanup    : python-ordereddict-1.1-2.el6.noarch                                                          166/267 
  Cleanup    : python-six-1.6.1-1.el6.noarch                                                                167/267 
  Cleanup    : python-chardet-2.0.1-1.el6.noarch                                                            168/267 
  Cleanup    : python-argparse-1.2.1-2.el6.noarch                                                           169/267 
  Cleanup    : python-boto-2.27.0-1.el6.noarch                                                              170/267 
  Cleanup    : python-prettytable-0.7.2-1.el6.noarch                                                        171/267 
  Cleanup    : yum-3.2.29-40.el6.centos.noarch                                                              172/267 
  Cleanup    : yum-plugin-fastestmirror-1.1.30-14.el6.noarch                                                173/267 
  Cleanup    : dracut-kernel-004-335.el6.noarch                                                             174/267 
  Cleanup    : dracut-004-335.el6.noarch                                                                    175/267 
  Cleanup    : rpm-python-4.8.0-37.el6.x86_64                                                               176/267 
  Cleanup    : plymouth-0.8.3-27.el6.centos.x86_64                                                          177/267 
  Cleanup    : iptables-ipv6-1.4.7-11.el6.x86_64                                                            178/267 
  Cleanup    : gzip-1.3.12-19.el6_4.x86_64                                                                  179/267 
  Cleanup    : device-mapper-persistent-data-0.2.8-2.el6.x86_64                                             180/267 
  Cleanup    : device-mapper-multipath-libs-0.4.9-72.el6.x86_64                                             181/267 
  Cleanup    : libcgroup-0.40.rc1-5.el6_5.1.x86_64                                                          182/267 
  Cleanup    : audit-2.2-4.el6_5.x86_64                                                                     183/267 
  Cleanup    : grubby-7.0.15-5.el6.x86_64                                                                   184/267 
  Cleanup    : libdrm-2.4.45-2.el6.x86_64                                                                   185/267 
  Cleanup    : file-5.04-15.el6.x86_64                                                                      186/267 
  Cleanup    : audit-libs-python-2.2-4.el6_5.x86_64                                                         187/267 
  Cleanup    : libselinux-python-2.0.94-5.3.el6_4.1.x86_64                                                  188/267 
  Cleanup    : PyYAML-3.10-3.el6.x86_64                                                                     189/267 
  Cleanup    : python-libs-2.6.6-51.el6.x86_64                                                              190/267 
  Cleanup    : python-2.6.6-51.el6.x86_64                                                                   191/267 
  Cleanup    : openssl-1.0.1e-15.el6.x86_64                                                                 192/267 
  Cleanup    : cryptsetup-luks-1.2.0-7.el6.x86_64                                                           193/267 
  Cleanup    : cryptsetup-luks-libs-1.2.0-7.el6.x86_64                                                      194/267 
  Cleanup    : mdadm-3.2.6-7.el6.x86_64                                                                     195/267 
  Cleanup    : ca-certificates-2013.1.94-65.0.el6.noarch                                                    196/267 
  Cleanup    : plymouth-scripts-0.8.3-27.el6.centos.x86_64                                                  197/267 
  Cleanup    : p11-kit-trust-0.18.5-2.el6.x86_64                                                            198/267 
  Cleanup    : p11-kit-0.18.5-2.el6.x86_64                                                                  199/267 
  Cleanup    : libpciaccess-0.13.1-2.el6.x86_64                                                             200/267 
  Cleanup    : libstdc++-4.4.7-4.el6.x86_64                                                                 201/267 
  Cleanup    : e2fsprogs-libs-1.41.12-18.el6.x86_64                                                         202/267 
  Cleanup    : libss-1.41.12-18.el6.x86_64                                                                  203/267 
  Cleanup    : device-mapper-event-libs-1.02.79-8.el6.x86_64                                                204/267 
  Cleanup    : kpartx-0.4.9-72.el6.x86_64                                                                   205/267 
  Cleanup    : device-mapper-1.02.79-8.el6.x86_64                                                           206/267 
  Cleanup    : device-mapper-libs-1.02.79-8.el6.x86_64                                                      207/267 
  Cleanup    : iproute-2.6.32-31.el6.x86_64                                                                 208/267 
  Cleanup    : iptables-1.4.7-11.el6.x86_64                                                                 209/267 
  Cleanup    : policycoreutils-2.0.83-19.39.el6.x86_64                                                      210/267 
  Cleanup    : util-linux-ng-2.17.2-12.14.el6.x86_64                                                        211/267 
  Cleanup    : udev-147-2.51.el6.x86_64                                                                     212/267 
  Cleanup    : initscripts-9.03.40-2.el6.centos.x86_64                                                      213/267 
  Cleanup    : rpm-libs-4.8.0-37.el6.x86_64                                                                 214/267 
  Cleanup    : rpm-4.8.0-37.el6.x86_64                                                                      215/267 
  Cleanup    : curl-7.19.7-37.el6_4.x86_64                                                                  216/267 
  Cleanup    : libcurl-7.19.7-37.el6_4.x86_64                                                               217/267 
  Cleanup    : openldap-2.4.23-32.el6_4.1.x86_64                                                            218/267 
  Cleanup    : nss-tools-3.15.1-15.el6.x86_64                                                               219/267 
  Cleanup    : nss-sysinit-3.15.1-15.el6.x86_64                                                             220/267 
  Cleanup    : nss-3.15.1-15.el6.x86_64                                                                     221/267 
  Cleanup    : nss-softokn-3.14.3-9.el6.x86_64                                                              222/267 
  Cleanup    : krb5-libs-1.10.3-10.el6_4.6.x86_64                                                           223/267 
  Cleanup    : nss-util-3.15.1-3.el6.x86_64                                                                 224/267 
  Cleanup    : shared-mime-info-0.70-4.el6.x86_64                                                           225/267 
  Cleanup    : glib2-2.26.1-3.el6.x86_64                                                                    226/267 
  Cleanup    : 2:shadow-utils-4.1.4.2-13.el6.x86_64                                                         227/267 
  Cleanup    : upstart-0.6.5-12.el6_4.1.x86_64                                                              228/267 
  Cleanup    : libblkid-2.17.2-12.14.el6.x86_64                                                             229/267 
  Cleanup    : psmisc-22.6-15.el6_0.1.x86_64                                                                230/267 
  Cleanup    : procps-3.2.8-25.el6.x86_64                                                                   231/267 
  Cleanup    : libselinux-utils-2.0.94-5.3.el6_4.1.x86_64                                                   232/267 
  Cleanup    : cpio-2.10-11.el6_3.x86_64                                                                    233/267 
  Cleanup    : less-436-10.el6.x86_64                                                                       234/267 
  Cleanup    : procmail-3.22-25.1.el6.x86_64                                                                235/267 
  Cleanup    : hwdata-0.233-9.1.el6.noarch                                                                  236/267 
  Cleanup    : module-init-tools-3.9-21.el6_4.x86_64                                                        237/267 
  Cleanup    : coreutils-libs-8.4-31.el6.x86_64                                                             238/267 
  Cleanup    : pam-1.1.1-17.el6.x86_64                                                                      239/267 
  Cleanup    : coreutils-8.4-31.el6.x86_64                                                                  240/267 
  Cleanup    : grep-2.6.3-4.el6.x86_64                                                                      241/267 
  Cleanup    : libselinux-2.0.94-5.3.el6_4.1.x86_64                                                         242/267 
  Cleanup    : binutils-2.20.51.0.2-5.36.el6.x86_64                                                         243/267 
  Cleanup    : audit-libs-2.2-4.el6_5.x86_64                                                                244/267 
  Cleanup    : libuuid-2.17.2-12.14.el6.x86_64                                                              245/267 
  Cleanup    : libxml2-2.7.6-14.el6.x86_64                                                                  246/267 
  Cleanup    : nspr-4.10.0-1.el6.x86_64                                                                     247/267 
  Cleanup    : libcom_err-1.41.12-18.el6.x86_64                                                             248/267 
  Cleanup    : keyutils-libs-1.4-4.el6.x86_64                                                               249/267 
  Cleanup    : cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64                                                      250/267 
  Cleanup    : elfutils-libelf-0.152-1.el6.x86_64                                                           251/267 
  Cleanup    : xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64                                              252/267 
  Cleanup    : file-libs-5.04-15.el6.x86_64                                                                 253/267 
  Cleanup    : 2:ethtool-3.5-1.el6.x86_64                                                                   254/267 
  Cleanup    : libudev-147-2.51.el6.x86_64                                                                  255/267 
  Cleanup    : libtasn1-2.3-3.el6_2.1.x86_64                                                                256/267 
  Cleanup    : plymouth-core-libs-0.8.3-27.el6.centos.x86_64                                                257/267 
  Cleanup    : pciutils-libs-3.1.10-2.el6.x86_64                                                            258/267 
  Cleanup    : centos-release-6-5.el6.centos.11.1.x86_64                                                    259/267 
  Cleanup    : 12:dhcp-common-4.1.1-38.P1.el6.centos.x86_64                                                 260/267 
  Cleanup    : kernel-firmware-2.6.32-431.el6.noarch                                                        261/267 
  Cleanup    : bash-4.1.2-15.el6_4.x86_64                                                                   262/267 
  Cleanup    : glibc-common-2.12-1.132.el6.x86_64                                                           263/267 
  Cleanup    : nss-softokn-freebl-3.14.3-9.el6.x86_64                                                       264/267 
  Cleanup    : glibc-2.12-1.132.el6.x86_64                                                                  265/267 
  Cleanup    : tzdata-2013g-1.el6.noarch                                                                    266/267 
  Cleanup    : libgcc-4.4.7-4.el6.x86_64                                                                    267/267 
  Verifying  : libstdc++-4.4.7-11.el6.x86_64                                                                  1/267 
  Verifying  : libcom_err-1.41.12-21.el6.x86_64                                                               2/267 
  Verifying  : libpciaccess-0.13.3-0.1.el6.x86_64                                                             3/267 
  Verifying  : libtasn1-2.3-6.el6_5.x86_64                                                                    4/267 
  Verifying  : nss-util-3.16.2.3-2.el6_6.x86_64                                                               5/267 
  Verifying  : nss-3.16.2.3-3.el6_6.x86_64                                                                    6/267 
  Verifying  : xfsprogs-3.1.1-16.el6.x86_64                                                                   7/267 
  Verifying  : iscsi-initiator-utils-6.2.0.873-13.el6.x86_64                                                  8/267 
  Verifying  : cpio-2.10-12.el6_5.x86_64                                                                      9/267 
  Verifying  : PyYAML-3.10-3.1.el6.x86_64                                                                    10/267 
  Verifying  : libblkid-2.17.2-12.18.el6.x86_64                                                              11/267 
  Verifying  : dracut-kernel-004-356.el6.noarch                                                              12/267 
  Verifying  : procmail-3.22-25.1.el6_5.1.x86_64                                                             13/267 
  Verifying  : policycoreutils-python-2.0.83-19.47.el6_6.1.x86_64                                            14/267 
  Verifying  : sudo-1.8.6p3-15.el6.x86_64                                                                    15/267 
  Verifying  : openssh-server-5.3p1-104.el6_6.1.x86_64                                                       16/267 
  Verifying  : openssl-1.0.1e-30.el6_6.4.x86_64                                                              17/267 
  Verifying  : policycoreutils-2.0.83-19.47.el6_6.1.x86_64                                                   18/267 
  Verifying  : kpartx-0.4.9-80.el6_6.1.x86_64                                                                19/267 
  Verifying  : keyutils-libs-1.4-5.el6.x86_64                                                                20/267 
  Verifying  : mdadm-3.3-6.el6_6.1.x86_64                                                                    21/267 
  Verifying  : 2:ethtool-3.5-5.el6.x86_64                                                                    22/267 
  Verifying  : python-jsonpointer-1.0-3.el6.centos.noarch                                                    23/267 
  Verifying  : device-mapper-libs-1.02.90-2.el6_6.1.x86_64                                                   24/267 
  Verifying  : iproute-2.6.32-33.el6_6.x86_64                                                                25/267 
  Verifying  : cyrus-sasl-lib-2.1.23-15.el6_6.1.x86_64                                                       26/267 
  Verifying  : cloud-init-0.7.5-10.el6.centos.2.x86_64                                                       27/267 
  Verifying  : pam-1.1.1-20.el6.x86_64                                                                       28/267 
  Verifying  : util-linux-ng-2.17.2-12.18.el6.x86_64                                                         29/267 
  Verifying  : system-config-firewall-base-1.2.27-7.2.el6_6.noarch                                           30/267 
  Verifying  : plymouth-core-libs-0.8.3-27.el6.centos.1.x86_64                                               31/267 
  Verifying  : libss-1.41.12-21.el6.x86_64                                                                   32/267 
  Verifying  : psmisc-22.6-19.el6_5.x86_64                                                                   33/267 
  Verifying  : libxml2-2.7.6-17.el6_6.1.x86_64                                                               34/267 
  Verifying  : yum-plugin-fastestmirror-1.1.30-30.el6.noarch                                                 35/267 
  Verifying  : device-mapper-event-1.02.90-2.el6_6.1.x86_64                                                  36/267 
  Verifying  : rsyslog-5.8.10-10.el6_6.x86_64                                                                37/267 
  Verifying  : rpm-libs-4.8.0-38.el6_6.x86_64                                                                38/267 
  Verifying  : pciutils-libs-3.1.10-4.el6.x86_64                                                             39/267 
  Verifying  : udev-147-2.57.el6.x86_64                                                                      40/267 
  Verifying  : initscripts-9.03.46-1.el6.centos.1.x86_64                                                     41/267 
  Verifying  : python-argparse-1.2.1-2.el6.centos.noarch                                                     42/267 
  Verifying  : p11-kit-trust-0.18.5-2.el6_5.2.x86_64                                                         43/267 
  Verifying  : elfutils-libelf-0.158-3.2.el6.x86_64                                                          44/267 
  Verifying  : kernel-firmware-2.6.32-504.3.3.el6.noarch                                                     45/267 
  Verifying  : grep-2.6.3-6.el6.x86_64                                                                       46/267 
  Verifying  : python-rsa-3.1.1-5.el6.noarch                                                                 47/267 
  Verifying  : lvm2-2.02.111-2.el6_6.1.x86_64                                                                48/267 
  Verifying  : kernel-2.6.32-504.3.3.el6.x86_64                                                              49/267 
  Verifying  : rpm-4.8.0-38.el6_6.x86_64                                                                     50/267 
  Verifying  : libselinux-2.0.94-5.8.el6.x86_64                                                              51/267 
  Verifying  : nss-softokn-freebl-3.14.3-18.el6_6.x86_64                                                     52/267 
  Verifying  : glib2-2.28.8-4.el6.x86_64                                                                     53/267 
  Verifying  : iptables-ipv6-1.4.7-14.el6.x86_64                                                             54/267 
  Verifying  : python-ordereddict-1.1-2.el6.centos.noarch                                                    55/267 
  Verifying  : iptables-1.4.7-14.el6.x86_64                                                                  56/267 
  Verifying  : nspr-4.10.6-1.el6_5.x86_64                                                                    57/267 
  Verifying  : libcgroup-0.40.rc1-15.el6_6.x86_64                                                            58/267 
  Verifying  : device-mapper-multipath-0.4.9-80.el6_6.1.x86_64                                               59/267 
  Verifying  : python-urllib3-1.5-7.el6.centos.noarch                                                        60/267 
  Verifying  : dracut-004-356.el6.noarch                                                                     61/267 
  Verifying  : libdrm-2.4.52-4.el6.x86_64                                                                    62/267 
  Verifying  : upstart-0.6.5-13.el6_5.3.x86_64                                                               63/267 
  Verifying  : openldap-2.4.39-8.el6.x86_64                                                                  64/267 
  Verifying  : shared-mime-info-0.70-6.el6.x86_64                                                            65/267 
  Verifying  : python-six-1.7.3-1.el6.centos.noarch                                                          66/267 
  Verifying  : coreutils-8.4-37.el6.x86_64                                                                   67/267 
  Verifying  : nss-softokn-3.14.3-18.el6_6.x86_64                                                            68/267 
  Verifying  : libuuid-2.17.2-12.18.el6.x86_64                                                               69/267 
  Verifying  : device-mapper-event-libs-1.02.90-2.el6_6.1.x86_64                                             70/267 
  Verifying  : audit-libs-python-2.3.7-5.el6.x86_64                                                          71/267 
  Verifying  : e2fsprogs-libs-1.41.12-21.el6.x86_64                                                          72/267 
  Verifying  : grubby-7.0.15-7.el6.x86_64                                                                    73/267 
  Verifying  : libselinux-python-2.0.94-5.8.el6.x86_64                                                       74/267 
  Verifying  : 12:dhclient-4.1.1-43.P1.el6.centos.x86_64                                                     75/267 
  Verifying  : python-prettytable-0.7.2-1.el6.centos.noarch                                                  76/267 
  Verifying  : libcurl-7.19.7-40.el6_6.3.x86_64                                                              77/267 
  Verifying  : device-mapper-multipath-libs-0.4.9-80.el6_6.1.x86_64                                          78/267 
  Verifying  : file-libs-5.04-21.el6.x86_64                                                                  79/267 
  Verifying  : gnupg2-2.0.14-8.el6.x86_64                                                                    80/267 
  Verifying  : libgcc-4.4.7-11.el6.x86_64                                                                    81/267 
  Verifying  : procps-3.2.8-30.el6.x86_64                                                                    82/267 
  Verifying  : rpm-python-4.8.0-38.el6_6.x86_64                                                              83/267 
  Verifying  : curl-7.19.7-40.el6_6.3.x86_64                                                                 84/267 
  Verifying  : plymouth-0.8.3-27.el6.centos.1.x86_64                                                         85/267 
  Verifying  : glibc-2.12-1.149.el6.x86_64                                                                   86/267 
  Verifying  : python-backports-ssl_match_hostname-3.4.0.2-4.el6.centos.noarch                               87/267 
  Verifying  : cyrus-sasl-2.1.23-15.el6_6.1.x86_64                                                           88/267 
  Verifying  : device-mapper-1.02.90-2.el6_6.1.x86_64                                                        89/267 
  Verifying  : glibc-common-2.12-1.149.el6.x86_64                                                            90/267 
  Verifying  : cryptsetup-luks-libs-1.2.0-11.el6.x86_64                                                      91/267 
  Verifying  : p11-kit-0.18.5-2.el6_5.2.x86_64                                                               92/267 
  Verifying  : python-2.6.6-52.el6.x86_64                                                                    93/267 
  Verifying  : krb5-libs-1.10.3-33.el6.x86_64                                                                94/267 
  Verifying  : 12:dhcp-common-4.1.1-43.P1.el6.centos.x86_64                                                  95/267 
  Verifying  : cryptsetup-luks-1.2.0-11.el6.x86_64                                                           96/267 
  Verifying  : audit-libs-2.3.7-5.el6.x86_64                                                                 97/267 
  Verifying  : coreutils-libs-8.4-37.el6.x86_64                                                              98/267 
  Verifying  : authconfig-6.1.12-19.el6.x86_64                                                               99/267 
  Verifying  : hwdata-0.233-11.1.el6.noarch                                                                 100/267 
  Verifying  : 2:shadow-utils-4.1.4.2-19.el6.x86_64                                                         101/267 
  Verifying  : python-jsonpatch-1.2-2.el6.centos.noarch                                                     102/267 
  Verifying  : ca-certificates-2014.1.98-65.1.el6.noarch                                                    103/267 
  Verifying  : xz-libs-4.999.9-0.5.beta.20091007git.el6.x86_64                                              104/267 
  Verifying  : python-chardet-2.0.1-1.el6.centos.noarch                                                     105/267 
  Verifying  : nss-sysinit-3.16.2.3-3.el6_6.x86_64                                                          106/267 
  Verifying  : libudev-147-2.57.el6.x86_64                                                                  107/267 
  Verifying  : nss-tools-3.16.2.3-3.el6_6.x86_64                                                            108/267 
  Verifying  : bash-4.1.2-29.el6.x86_64                                                                     109/267 
  Verifying  : libselinux-utils-2.0.94-5.8.el6.x86_64                                                       110/267 
  Verifying  : ntpdate-4.2.6p5-2.el6.centos.x86_64                                                          111/267 
  Verifying  : binutils-2.20.51.0.2-5.42.el6.x86_64                                                         112/267 
  Verifying  : gzip-1.3.12-22.el6.x86_64                                                                    113/267 
  Verifying  : python-boto-2.34.0-4.el6.noarch                                                              114/267 
  Verifying  : openssh-5.3p1-104.el6_6.1.x86_64                                                             115/267 
  Verifying  : openssh-clients-5.3p1-104.el6_6.1.x86_64                                                     116/267 
  Verifying  : selinux-policy-targeted-3.7.19-260.el6_6.1.noarch                                            117/267 
  Verifying  : file-5.04-21.el6.x86_64                                                                      118/267 
  Verifying  : module-init-tools-3.9-24.el6.x86_64                                                          119/267 
  Verifying  : e2fsprogs-1.41.12-21.el6.x86_64                                                              120/267 
  Verifying  : ntp-4.2.6p5-2.el6.centos.x86_64                                                              121/267 
  Verifying  : 1:grub-0.97-93.el6.x86_64                                                                    122/267 
  Verifying  : python-libs-2.6.6-52.el6.x86_64                                                              123/267 
  Verifying  : centos-release-6-6.el6.centos.12.2.x86_64                                                    124/267 
  Verifying  : selinux-policy-3.7.19-260.el6_6.1.noarch                                                     125/267 
  Verifying  : lvm2-libs-2.02.111-2.el6_6.1.x86_64                                                          126/267 
  Verifying  : device-mapper-persistent-data-0.3.2-1.el6.x86_64                                             127/267 
  Verifying  : python-backports-1.0-3.el6.centos.x86_64                                                     128/267 
  Verifying  : less-436-13.el6.x86_64                                                                       129/267 
  Verifying  : python-requests-1.1.0-4.el6.centos.noarch                                                    130/267 
  Verifying  : tzdata-2014j-1.el6.noarch                                                                    131/267 
  Verifying  : audit-2.3.7-5.el6.x86_64                                                                     132/267 
  Verifying  : python-oauth-1.0.1-1.el6.centos.noarch                                                       133/267 
  Verifying  : yum-3.2.29-60.el6.centos.noarch                                                              134/267 
  Verifying  : plymouth-scripts-0.8.3-27.el6.centos.1.x86_64                                                135/267 
  Verifying  : device-mapper-event-libs-1.02.79-8.el6.x86_64                                                136/267 
  Verifying  : pam-1.1.1-17.el6.x86_64                                                                      137/267 
  Verifying  : openssl-1.0.1e-15.el6.x86_64                                                                 138/267 
  Verifying  : rpm-python-4.8.0-37.el6.x86_64                                                               139/267 
  Verifying  : plymouth-scripts-0.8.3-27.el6.centos.x86_64                                                  140/267 
  Verifying  : procps-3.2.8-25.el6.x86_64                                                                   141/267 
  Verifying  : 2:ethtool-3.5-1.el6.x86_64                                                                   142/267 
  Verifying  : libstdc++-4.4.7-4.el6.x86_64                                                                 143/267 
  Verifying  : python-jsonpatch-1.2-2.el6.noarch                                                            144/267 
  Verifying  : kpartx-0.4.9-72.el6.x86_64                                                                   145/267 
  Verifying  : nss-tools-3.15.1-15.el6.x86_64                                                               146/267 
  Verifying  : libxml2-2.7.6-14.el6.x86_64                                                                  147/267 
  Verifying  : shared-mime-info-0.70-4.el6.x86_64                                                           148/267 
  Verifying  : binutils-2.20.51.0.2-5.36.el6.x86_64                                                         149/267 
  Verifying  : iptables-1.4.7-11.el6.x86_64                                                                 150/267 
  Verifying  : libcom_err-1.41.12-18.el6.x86_64                                                             151/267 
  Verifying  : module-init-tools-3.9-21.el6_4.x86_64                                                        152/267 
  Verifying  : device-mapper-persistent-data-0.2.8-2.el6.x86_64                                             153/267 
  Verifying  : nss-softokn-3.14.3-9.el6.x86_64                                                              154/267 
  Verifying  : krb5-libs-1.10.3-10.el6_4.6.x86_64                                                           155/267 
  Verifying  : cloud-init-0.7.4-2.el6.noarch                                                                156/267 
  Verifying  : dracut-kernel-004-335.el6.noarch                                                             157/267 
  Verifying  : cpio-2.10-11.el6_3.x86_64                                                                    158/267 
  Verifying  : cryptsetup-luks-libs-1.2.0-7.el6.x86_64                                                      159/267 
  Verifying  : cryptsetup-luks-1.2.0-7.el6.x86_64                                                           160/267 
  Verifying  : rpm-libs-4.8.0-37.el6.x86_64                                                                 161/267 
  Verifying  : nss-softokn-freebl-3.14.3-9.el6.x86_64                                                       162/267 
  Verifying  : less-436-10.el6.x86_64                                                                       163/267 
  Verifying  : python-prettytable-0.7.2-1.el6.noarch                                                        164/267 
  Verifying  : curl-7.19.7-37.el6_4.x86_64                                                                  165/267 
  Verifying  : python-boto-2.27.0-1.el6.noarch                                                              166/267 
  Verifying  : openssh-5.3p1-94.el6.x86_64                                                                  167/267 
  Verifying  : keyutils-libs-1.4-4.el6.x86_64                                                               168/267 
  Verifying  : mdadm-3.2.6-7.el6.x86_64                                                                     169/267 
  Verifying  : glibc-2.12-1.132.el6.x86_64                                                                  170/267 
  Verifying  : device-mapper-1.02.79-8.el6.x86_64                                                           171/267 
  Verifying  : cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64                                                      172/267 
  Verifying  : libselinux-2.0.94-5.3.el6_4.1.x86_64                                                         173/267 
  Verifying  : device-mapper-libs-1.02.79-8.el6.x86_64                                                      174/267 
  Verifying  : lvm2-libs-2.02.100-8.el6.x86_64                                                              175/267 
  Verifying  : plymouth-core-libs-0.8.3-27.el6.centos.x86_64                                                176/267 
  Verifying  : p11-kit-trust-0.18.5-2.el6.x86_64                                                            177/267 
  Verifying  : nss-sysinit-3.15.1-15.el6.x86_64                                                             178/267 
  Verifying  : libselinux-utils-2.0.94-5.3.el6_4.1.x86_64                                                   179/267 
  Verifying  : PyYAML-3.10-3.el6.x86_64                                                                     180/267 
  Verifying  : tzdata-2013g-1.el6.noarch                                                                    181/267 
  Verifying  : rsyslog-5.8.10-8.el6.x86_64                                                                  182/267 
  Verifying  : libtasn1-2.3-3.el6_2.1.x86_64                                                                183/267 
  Verifying  : python-urllib3-1.5-7.el6.noarch                                                              184/267 
  Verifying  : audit-2.2-4.el6_5.x86_64                                                                     185/267 
  Verifying  : openssh-clients-5.3p1-94.el6.x86_64                                                          186/267 
  Verifying  : ntpdate-4.2.6p5-1.el6.centos.x86_64                                                          187/267 
  Verifying  : util-linux-ng-2.17.2-12.14.el6.x86_64                                                        188/267 
  Verifying  : libdrm-2.4.45-2.el6.x86_64                                                                   189/267 
  Verifying  : audit-libs-2.2-4.el6_5.x86_64                                                                190/267 
  Verifying  : nspr-4.10.0-1.el6.x86_64                                                                     191/267 
  Verifying  : dracut-004-335.el6.noarch                                                                    192/267 
  Verifying  : p11-kit-0.18.5-2.el6.x86_64                                                                  193/267 
  Verifying  : python-ordereddict-1.1-2.el6.noarch                                                          194/267 
  Verifying  : udev-147-2.51.el6.x86_64                                                                     195/267 
  Verifying  : python-libs-2.6.6-51.el6.x86_64                                                              196/267 
  Verifying  : rpm-4.8.0-37.el6.x86_64                                                                      197/267 
  Verifying  : ntp-4.2.6p5-1.el6.centos.x86_64                                                              198/267 
  Verifying  : yum-3.2.29-40.el6.centos.noarch                                                              199/267 
  Verifying  : device-mapper-event-1.02.79-8.el6.x86_64                                                     200/267 
  Verifying  : glib2-2.26.1-3.el6.x86_64                                                                    201/267 
  Verifying  : nss-util-3.15.1-3.el6.x86_64                                                                 202/267 
  Verifying  : libgcc-4.4.7-4.el6.x86_64                                                                    203/267 
  Verifying  : e2fsprogs-1.41.12-18.el6.x86_64                                                              204/267 
  Verifying  : libblkid-2.17.2-12.14.el6.x86_64                                                             205/267 
  Verifying  : file-libs-5.04-15.el6.x86_64                                                                 206/267 
  Verifying  : audit-libs-python-2.2-4.el6_5.x86_64                                                         207/267 
  Verifying  : libselinux-python-2.0.94-5.3.el6_4.1.x86_64                                                  208/267 
  Verifying  : openldap-2.4.23-32.el6_4.1.x86_64                                                            209/267 
  Verifying  : grep-2.6.3-4.el6.x86_64                                                                      210/267 
  Verifying  : xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64                                              211/267 
  Verifying  : selinux-policy-targeted-3.7.19-231.el6.noarch                                                212/267 
  Verifying  : gnupg2-2.0.14-6.el6_4.x86_64                                                                 213/267 
  Verifying  : centos-release-6-5.el6.centos.11.1.x86_64                                                    214/267 
  Verifying  : glibc-common-2.12-1.132.el6.x86_64                                                           215/267 
  Verifying  : iscsi-initiator-utils-6.2.0.873-10.el6.x86_64                                                216/267 
  Verifying  : libcgroup-0.40.rc1-5.el6_5.1.x86_64                                                          217/267 
  Verifying  : device-mapper-multipath-libs-0.4.9-72.el6.x86_64                                             218/267 
  Verifying  : coreutils-8.4-31.el6.x86_64                                                                  219/267 
  Verifying  : ca-certificates-2013.1.94-65.0.el6.noarch                                                    220/267 
  Verifying  : cyrus-sasl-2.1.23-13.el6_3.1.x86_64                                                          221/267 
  Verifying  : psmisc-22.6-15.el6_0.1.x86_64                                                                222/267 
  Verifying  : 12:dhcp-common-4.1.1-38.P1.el6.centos.x86_64                                                 223/267 
  Verifying  : policycoreutils-python-2.0.83-19.39.el6.x86_64                                               224/267 
  Verifying  : iproute-2.6.32-31.el6.x86_64                                                                 225/267 
  Verifying  : 1:grub-0.97-83.el6.x86_64                                                                    226/267 
  Verifying  : python-six-1.6.1-1.el6.noarch                                                                227/267 
  Verifying  : libss-1.41.12-18.el6.x86_64                                                                  228/267 
  Verifying  : elfutils-libelf-0.152-1.el6.x86_64                                                           229/267 
  Verifying  : coreutils-libs-8.4-31.el6.x86_64                                                             230/267 
  Verifying  : upstart-0.6.5-12.el6_4.1.x86_64                                                              231/267 
  Verifying  : python-jsonpointer-1.0-3.el6.noarch                                                          232/267 
  Verifying  : python-backports-1.0-3.el6.x86_64                                                            233/267 
  Verifying  : bash-4.1.2-15.el6_4.x86_64                                                                   234/267 
  Verifying  : sudo-1.8.6p3-12.el6.x86_64                                                                   235/267 
  Verifying  : kernel-firmware-2.6.32-431.el6.noarch                                                        236/267 
  Verifying  : gzip-1.3.12-19.el6_4.x86_64                                                                  237/267 
  Verifying  : pciutils-libs-3.1.10-2.el6.x86_64                                                            238/267 
  Verifying  : device-mapper-multipath-0.4.9-72.el6.x86_64                                                  239/267 
  Verifying  : 12:dhclient-4.1.1-38.P1.el6.centos.x86_64                                                    240/267 
  Verifying  : iptables-ipv6-1.4.7-11.el6.x86_64                                                            241/267 
  Verifying  : lvm2-2.02.100-8.el6.x86_64                                                                   242/267 
  Verifying  : grubby-7.0.15-5.el6.x86_64                                                                   243/267 
  Verifying  : yum-plugin-fastestmirror-1.1.30-14.el6.noarch                                                244/267 
  Verifying  : python-backports-ssl_match_hostname-3.4.0.2-1.el6.noarch                                     245/267 
  Verifying  : libpciaccess-0.13.1-2.el6.x86_64                                                             246/267 
  Verifying  : xfsprogs-3.1.1-14.el6.x86_64                                                                 247/267 
  Verifying  : python-chardet-2.0.1-1.el6.noarch                                                            248/267 
  Verifying  : system-config-firewall-base-1.2.27-5.el6.noarch                                              249/267 
  Verifying  : initscripts-9.03.40-2.el6.centos.x86_64                                                      250/267 
  Verifying  : plymouth-0.8.3-27.el6.centos.x86_64                                                          251/267 
  Verifying  : nss-3.15.1-15.el6.x86_64                                                                     252/267 
  Verifying  : python-requests-1.1.0-4.el6.noarch                                                           253/267 
  Verifying  : libuuid-2.17.2-12.14.el6.x86_64                                                              254/267 
  Verifying  : file-5.04-15.el6.x86_64                                                                      255/267 
  Verifying  : openssh-server-5.3p1-94.el6.x86_64                                                           256/267 
  Verifying  : libudev-147-2.51.el6.x86_64                                                                  257/267 
  Verifying  : selinux-policy-3.7.19-231.el6.noarch                                                         258/267 
  Verifying  : e2fsprogs-libs-1.41.12-18.el6.x86_64                                                         259/267 
  Verifying  : 2:shadow-utils-4.1.4.2-13.el6.x86_64                                                         260/267 
  Verifying  : procmail-3.22-25.1.el6.x86_64                                                                261/267 
  Verifying  : python-argparse-1.2.1-2.el6.noarch                                                           262/267 
  Verifying  : python-2.6.6-51.el6.x86_64                                                                   263/267 
  Verifying  : libcurl-7.19.7-37.el6_4.x86_64                                                               264/267 
  Verifying  : hwdata-0.233-9.1.el6.noarch                                                                  265/267 
  Verifying  : authconfig-6.1.12-13.el6.x86_64                                                              266/267 
  Verifying  : policycoreutils-2.0.83-19.39.el6.x86_64                                                      267/267 

Installed:
  cloud-init.x86_64 0:0.7.5-10.el6.centos.2                    kernel.x86_64 0:2.6.32-504.3.3.el6                   

Dependency Installed:
  python-oauth.noarch 0:1.0.1-1.el6.centos                      python-rsa.noarch 0:3.1.1-5.el6                     

Updated:
  PyYAML.x86_64 0:3.10-3.1.el6                                                                                      
  audit.x86_64 0:2.3.7-5.el6                                                                                        
  audit-libs.x86_64 0:2.3.7-5.el6                                                                                   
  audit-libs-python.x86_64 0:2.3.7-5.el6                                                                            
  authconfig.x86_64 0:6.1.12-19.el6                                                                                 
  bash.x86_64 0:4.1.2-29.el6                                                                                        
  binutils.x86_64 0:2.20.51.0.2-5.42.el6                                                                            
  ca-certificates.noarch 0:2014.1.98-65.1.el6                                                                       
  centos-release.x86_64 0:6-6.el6.centos.12.2                                                                       
  coreutils.x86_64 0:8.4-37.el6                                                                                     
  coreutils-libs.x86_64 0:8.4-37.el6                                                                                
  cpio.x86_64 0:2.10-12.el6_5                                                                                       
  cryptsetup-luks.x86_64 0:1.2.0-11.el6                                                                             
  cryptsetup-luks-libs.x86_64 0:1.2.0-11.el6                                                                        
  curl.x86_64 0:7.19.7-40.el6_6.3                                                                                   
  cyrus-sasl.x86_64 0:2.1.23-15.el6_6.1                                                                             
  cyrus-sasl-lib.x86_64 0:2.1.23-15.el6_6.1                                                                         
  device-mapper.x86_64 0:1.02.90-2.el6_6.1                                                                          
  device-mapper-event.x86_64 0:1.02.90-2.el6_6.1                                                                    
  device-mapper-event-libs.x86_64 0:1.02.90-2.el6_6.1                                                               
  device-mapper-libs.x86_64 0:1.02.90-2.el6_6.1                                                                     
  device-mapper-multipath.x86_64 0:0.4.9-80.el6_6.1                                                                 
  device-mapper-multipath-libs.x86_64 0:0.4.9-80.el6_6.1                                                            
  device-mapper-persistent-data.x86_64 0:0.3.2-1.el6                                                                
  dhclient.x86_64 12:4.1.1-43.P1.el6.centos                                                                         
  dhcp-common.x86_64 12:4.1.1-43.P1.el6.centos                                                                      
  dracut.noarch 0:004-356.el6                                                                                       
  dracut-kernel.noarch 0:004-356.el6                                                                                
  e2fsprogs.x86_64 0:1.41.12-21.el6                                                                                 
  e2fsprogs-libs.x86_64 0:1.41.12-21.el6                                                                            
  elfutils-libelf.x86_64 0:0.158-3.2.el6                                                                            
  ethtool.x86_64 2:3.5-5.el6                                                                                        
  file.x86_64 0:5.04-21.el6                                                                                         
  file-libs.x86_64 0:5.04-21.el6                                                                                    
  glib2.x86_64 0:2.28.8-4.el6                                                                                       
  glibc.x86_64 0:2.12-1.149.el6                                                                                     
  glibc-common.x86_64 0:2.12-1.149.el6                                                                              
  gnupg2.x86_64 0:2.0.14-8.el6                                                                                      
  grep.x86_64 0:2.6.3-6.el6                                                                                         
  grub.x86_64 1:0.97-93.el6                                                                                         
  grubby.x86_64 0:7.0.15-7.el6                                                                                      
  gzip.x86_64 0:1.3.12-22.el6                                                                                       
  hwdata.noarch 0:0.233-11.1.el6                                                                                    
  initscripts.x86_64 0:9.03.46-1.el6.centos.1                                                                       
  iproute.x86_64 0:2.6.32-33.el6_6                                                                                  
  iptables.x86_64 0:1.4.7-14.el6                                                                                    
  iptables-ipv6.x86_64 0:1.4.7-14.el6                                                                               
  iscsi-initiator-utils.x86_64 0:6.2.0.873-13.el6                                                                   
  kernel-firmware.noarch 0:2.6.32-504.3.3.el6                                                                       
  keyutils-libs.x86_64 0:1.4-5.el6                                                                                  
  kpartx.x86_64 0:0.4.9-80.el6_6.1                                                                                  
  krb5-libs.x86_64 0:1.10.3-33.el6                                                                                  
  less.x86_64 0:436-13.el6                                                                                          
  libblkid.x86_64 0:2.17.2-12.18.el6                                                                                
  libcgroup.x86_64 0:0.40.rc1-15.el6_6                                                                              
  libcom_err.x86_64 0:1.41.12-21.el6                                                                                
  libcurl.x86_64 0:7.19.7-40.el6_6.3                                                                                
  libdrm.x86_64 0:2.4.52-4.el6                                                                                      
  libgcc.x86_64 0:4.4.7-11.el6                                                                                      
  libpciaccess.x86_64 0:0.13.3-0.1.el6                                                                              
  libselinux.x86_64 0:2.0.94-5.8.el6                                                                                
  libselinux-python.x86_64 0:2.0.94-5.8.el6                                                                         
  libselinux-utils.x86_64 0:2.0.94-5.8.el6                                                                          
  libss.x86_64 0:1.41.12-21.el6                                                                                     
  libstdc++.x86_64 0:4.4.7-11.el6                                                                                   
  libtasn1.x86_64 0:2.3-6.el6_5                                                                                     
  libudev.x86_64 0:147-2.57.el6                                                                                     
  libuuid.x86_64 0:2.17.2-12.18.el6                                                                                 
  libxml2.x86_64 0:2.7.6-17.el6_6.1                                                                                 
  lvm2.x86_64 0:2.02.111-2.el6_6.1                                                                                  
  lvm2-libs.x86_64 0:2.02.111-2.el6_6.1                                                                             
  mdadm.x86_64 0:3.3-6.el6_6.1                                                                                      
  module-init-tools.x86_64 0:3.9-24.el6                                                                             
  nspr.x86_64 0:4.10.6-1.el6_5                                                                                      
  nss.x86_64 0:3.16.2.3-3.el6_6                                                                                     
  nss-softokn.x86_64 0:3.14.3-18.el6_6                                                                              
  nss-softokn-freebl.x86_64 0:3.14.3-18.el6_6                                                                       
  nss-sysinit.x86_64 0:3.16.2.3-3.el6_6                                                                             
  nss-tools.x86_64 0:3.16.2.3-3.el6_6                                                                               
  nss-util.x86_64 0:3.16.2.3-2.el6_6                                                                                
  ntp.x86_64 0:4.2.6p5-2.el6.centos                                                                                 
  ntpdate.x86_64 0:4.2.6p5-2.el6.centos                                                                             
  openldap.x86_64 0:2.4.39-8.el6                                                                                    
  openssh.x86_64 0:5.3p1-104.el6_6.1                                                                                
  openssh-clients.x86_64 0:5.3p1-104.el6_6.1                                                                        
  openssh-server.x86_64 0:5.3p1-104.el6_6.1                                                                         
  openssl.x86_64 0:1.0.1e-30.el6_6.4                                                                                
  p11-kit.x86_64 0:0.18.5-2.el6_5.2                                                                                 
  p11-kit-trust.x86_64 0:0.18.5-2.el6_5.2                                                                           
  pam.x86_64 0:1.1.1-20.el6                                                                                         
  pciutils-libs.x86_64 0:3.1.10-4.el6                                                                               
  plymouth.x86_64 0:0.8.3-27.el6.centos.1                                                                           
  plymouth-core-libs.x86_64 0:0.8.3-27.el6.centos.1                                                                 
  plymouth-scripts.x86_64 0:0.8.3-27.el6.centos.1                                                                   
  policycoreutils.x86_64 0:2.0.83-19.47.el6_6.1                                                                     
  policycoreutils-python.x86_64 0:2.0.83-19.47.el6_6.1                                                              
  procmail.x86_64 0:3.22-25.1.el6_5.1                                                                               
  procps.x86_64 0:3.2.8-30.el6                                                                                      
  psmisc.x86_64 0:22.6-19.el6_5                                                                                     
  python.x86_64 0:2.6.6-52.el6                                                                                      
  python-argparse.noarch 0:1.2.1-2.el6.centos                                                                       
  python-backports.x86_64 0:1.0-3.el6.centos                                                                        
  python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el6.centos                                                 
  python-boto.noarch 0:2.34.0-4.el6                                                                                 
  python-chardet.noarch 0:2.0.1-1.el6.centos                                                                        
  python-jsonpatch.noarch 0:1.2-2.el6.centos                                                                        
  python-jsonpointer.noarch 0:1.0-3.el6.centos                                                                      
  python-libs.x86_64 0:2.6.6-52.el6                                                                                 
  python-ordereddict.noarch 0:1.1-2.el6.centos                                                                      
  python-prettytable.noarch 0:0.7.2-1.el6.centos                                                                    
  python-requests.noarch 0:1.1.0-4.el6.centos                                                                       
  python-six.noarch 0:1.7.3-1.el6.centos                                                                            
  python-urllib3.noarch 0:1.5-7.el6.centos                                                                          
  rpm.x86_64 0:4.8.0-38.el6_6                                                                                       
  rpm-libs.x86_64 0:4.8.0-38.el6_6                                                                                  
  rpm-python.x86_64 0:4.8.0-38.el6_6                                                                                
  rsyslog.x86_64 0:5.8.10-10.el6_6                                                                                  
  selinux-policy.noarch 0:3.7.19-260.el6_6.1                                                                        
  selinux-policy-targeted.noarch 0:3.7.19-260.el6_6.1                                                               
  shadow-utils.x86_64 2:4.1.4.2-19.el6                                                                              
  shared-mime-info.x86_64 0:0.70-6.el6                                                                              
  sudo.x86_64 0:1.8.6p3-15.el6                                                                                      
  system-config-firewall-base.noarch 0:1.2.27-7.2.el6_6                                                             
  tzdata.noarch 0:2014j-1.el6                                                                                       
  udev.x86_64 0:147-2.57.el6                                                                                        
  upstart.x86_64 0:0.6.5-13.el6_5.3                                                                                 
  util-linux-ng.x86_64 0:2.17.2-12.18.el6                                                                           
  xfsprogs.x86_64 0:3.1.1-16.el6                                                                                    
  xz-libs.x86_64 0:4.999.9-0.5.beta.20091007git.el6                                                                 
  yum.noarch 0:3.2.29-60.el6.centos                                                                                 
  yum-plugin-fastestmirror.noarch 0:1.1.30-30.el6                                                                   

Replaced:
  cloud-init.noarch 0:0.7.4-2.el6                                                                                   

Complete!
[Precheck] Precheck successful.


[Prep] Removing old Chef templates
[Prep] Downloading necessary cookbooks
~/cookbooks ~
remote: Counting objects: 3126, done.
remote: Total 3126 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (3126/3126), 558.32 KiB | 176 KiB/s, done.
Resolving deltas: 100% (2082/2082), done.
remote: Counting objects: 1490, done.
remote: Total 1490 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (1490/1490), 312.19 KiB | 182 KiB/s, done.
Resolving deltas: 100% (653/653), done.
remote: Counting objects: 197, done.
remote: Total 197 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (197/197), 31.16 KiB, done.
Resolving deltas: 100% (99/99), done.
remote: Counting objects: 967, done.
remote: Total 967 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (967/967), 204.30 KiB | 147 KiB/s, done.
Resolving deltas: 100% (395/395), done.
~
[Prep] Tarring up cookbooks
=====

Welcome to the Faststart installer!

We're about to turn this system into a single-system Eucalyptus cloud.

Note: it's STRONGLY suggested that you accept the default values where
they are provided, unless you know that the values are incorrect.

What's the physical NIC that will be used for bridging? (eth0)

NIC=eth0

What's the IP address of this host? (192.168.122.235)

IPADDR=192.168.122.235

What's the gateway for this host? (192.168.122.1)

GATEWAY=192.168.122.1

What's the netmask for this host? (255.255.255.0)

NETMASK=255.255.255.0

What's the subnet for this host? (192.168.122.0)

SUBNET=192.168.122.0

You must now specify a range of IP addresses that are free
for Eucalyptus to use.  These IP addresses should not be
taken up by any other machines, and should not be in any
DHCP address pools.  Faststart will split this range into
public and private IP addresses, which will then be used
by Eucalyptus instances.  Please specify a range of at least
10 IP addresses.

What's the first address of your available IP range?
192.168.122.30
Please provide a valid IP.
192.168.122.30
What's the last address of your available IP range?
192.168.122.99
OK, IP range is good
  Public range will be:   192.168.122.30 - 192.168.122.64
  Private range will be   192.168.122.65 - 192.168.122.99

Do you wish to install the optional load balancer and image
management services? This add 10-15 minutes to the installation.
Install additional services? [Y/n]
y
OK, additional services will be installed.


[Installing Eucalyptus]

If you want to watch the progress of this installation, you can check the
log file by running the following command in another terminal:

  tail -f /var/log/euca-install-12.23.2014-14.49.16.log

Your cloud-in-a-box should be installed in 30-45 minutes. Go have a cup of coffee!


   ) )     
    ( (    
  ........ 
  |      |]
  \      / 
   ------  

[FATAL] Eucalyptus installation failed

Eucalyptus installation failed. Please consult /var/log/euca-install-12.23.2014-14.49.16.log for details.

Please try to run the installation again. If your installation fails again,
you can ask the Eucalyptus community for assistance:

https://groups.google.com/a/eucalyptus.com/forum/#!forum/euca-users

Or find us on IRC at irc.freenode.net, on the #eucalyptus channel.

Upload log file to improve quality? [Y/n]

うん、コケました。理由は /var/log/euca-install-*.log に書いてあるそうなので見てみます。

1
2
3
4
5
6
STDERR: error: "net.bridge.bridge-nf-call-ip6tables" is an unknown key
error: "net.bridge.bridge-nf-call-iptables" is an unknown key
error: "net.bridge.bridge-nf-call-arptables" is an unknown key
---- End output of sysctl -p ----
Ran sysctl -p returned 255
[2014-12-23T15:30:51+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)

ほほぅ…そうですか、net.bridge.bridge-nf-call-iptables と net.bridge.bridge-nf-call-arptables が存在しないと…。

でもこれって、bridge-utils をインストールしただけじゃ駄目で、brctl コマンド叩いてはじめて作られるやつらじゃないかよ…何してんですか?Eucalyptus さん?…orz

ということで、Eucalyptus の faststart は Eucalyptus の知識がない人でも簡単に叩けますが、失敗したときには Linux の知識がちょっぴり要求されるかもしれない優しいインストールツールでした。(ゝω・)v キャピッ

ちなみに他の人も書いてるようにセットアップ中は以下のようなコーヒーのアスキーアートがウネウネと動いているんですが、ぶっちゃけると「そんなとこ頑張るより『現在 n/M です』とかって進捗率を表示しろよ」と叫びたくなりますね。

ということで、Eucalyptus on Eucalyptus もメデタク失敗したところで、本エントリは終了します。