-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_base_image_python3_3.log
More file actions
996 lines (978 loc) · 71.5 KB
/
build_base_image_python3_3.log
File metadata and controls
996 lines (978 loc) · 71.5 KB
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
1. Get the Dockerfile
2. Generate the stx.repo file
local-stx-build
http://172.16.206.38:8088/loadbuild/chant/starlingx//std/rpmbuild/RPMS
stx-distro
http://172.16.206.38:8088/designer/chant/starlingx/cgcs-root//cgcs-centos-repo/Binary
3. Check to see if the OS image is already pulled
centos
7.5.1804
4. Pull the image anyway, to ensure it is up to date
7.5.1804: Pulling from library/centos
Digest: sha256:7a45e4a1efbaafc1d9aa89925b6fdb33288a96d35ea0581412316e2f0ad3720a
Status: Image is up to date for centos:7.5.1804
docker.io/library/centos:7.5.1804
5. Build the image
6. Build base image
--build-arg RELEASE=7.5.1804 --build-arg REPO_OPTS= --enablerepo=local-stx-build --enablerepo=stx-distro --tag 172.16.206.38:5000/chant/stx-centos:master-stable-chant loadbuild/chant/starlingx//std/build-images/stx-centos --no-cache
Running: docker build --build-arg RELEASE=7.5.1804 --build-arg REPO_OPTS= --enablerepo=local-stx-build --enablerepo=stx-distro --tag 172.16.206.38:5000/chant/stx-centos:master-stable-chant loadbuild/chant/starlingx//std/build-images/stx-centos --no-cache
Sending build context to Docker daemon 3.584kB
Step 1/5 : ARG RELEASE=7.5.1804
Step 2/5 : FROM centos:${RELEASE}
---> cf49811e3cdb
Step 3/5 : ARG REPO_OPTS
---> Running in 5843d5dae334
Removing intermediate container 5843d5dae334
---> 4ef588ba0d2f
Step 4/5 : COPY stx.repo /
---> 5aaf4f72d8a0
Step 5/5 : RUN set -ex ; sed -i '/\[main\]/ atimeout=120' /etc/yum.conf ; mv /stx.repo /etc/yum.repos.d/ ; yum upgrade --disablerepo=* ${REPO_OPTS} -y ; yum install --disablerepo=* ${REPO_OPTS} -y qemu-img openssh-clients python3 python3-pip ; rm -rf /var/log/* /tmp/* /var/tmp/*
---> Running in bf1a06169310
[91m+ sed -i '/\[main\]/ atimeout=120' /etc/yum.conf
[0m[91m+ mv /stx.repo /etc/yum.repos.d/
[0m[91m+ yum upgrade '--disablerepo=*' --enablerepo=local-stx-build --enablerepo=stx-distro -y
[0mLoaded plugins: fastestmirror, ovl
Determining fastest mirrors
Resolving Dependencies
--> Running transaction check
---> Package audit-libs.x86_64 0:2.8.1-3.el7 will be updated
---> Package audit-libs.x86_64 0:2.8.4-4.el7 will be an update
---> Package bash.x86_64 0:4.2.46-30.el7 will be updated
---> Package bash.x86_64 0:4.2.46-31.el7.tis.4 will be an update
---> Package bind-license.noarch 32:9.9.4-61.el7 will be updated
---> Package bind-license.noarch 32:9.9.4-72.el7 will be an update
---> Package binutils.x86_64 0:2.27-27.base.el7 will be updated
---> Package binutils.x86_64 0:2.27-34.base.el7 will be an update
---> Package centos-release.x86_64 0:7-5.1804.el7.centos.2 will be updated
---> Package centos-release.x86_64 0:7-6.1810.2.el7.centos will be an update
---> Package coreutils.x86_64 0:8.22-21.el7 will be updated
---> Package coreutils.x86_64 0:8.22-23.el7 will be an update
---> Package cryptsetup-libs.x86_64 0:1.7.4-4.el7 will be updated
---> Package cryptsetup-libs.x86_64 0:2.0.3-3.el7 will be an update
--> Processing Dependency: libjson-c.so.2()(64bit) for package: cryptsetup-libs-2.0.3-3.el7.x86_64
---> Package curl.x86_64 0:7.29.0-46.el7 will be updated
---> Package curl.x86_64 0:7.29.0-51.el7_6.3 will be an update
---> Package dbus.x86_64 1:1.10.24-7.el7 will be updated
---> Package dbus.x86_64 1:1.10.24-12.el7 will be an update
---> Package dbus-libs.x86_64 1:1.10.24-7.el7 will be updated
---> Package dbus-libs.x86_64 1:1.10.24-12.el7 will be an update
---> Package dracut.x86_64 0:033-535.el7 will be updated
---> Package dracut.x86_64 0:033-554.el7 will be an update
---> Package elfutils-default-yama-scope.noarch 0:0.170-4.el7 will be updated
---> Package elfutils-default-yama-scope.noarch 0:0.172-2.el7 will be an update
---> Package elfutils-libelf.x86_64 0:0.170-4.el7 will be updated
---> Package elfutils-libelf.x86_64 0:0.172-2.el7 will be an update
---> Package elfutils-libs.x86_64 0:0.170-4.el7 will be updated
---> Package elfutils-libs.x86_64 0:0.172-2.el7 will be an update
---> Package file-libs.x86_64 0:5.11-33.el7 will be updated
---> Package file-libs.x86_64 0:5.11-35.el7 will be an update
---> Package findutils.x86_64 1:4.5.11-5.el7 will be updated
---> Package findutils.x86_64 1:4.5.11-6.el7 will be an update
---> Package glib2.x86_64 0:2.54.2-2.el7 will be updated
---> Package glib2.x86_64 0:2.56.1-2.el7 will be an update
---> Package glibc.x86_64 0:2.17-222.el7 will be updated
---> Package glibc.x86_64 0:2.17-260.el7 will be an update
---> Package glibc-common.x86_64 0:2.17-222.el7 will be updated
---> Package glibc-common.x86_64 0:2.17-260.el7 will be an update
---> Package gnupg2.x86_64 0:2.0.22-4.el7 will be updated
---> Package gnupg2.x86_64 0:2.0.22-5.el7_5 will be an update
---> Package gobject-introspection.x86_64 0:1.50.0-1.el7 will be updated
---> Package gobject-introspection.x86_64 0:1.56.1-1.el7 will be an update
---> Package kmod.x86_64 0:20-21.el7 will be updated
---> Package kmod.x86_64 0:20-23.el7 will be an update
---> Package kmod-libs.x86_64 0:20-21.el7 will be updated
---> Package kmod-libs.x86_64 0:20-23.el7 will be an update
---> Package krb5-libs.x86_64 0:1.15.1-19.el7 will be updated
---> Package krb5-libs.x86_64 0:1.15.1-34.el7 will be an update
---> Package libblkid.x86_64 0:2.23.2-52.el7 will be updated
---> Package libblkid.x86_64 0:2.23.2-59.el7 will be an update
---> Package libcom_err.x86_64 0:1.42.9-12.el7_5 will be updated
---> Package libcom_err.x86_64 0:1.42.9-13.el7 will be an update
---> Package libcurl.x86_64 0:7.29.0-46.el7 will be updated
---> Package libcurl.x86_64 0:7.29.0-51.el7_6.3 will be an update
---> Package libgcc.x86_64 0:4.8.5-28.el7_5.1 will be updated
---> Package libgcc.x86_64 0:4.8.5-36.el7 will be an update
---> Package libmount.x86_64 0:2.23.2-52.el7 will be updated
---> Package libmount.x86_64 0:2.23.2-59.el7 will be an update
---> Package libselinux.x86_64 0:2.5-12.el7 will be updated
---> Package libselinux.x86_64 0:2.5-14.1.el7 will be an update
---> Package libsemanage.x86_64 0:2.5-11.el7 will be updated
---> Package libsemanage.x86_64 0:2.5-14.el7 will be an update
---> Package libsepol.x86_64 0:2.5-8.1.el7 will be updated
---> Package libsepol.x86_64 0:2.5-10.el7 will be an update
---> Package libssh2.x86_64 0:1.4.3-10.el7_2.1 will be updated
---> Package libssh2.x86_64 0:1.4.3-12.el7 will be an update
---> Package libstdc++.x86_64 0:4.8.5-28.el7_5.1 will be updated
---> Package libstdc++.x86_64 0:4.8.5-36.el7 will be an update
---> Package libuuid.x86_64 0:2.23.2-52.el7 will be updated
---> Package libuuid.x86_64 0:2.23.2-59.el7 will be an update
---> Package nss.x86_64 0:3.36.0-5.el7_5 will be updated
---> Package nss.x86_64 0:3.36.0-7.el7_5 will be an update
---> Package nss-pem.x86_64 0:1.0.3-4.el7 will be updated
---> Package nss-pem.x86_64 0:1.0.3-5.el7 will be an update
---> Package nss-sysinit.x86_64 0:3.36.0-5.el7_5 will be updated
---> Package nss-sysinit.x86_64 0:3.36.0-7.el7_5 will be an update
---> Package nss-tools.x86_64 0:3.36.0-5.el7_5 will be updated
---> Package nss-tools.x86_64 0:3.36.0-7.el7_5 will be an update
---> Package openldap.x86_64 0:2.4.44-15.el7_5 will be updated
---> Package openldap.x86_64 0:2.4.44-20.el7.tis.9 will be an update
---> Package openssl-libs.x86_64 1:1.0.2k-12.el7 will be updated
---> Package openssl-libs.x86_64 1:1.0.2k-16.el7 will be an update
---> Package procps-ng.x86_64 0:3.3.10-17.el7_5.2 will be updated
---> Package procps-ng.x86_64 0:3.3.10-23.el7 will be an update
---> Package python.x86_64 0:2.7.5-68.el7 will be updated
---> Package python.x86_64 0:2.7.5-76.el7.tis.4 will be an update
---> Package python-chardet.noarch 0:2.2.1-1.el7_1 will be obsoleted
---> Package python-libs.x86_64 0:2.7.5-68.el7 will be updated
---> Package python-libs.x86_64 0:2.7.5-76.el7.tis.4 will be an update
---> Package python-urlgrabber.noarch 0:3.10-8.el7 will be updated
---> Package python-urlgrabber.noarch 0:3.10-9.el7 will be an update
---> Package python2-chardet.noarch 0:3.0.4-7.el7 will be obsoleting
---> Package rpm.x86_64 0:4.11.3-32.el7 will be updated
---> Package rpm.x86_64 0:4.14.0-1.tis.1 will be an update
---> Package rpm-build-libs.x86_64 0:4.11.3-32.el7 will be updated
---> Package rpm-build-libs.x86_64 0:4.14.0-1.tis.1 will be an update
--> Processing Dependency: libimaevm.so.0()(64bit) for package: rpm-build-libs-4.14.0-1.tis.1.x86_64
---> Package rpm-libs.x86_64 0:4.11.3-32.el7 will be updated
---> Package rpm-libs.x86_64 0:4.14.0-1.tis.1 will be an update
---> Package rpm-python.x86_64 0:4.11.3-32.el7 will be updated
---> Package rpm-python.x86_64 0:4.14.0-1.tis.1 will be an update
---> Package setup.noarch 0:2.8.71-9.el7 will be updated
---> Package setup.noarch 0:2.8.71-10.el7.tis.16 will be an update
---> Package shadow-utils.x86_64 2:4.1.5.1-24.el7 will be updated
---> Package shadow-utils.x86_64 2:4.1.5.1-25.el7 will be an update
---> Package systemd.x86_64 0:219-57.el7 will be updated
---> Package systemd.x86_64 0:219-62.el7_6.5.tis.11 will be an update
---> Package systemd-libs.x86_64 0:219-57.el7 will be updated
---> Package systemd-libs.x86_64 0:219-62.el7_6.5.tis.11 will be an update
---> Package tar.x86_64 2:1.26-34.el7 will be updated
---> Package tar.x86_64 2:1.26-35.el7 will be an update
---> Package tzdata.noarch 0:2018e-3.el7 will be updated
---> Package tzdata.noarch 0:2018g-1.el7 will be an update
---> Package util-linux.x86_64 0:2.23.2-52.el7 will be updated
---> Package util-linux.x86_64 0:2.23.2-59.el7 will be an update
--> Processing Dependency: libsmartcols = 2.23.2-59.el7 for package: util-linux-2.23.2-59.el7.x86_64
--> Processing Dependency: libsmartcols.so.1(SMARTCOLS_2.25)(64bit) for package: util-linux-2.23.2-59.el7.x86_64
--> Processing Dependency: libsmartcols.so.1()(64bit) for package: util-linux-2.23.2-59.el7.x86_64
---> Package vim-minimal.x86_64 2:7.4.160-4.el7 will be updated
---> Package vim-minimal.x86_64 2:7.4.160-5.el7 will be an update
---> Package yum.noarch 0:3.4.3-158.el7.centos will be updated
---> Package yum.noarch 0:3.4.3-161.el7.centos will be an update
---> Package yum-plugin-fastestmirror.noarch 0:1.1.31-45.el7 will be updated
---> Package yum-plugin-fastestmirror.noarch 0:1.1.31-50.el7 will be an update
---> Package yum-utils.noarch 0:1.1.31-45.el7 will be updated
---> Package yum-utils.noarch 0:1.1.31-50.el7 will be an update
---> Package zlib.x86_64 0:1.2.7-17.el7 will be updated
---> Package zlib.x86_64 0:1.2.7-18.el7 will be an update
--> Running transaction check
---> Package ima-evm-utils.x86_64 0:1.1-2.el7 will be installed
---> Package json-c.x86_64 0:0.11-4.el7_0 will be installed
---> Package libsmartcols.x86_64 0:2.23.2-59.el7 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
python2-chardet noarch 3.0.4-7.el7 stx-distro 186 k
replacing python-chardet.noarch 2.2.1-1.el7_1
Updating:
audit-libs x86_64 2.8.4-4.el7 stx-distro 100 k
bash x86_64 4.2.46-31.el7.tis.4 local-stx-build 1.0 M
bind-license noarch 32:9.9.4-72.el7 stx-distro 86 k
binutils x86_64 2.27-34.base.el7 stx-distro 5.9 M
centos-release x86_64 7-6.1810.2.el7.centos stx-distro 26 k
coreutils x86_64 8.22-23.el7 stx-distro 3.3 M
cryptsetup-libs x86_64 2.0.3-3.el7 stx-distro 338 k
curl x86_64 7.29.0-51.el7_6.3 stx-distro 269 k
dbus x86_64 1:1.10.24-12.el7 stx-distro 245 k
dbus-libs x86_64 1:1.10.24-12.el7 stx-distro 169 k
dracut x86_64 033-554.el7 stx-distro 327 k
elfutils-default-yama-scope noarch 0.172-2.el7 stx-distro 32 k
elfutils-libelf x86_64 0.172-2.el7 stx-distro 194 k
elfutils-libs x86_64 0.172-2.el7 stx-distro 285 k
file-libs x86_64 5.11-35.el7 stx-distro 340 k
findutils x86_64 1:4.5.11-6.el7 stx-distro 559 k
glib2 x86_64 2.56.1-2.el7 stx-distro 2.5 M
glibc x86_64 2.17-260.el7 stx-distro 3.6 M
glibc-common x86_64 2.17-260.el7 stx-distro 11 M
gnupg2 x86_64 2.0.22-5.el7_5 stx-distro 1.5 M
gobject-introspection x86_64 1.56.1-1.el7 stx-distro 241 k
kmod x86_64 20-23.el7 stx-distro 121 k
kmod-libs x86_64 20-23.el7 stx-distro 50 k
krb5-libs x86_64 1.15.1-34.el7 stx-distro 763 k
libblkid x86_64 2.23.2-59.el7 stx-distro 181 k
libcom_err x86_64 1.42.9-13.el7 stx-distro 41 k
libcurl x86_64 7.29.0-51.el7_6.3 stx-distro 222 k
libgcc x86_64 4.8.5-36.el7 stx-distro 102 k
libmount x86_64 2.23.2-59.el7 stx-distro 182 k
libselinux x86_64 2.5-14.1.el7 stx-distro 162 k
libsemanage x86_64 2.5-14.el7 stx-distro 151 k
libsepol x86_64 2.5-10.el7 stx-distro 297 k
libssh2 x86_64 1.4.3-12.el7 stx-distro 134 k
libstdc++ x86_64 4.8.5-36.el7 stx-distro 304 k
libuuid x86_64 2.23.2-59.el7 stx-distro 82 k
nss x86_64 3.36.0-7.el7_5 stx-distro 835 k
nss-pem x86_64 1.0.3-5.el7 stx-distro 74 k
nss-sysinit x86_64 3.36.0-7.el7_5 stx-distro 62 k
nss-tools x86_64 3.36.0-7.el7_5 stx-distro 515 k
openldap x86_64 2.4.44-20.el7.tis.9 local-stx-build 360 k
openssl-libs x86_64 1:1.0.2k-16.el7 stx-distro 1.2 M
procps-ng x86_64 3.3.10-23.el7 stx-distro 291 k
python x86_64 2.7.5-76.el7.tis.4 local-stx-build 779 k
python-libs x86_64 2.7.5-76.el7.tis.4 local-stx-build 5.6 M
python-urlgrabber noarch 3.10-9.el7 stx-distro 108 k
rpm x86_64 4.14.0-1.tis.1 local-stx-build 460 k
rpm-build-libs x86_64 4.14.0-1.tis.1 local-stx-build 116 k
rpm-libs x86_64 4.14.0-1.tis.1 local-stx-build 293 k
rpm-python x86_64 4.14.0-1.tis.1 local-stx-build 90 k
setup noarch 2.8.71-10.el7.tis.16 local-stx-build 169 k
shadow-utils x86_64 2:4.1.5.1-25.el7 stx-distro 1.1 M
systemd x86_64 219-62.el7_6.5.tis.11 local-stx-build 5.1 M
systemd-libs x86_64 219-62.el7_6.5.tis.11 local-stx-build 412 k
tar x86_64 2:1.26-35.el7 stx-distro 846 k
tzdata noarch 2018g-1.el7 stx-distro 484 k
util-linux x86_64 2.23.2-59.el7 stx-distro 2.0 M
vim-minimal x86_64 2:7.4.160-5.el7 stx-distro 437 k
yum noarch 3.4.3-161.el7.centos stx-distro 1.2 M
yum-plugin-fastestmirror noarch 1.1.31-50.el7 stx-distro 34 k
yum-utils noarch 1.1.31-50.el7 stx-distro 121 k
zlib x86_64 1.2.7-18.el7 stx-distro 90 k
Installing for dependencies:
ima-evm-utils x86_64 1.1-2.el7 stx-distro 46 k
json-c x86_64 0.11-4.el7_0 stx-distro 31 k
libsmartcols x86_64 2.23.2-59.el7 stx-distro 140 k
Transaction Summary
================================================================================
Install 1 Package (+3 Dependent packages)
Upgrade 61 Packages
Total download size: 58 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
--------------------------------------------------------------------------------
Total 92 MB/s | 58 MB 00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Updating : libgcc-4.8.5-36.el7.x86_64 1/127
Updating : tzdata-2018g-1.el7.noarch 2/127
Updating : glibc-common-2.17-260.el7.x86_64 3/127
Updating : glibc-2.17-260.el7.x86_64 4/127
Updating : bash-4.2.46-31.el7.tis.4.x86_64 5/127
Updating : libsepol-2.5-10.el7.x86_64 6/127
Updating : libselinux-2.5-14.1.el7.x86_64 7/127
Updating : zlib-1.2.7-18.el7.x86_64 8/127
Updating : elfutils-libelf-0.172-2.el7.x86_64 9/127
Updating : audit-libs-2.8.4-4.el7.x86_64 10/127
Updating : libuuid-2.23.2-59.el7.x86_64 11/127
Updating : libcom_err-1.42.9-13.el7.x86_64 12/127
Updating : krb5-libs-1.15.1-34.el7.x86_64 13/127
Updating : 1:openssl-libs-1.0.2k-16.el7.x86_64 14/127
Updating : coreutils-8.22-23.el7.x86_64 15/127
Updating : libblkid-2.23.2-59.el7.x86_64 16/127
Updating : libmount-2.23.2-59.el7.x86_64 17/127
Updating : centos-release-7-6.1810.2.el7.centos.x86_64 18/127
Updating : python-libs-2.7.5-76.el7.tis.4.x86_64 19/127
Updating : python-2.7.5-76.el7.tis.4.x86_64 20/127
Installing : ima-evm-utils-1.1-2.el7.x86_64 21/127
Updating : file-libs-5.11-35.el7.x86_64 22/127
Updating : 1:findutils-4.5.11-6.el7.x86_64 23/127
Updating : python-urlgrabber-3.10-9.el7.noarch 24/127
Updating : setup-2.8.71-10.el7.tis.16.noarch 25/127
warning: /etc/group created as /etc/group.rpmnew
warning: /etc/gshadow created as /etc/gshadow.rpmnew
warning: /etc/passwd created as /etc/passwd.rpmnew
warning: /etc/shadow created as /etc/shadow.rpmnew
Updating : glib2-2.56.1-2.el7.x86_64 26/127
Updating : nss-pem-1.0.3-5.el7.x86_64 27/127
Updating : nss-3.36.0-7.el7_5.x86_64 28/127
Updating : nss-sysinit-3.36.0-7.el7_5.x86_64 29/127
Updating : nss-tools-3.36.0-7.el7_5.x86_64 30/127
Updating : binutils-2.27-34.base.el7.x86_64 31/127
install-info: No such file or directory for /usr/share/info/as.info.gz
install-info: No such file or directory for /usr/share/info/binutils.info.gz
install-info: No such file or directory for /usr/share/info/gprof.info.gz
install-info: No such file or directory for /usr/share/info/ld.info.gz
install-info: No such file or directory for /usr/share/info/standards.info.gz
Updating : libssh2-1.4.3-12.el7.x86_64 32/127
Updating : libcurl-7.29.0-51.el7_6.3.x86_64 33/127
Updating : curl-7.29.0-51.el7_6.3.x86_64 34/127
Updating : rpm-libs-4.14.0-1.tis.1.x86_64 35/127
Updating : rpm-4.14.0-1.tis.1.x86_64 36/127
Updating : openldap-2.4.44-20.el7.tis.9.x86_64 37/127
Updating : gnupg2-2.0.22-5.el7_5.x86_64 38/127
install-info: No such file or directory for /usr/share/info/gnupg.info
Updating : libsemanage-2.5-14.el7.x86_64 39/127
Updating : 2:shadow-utils-4.1.5.1-25.el7.x86_64 40/127
Updating : kmod-libs-20-23.el7.x86_64 41/127
Updating : 2:tar-1.26-35.el7.x86_64 42/127
Installing : libsmartcols-2.23.2-59.el7.x86_64 43/127
Installing : json-c-0.11-4.el7_0.x86_64 44/127
Updating : cryptsetup-libs-2.0.3-3.el7.x86_64 45/127
Updating : util-linux-2.23.2-59.el7.x86_64 46/127
Updating : procps-ng-3.3.10-23.el7.x86_64 47/127
Updating : dracut-033-554.el7.x86_64 48/127
Updating : kmod-20-23.el7.x86_64 49/127
Updating : elfutils-libs-0.172-2.el7.x86_64 50/127
Updating : systemd-libs-219-62.el7_6.5.tis.11.x86_64 51/127
Updating : 1:dbus-libs-1.10.24-12.el7.x86_64 52/127
Updating : systemd-219-62.el7_6.5.tis.11.x86_64 53/127
Failed to get D-Bus connection: Operation not permitted
Updating : 1:dbus-1.10.24-12.el7.x86_64 54/127
Updating : elfutils-default-yama-scope-0.172-2.el7.noarch 55/127
Updating : rpm-build-libs-4.14.0-1.tis.1.x86_64 56/127
Updating : rpm-python-4.14.0-1.tis.1.x86_64 57/127
Updating : yum-plugin-fastestmirror-1.1.31-50.el7.noarch 58/127
Updating : yum-3.4.3-161.el7.centos.noarch 59/127
Updating : yum-utils-1.1.31-50.el7.noarch 60/127
Updating : gobject-introspection-1.56.1-1.el7.x86_64 61/127
Installing : python2-chardet-3.0.4-7.el7.noarch 62/127
Updating : 2:vim-minimal-7.4.160-5.el7.x86_64 63/127
Updating : libstdc++-4.8.5-36.el7.x86_64 64/127
Updating : 32:bind-license-9.9.4-72.el7.noarch 65/127
Cleanup : 1:dbus-libs-1.10.24-7.el7.x86_64 66/127
Cleanup : procps-ng-3.3.10-17.el7_5.2.x86_64 67/127
Cleanup : util-linux-2.23.2-52.el7.x86_64 68/127
Cleanup : systemd-libs-219-57.el7.x86_64 69/127
Cleanup : kmod-20-21.el7.x86_64 70/127
Cleanup : dracut-033-535.el7.x86_64 71/127
Cleanup : elfutils-libs-0.170-4.el7.x86_64 72/127
Cleanup : elfutils-default-yama-scope-0.170-4.el7.noarch 73/127
Cleanup : 1:dbus-1.10.24-7.el7.x86_64 74/127
Cleanup : systemd-219-57.el7.x86_64 75/127
Cleanup : 2:shadow-utils-4.1.5.1-24.el7.x86_64 76/127
Cleanup : libsemanage-2.5-11.el7.x86_64 77/127
Cleanup : binutils-2.27-27.base.el7.x86_64 78/127
Cleanup : gobject-introspection-1.50.0-1.el7.x86_64 79/127
Cleanup : glib2-2.54.2-2.el7.x86_64 80/127
Cleanup : libmount-2.23.2-52.el7.x86_64 81/127
Cleanup : libblkid-2.23.2-52.el7.x86_64 82/127
Cleanup : kmod-libs-20-21.el7.x86_64 83/127
Cleanup : 2:tar-1.26-34.el7.x86_64 84/127
Cleanup : cryptsetup-libs-1.7.4-4.el7.x86_64 85/127
Cleanup : 2:vim-minimal-7.4.160-4.el7.x86_64 86/127
Cleanup : libstdc++-4.8.5-28.el7_5.1.x86_64 87/127
Cleanup : yum-utils-1.1.31-45.el7.noarch 88/127
Cleanup : yum-plugin-fastestmirror-1.1.31-45.el7.noarch 89/127
Cleanup : yum-3.4.3-158.el7.centos.noarch 90/127
Cleanup : python-urlgrabber-3.10-8.el7.noarch 91/127
Cleanup : setup-2.8.71-9.el7.noarch 92/127
Cleanup : centos-release-7-5.1804.el7.centos.2.x86_64 93/127
Erasing : python-chardet-2.2.1-1.el7_1.noarch 94/127
Cleanup : 32:bind-license-9.9.4-61.el7.noarch 95/127
Cleanup : rpm-python-4.11.3-32.el7.x86_64 96/127
Cleanup : rpm-build-libs-4.11.3-32.el7.x86_64 97/127
Cleanup : gnupg2-2.0.22-4.el7.x86_64 98/127
Cleanup : rpm-libs-4.11.3-32.el7.x86_64 99/127
Cleanup : rpm-4.11.3-32.el7.x86_64 100/127
Cleanup : curl-7.29.0-46.el7.x86_64 101/127
Cleanup : libcurl-7.29.0-46.el7.x86_64 102/127
Cleanup : openldap-2.4.44-15.el7_5.x86_64 103/127
Cleanup : nss-tools-3.36.0-5.el7_5.x86_64 104/127
Cleanup : nss-pem-1.0.3-4.el7.x86_64 105/127
Cleanup : nss-sysinit-3.36.0-5.el7_5.x86_64 106/127
Cleanup : nss-3.36.0-5.el7_5.x86_64 107/127
Cleanup : python-2.7.5-68.el7.x86_64 108/127
Cleanup : python-libs-2.7.5-68.el7.x86_64 109/127
Cleanup : 1:findutils-4.5.11-5.el7.x86_64 110/127
Cleanup : libssh2-1.4.3-10.el7_2.1.x86_64 111/127
Cleanup : krb5-libs-1.15.1-19.el7.x86_64 112/127
Cleanup : coreutils-8.22-21.el7.x86_64 113/127
Cleanup : 1:openssl-libs-1.0.2k-12.el7.x86_64 114/127
Cleanup : elfutils-libelf-0.170-4.el7.x86_64 115/127
Cleanup : file-libs-5.11-33.el7.x86_64 116/127
Cleanup : zlib-1.2.7-17.el7.x86_64 117/127
Cleanup : libcom_err-1.42.9-12.el7_5.x86_64 118/127
Cleanup : libuuid-2.23.2-52.el7.x86_64 119/127
Cleanup : audit-libs-2.8.1-3.el7.x86_64 120/127
Cleanup : bash-4.2.46-30.el7.x86_64 121/127
Cleanup : libsepol-2.5-8.1.el7.x86_64 122/127
Cleanup : libselinux-2.5-12.el7.x86_64 123/127
Cleanup : glibc-common-2.17-222.el7.x86_64 124/127
Cleanup : glibc-2.17-222.el7.x86_64 125/127
Cleanup : tzdata-2018e-3.el7.noarch 126/127
Cleanup : libgcc-4.8.5-28.el7_5.1.x86_64 127/127
Verifying : ima-evm-utils-1.1-2.el7.x86_64 1/127
Verifying : libstdc++-4.8.5-36.el7.x86_64 2/127
Verifying : cryptsetup-libs-2.0.3-3.el7.x86_64 3/127
Verifying : zlib-1.2.7-18.el7.x86_64 4/127
Verifying : libsemanage-2.5-14.el7.x86_64 5/127
Verifying : curl-7.29.0-51.el7_6.3.x86_64 6/127
Verifying : krb5-libs-1.15.1-34.el7.x86_64 7/127
Verifying : libsmartcols-2.23.2-59.el7.x86_64 8/127
Verifying : libgcc-4.8.5-36.el7.x86_64 9/127
Verifying : nss-sysinit-3.36.0-7.el7_5.x86_64 10/127
Verifying : rpm-build-libs-4.14.0-1.tis.1.x86_64 11/127
Verifying : python2-chardet-3.0.4-7.el7.noarch 12/127
Verifying : libuuid-2.23.2-59.el7.x86_64 13/127
Verifying : systemd-219-62.el7_6.5.tis.11.x86_64 14/127
Verifying : coreutils-8.22-23.el7.x86_64 15/127
Verifying : elfutils-libelf-0.172-2.el7.x86_64 16/127
Verifying : libsepol-2.5-10.el7.x86_64 17/127
Verifying : nss-tools-3.36.0-7.el7_5.x86_64 18/127
Verifying : elfutils-libs-0.172-2.el7.x86_64 19/127
Verifying : glib2-2.56.1-2.el7.x86_64 20/127
Verifying : yum-utils-1.1.31-50.el7.noarch 21/127
Verifying : 1:dbus-1.10.24-12.el7.x86_64 22/127
Verifying : python-2.7.5-76.el7.tis.4.x86_64 23/127
Verifying : centos-release-7-6.1810.2.el7.centos.x86_64 24/127
Verifying : libcom_err-1.42.9-13.el7.x86_64 25/127
Verifying : yum-3.4.3-161.el7.centos.noarch 26/127
Verifying : libselinux-2.5-14.1.el7.x86_64 27/127
Verifying : libblkid-2.23.2-59.el7.x86_64 28/127
Verifying : file-libs-5.11-35.el7.x86_64 29/127
Verifying : util-linux-2.23.2-59.el7.x86_64 30/127
Verifying : dracut-033-554.el7.x86_64 31/127
Verifying : python-urlgrabber-3.10-9.el7.noarch 32/127
Verifying : glibc-2.17-260.el7.x86_64 33/127
Verifying : gobject-introspection-1.56.1-1.el7.x86_64 34/127
Verifying : openldap-2.4.44-20.el7.tis.9.x86_64 35/127
Verifying : gnupg2-2.0.22-5.el7_5.x86_64 36/127
Verifying : binutils-2.27-34.base.el7.x86_64 37/127
Verifying : systemd-libs-219-62.el7_6.5.tis.11.x86_64 38/127
Verifying : setup-2.8.71-10.el7.tis.16.noarch 39/127
Verifying : 1:dbus-libs-1.10.24-12.el7.x86_64 40/127
Verifying : kmod-20-23.el7.x86_64 41/127
Verifying : elfutils-default-yama-scope-0.172-2.el7.noarch 42/127
Verifying : libmount-2.23.2-59.el7.x86_64 43/127
Verifying : 32:bind-license-9.9.4-72.el7.noarch 44/127
Verifying : 1:findutils-4.5.11-6.el7.x86_64 45/127
Verifying : tzdata-2018g-1.el7.noarch 46/127
Verifying : libcurl-7.29.0-51.el7_6.3.x86_64 47/127
Verifying : rpm-libs-4.14.0-1.tis.1.x86_64 48/127
Verifying : 2:tar-1.26-35.el7.x86_64 49/127
Verifying : python-libs-2.7.5-76.el7.tis.4.x86_64 50/127
Verifying : nss-3.36.0-7.el7_5.x86_64 51/127
Verifying : procps-ng-3.3.10-23.el7.x86_64 52/127
Verifying : 1:openssl-libs-1.0.2k-16.el7.x86_64 53/127
Verifying : rpm-4.14.0-1.tis.1.x86_64 54/127
Verifying : 2:shadow-utils-4.1.5.1-25.el7.x86_64 55/127
Verifying : audit-libs-2.8.4-4.el7.x86_64 56/127
Verifying : nss-pem-1.0.3-5.el7.x86_64 57/127
Verifying : kmod-libs-20-23.el7.x86_64 58/127
Verifying : libssh2-1.4.3-12.el7.x86_64 59/127
Verifying : yum-plugin-fastestmirror-1.1.31-50.el7.noarch 60/127
Verifying : json-c-0.11-4.el7_0.x86_64 61/127
Verifying : glibc-common-2.17-260.el7.x86_64 62/127
Verifying : rpm-python-4.14.0-1.tis.1.x86_64 63/127
Verifying : bash-4.2.46-31.el7.tis.4.x86_64 64/127
Verifying : 2:vim-minimal-7.4.160-5.el7.x86_64 65/127
Verifying : python-libs-2.7.5-68.el7.x86_64 66/127
Verifying : yum-utils-1.1.31-45.el7.noarch 67/127
Verifying : python-chardet-2.2.1-1.el7_1.noarch 68/127
Verifying : libssh2-1.4.3-10.el7_2.1.x86_64 69/127
Verifying : file-libs-5.11-33.el7.x86_64 70/127
Verifying : dracut-033-535.el7.x86_64 71/127
Verifying : gobject-introspection-1.50.0-1.el7.x86_64 72/127
Verifying : util-linux-2.23.2-52.el7.x86_64 73/127
Verifying : libcom_err-1.42.9-12.el7_5.x86_64 74/127
Verifying : libselinux-2.5-12.el7.x86_64 75/127
Verifying : libcurl-7.29.0-46.el7.x86_64 76/127
Verifying : libsepol-2.5-8.1.el7.x86_64 77/127
Verifying : openldap-2.4.44-15.el7_5.x86_64 78/127
Verifying : gnupg2-2.0.22-4.el7.x86_64 79/127
Verifying : rpm-4.11.3-32.el7.x86_64 80/127
Verifying : setup-2.8.71-9.el7.noarch 81/127
Verifying : 1:dbus-libs-1.10.24-7.el7.x86_64 82/127
Verifying : 1:openssl-libs-1.0.2k-12.el7.x86_64 83/127
Verifying : binutils-2.27-27.base.el7.x86_64 84/127
Verifying : elfutils-default-yama-scope-0.170-4.el7.noarch 85/127
Verifying : 2:vim-minimal-7.4.160-4.el7.x86_64 86/127
Verifying : glibc-2.17-222.el7.x86_64 87/127
Verifying : libmount-2.23.2-52.el7.x86_64 88/127
Verifying : libgcc-4.8.5-28.el7_5.1.x86_64 89/127
Verifying : 2:shadow-utils-4.1.5.1-24.el7.x86_64 90/127
Verifying : coreutils-8.22-21.el7.x86_64 91/127
Verifying : 32:bind-license-9.9.4-61.el7.noarch 92/127
Verifying : bash-4.2.46-30.el7.x86_64 93/127
Verifying : libuuid-2.23.2-52.el7.x86_64 94/127
Verifying : libsemanage-2.5-11.el7.x86_64 95/127
Verifying : tzdata-2018e-3.el7.noarch 96/127
Verifying : nss-pem-1.0.3-4.el7.x86_64 97/127
Verifying : curl-7.29.0-46.el7.x86_64 98/127
Verifying : audit-libs-2.8.1-3.el7.x86_64 99/127
Verifying : python-urlgrabber-3.10-8.el7.noarch 100/127
Verifying : yum-3.4.3-158.el7.centos.noarch 101/127
Verifying : kmod-20-21.el7.x86_64 102/127
Verifying : elfutils-libs-0.170-4.el7.x86_64 103/127
Verifying : glibc-common-2.17-222.el7.x86_64 104/127
Verifying : python-2.7.5-68.el7.x86_64 105/127
Verifying : procps-ng-3.3.10-17.el7_5.2.x86_64 106/127
Verifying : rpm-python-4.11.3-32.el7.x86_64 107/127
Verifying : nss-3.36.0-5.el7_5.x86_64 108/127
Verifying : elfutils-libelf-0.170-4.el7.x86_64 109/127
Verifying : rpm-build-libs-4.11.3-32.el7.x86_64 110/127
Verifying : nss-tools-3.36.0-5.el7_5.x86_64 111/127
Verifying : libblkid-2.23.2-52.el7.x86_64 112/127
Verifying : 1:dbus-1.10.24-7.el7.x86_64 113/127
Verifying : nss-sysinit-3.36.0-5.el7_5.x86_64 114/127
Verifying : krb5-libs-1.15.1-19.el7.x86_64 115/127
Verifying : zlib-1.2.7-17.el7.x86_64 116/127
Verifying : cryptsetup-libs-1.7.4-4.el7.x86_64 117/127
Verifying : centos-release-7-5.1804.el7.centos.2.x86_64 118/127
Verifying : kmod-libs-20-21.el7.x86_64 119/127
Verifying : systemd-219-57.el7.x86_64 120/127
Verifying : yum-plugin-fastestmirror-1.1.31-45.el7.noarch 121/127
Verifying : systemd-libs-219-57.el7.x86_64 122/127
Verifying : 1:findutils-4.5.11-5.el7.x86_64 123/127
Verifying : glib2-2.54.2-2.el7.x86_64 124/127
Verifying : 2:tar-1.26-34.el7.x86_64 125/127
Verifying : rpm-libs-4.11.3-32.el7.x86_64 126/127
Verifying : libstdc++-4.8.5-28.el7_5.1.x86_64 127/127
Installed:
python2-chardet.noarch 0:3.0.4-7.el7
Dependency Installed:
ima-evm-utils.x86_64 0:1.1-2.el7 json-c.x86_64 0:0.11-4.el7_0
libsmartcols.x86_64 0:2.23.2-59.el7
Updated:
audit-libs.x86_64 0:2.8.4-4.el7
bash.x86_64 0:4.2.46-31.el7.tis.4
bind-license.noarch 32:9.9.4-72.el7
binutils.x86_64 0:2.27-34.base.el7
centos-release.x86_64 0:7-6.1810.2.el7.centos
coreutils.x86_64 0:8.22-23.el7
cryptsetup-libs.x86_64 0:2.0.3-3.el7
curl.x86_64 0:7.29.0-51.el7_6.3
dbus.x86_64 1:1.10.24-12.el7
dbus-libs.x86_64 1:1.10.24-12.el7
dracut.x86_64 0:033-554.el7
elfutils-default-yama-scope.noarch 0:0.172-2.el7
elfutils-libelf.x86_64 0:0.172-2.el7
elfutils-libs.x86_64 0:0.172-2.el7
file-libs.x86_64 0:5.11-35.el7
findutils.x86_64 1:4.5.11-6.el7
glib2.x86_64 0:2.56.1-2.el7
glibc.x86_64 0:2.17-260.el7
glibc-common.x86_64 0:2.17-260.el7
gnupg2.x86_64 0:2.0.22-5.el7_5
gobject-introspection.x86_64 0:1.56.1-1.el7
kmod.x86_64 0:20-23.el7
kmod-libs.x86_64 0:20-23.el7
krb5-libs.x86_64 0:1.15.1-34.el7
libblkid.x86_64 0:2.23.2-59.el7
libcom_err.x86_64 0:1.42.9-13.el7
libcurl.x86_64 0:7.29.0-51.el7_6.3
libgcc.x86_64 0:4.8.5-36.el7
libmount.x86_64 0:2.23.2-59.el7
libselinux.x86_64 0:2.5-14.1.el7
libsemanage.x86_64 0:2.5-14.el7
libsepol.x86_64 0:2.5-10.el7
libssh2.x86_64 0:1.4.3-12.el7
libstdc++.x86_64 0:4.8.5-36.el7
libuuid.x86_64 0:2.23.2-59.el7
nss.x86_64 0:3.36.0-7.el7_5
nss-pem.x86_64 0:1.0.3-5.el7
nss-sysinit.x86_64 0:3.36.0-7.el7_5
nss-tools.x86_64 0:3.36.0-7.el7_5
openldap.x86_64 0:2.4.44-20.el7.tis.9
openssl-libs.x86_64 1:1.0.2k-16.el7
procps-ng.x86_64 0:3.3.10-23.el7
python.x86_64 0:2.7.5-76.el7.tis.4
python-libs.x86_64 0:2.7.5-76.el7.tis.4
python-urlgrabber.noarch 0:3.10-9.el7
rpm.x86_64 0:4.14.0-1.tis.1
rpm-build-libs.x86_64 0:4.14.0-1.tis.1
rpm-libs.x86_64 0:4.14.0-1.tis.1
rpm-python.x86_64 0:4.14.0-1.tis.1
setup.noarch 0:2.8.71-10.el7.tis.16
shadow-utils.x86_64 2:4.1.5.1-25.el7
systemd.x86_64 0:219-62.el7_6.5.tis.11
systemd-libs.x86_64 0:219-62.el7_6.5.tis.11
tar.x86_64 2:1.26-35.el7
tzdata.noarch 0:2018g-1.el7
util-linux.x86_64 0:2.23.2-59.el7
vim-minimal.x86_64 2:7.4.160-5.el7
yum.noarch 0:3.4.3-161.el7.centos
yum-plugin-fastestmirror.noarch 0:1.1.31-50.el7
yum-utils.noarch 0:1.1.31-50.el7
zlib.x86_64 0:1.2.7-18.el7
Replaced:
python-chardet.noarch 0:2.2.1-1.el7_1
Complete!
[91m+ yum install '--disablerepo=*' --enablerepo=local-stx-build --enablerepo=stx-distro -y qemu-img openssh-clients python3 python3-pip
[0mLoaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package openssh-clients.x86_64 0:7.4p1-16.el7_4.tis.10 will be installed
--> Processing Dependency: openssh = 7.4p1-16.el7_4.tis.10 for package: openssh-clients-7.4p1-16.el7_4.tis.10.x86_64
--> Processing Dependency: fipscheck-lib(x86-64) >= 1.3.0 for package: openssh-clients-7.4p1-16.el7_4.tis.10.x86_64
--> Processing Dependency: libedit.so.0()(64bit) for package: openssh-clients-7.4p1-16.el7_4.tis.10.x86_64
--> Processing Dependency: libfipscheck.so.1()(64bit) for package: openssh-clients-7.4p1-16.el7_4.tis.10.x86_64
---> Package python3.x86_64 0:3.6.8-10.el7 will be installed
--> Processing Dependency: python3-libs(x86-64) = 3.6.8-10.el7 for package: python3-3.6.8-10.el7.x86_64
--> Processing Dependency: python3-setuptools for package: python3-3.6.8-10.el7.x86_64
--> Processing Dependency: libpython3.6m.so.1.0()(64bit) for package: python3-3.6.8-10.el7.x86_64
---> Package python3-pip.noarch 0:9.0.3-5.el7 will be installed
---> Package qemu-img-ev.x86_64 10:3.0.0-0.tis.100 will be installed
--> Processing Dependency: libaio.so.1(LIBAIO_0.1)(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: libaio.so.1(LIBAIO_0.4)(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: libgnutls.so.28(GNUTLS_3_1_0)(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: libaio.so.1()(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: libgnutls.so.28()(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: libnettle.so.4()(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: librados.so.2()(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: librbd.so.1()(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Processing Dependency: libtcmalloc.so.4()(64bit) for package: 10:qemu-img-ev-3.0.0-0.tis.100.x86_64
--> Running transaction check
---> Package fipscheck-lib.x86_64 0:1.4.1-6.el7 will be installed
--> Processing Dependency: /usr/bin/fipscheck for package: fipscheck-lib-1.4.1-6.el7.x86_64
---> Package gnutls.x86_64 0:3.3.29-8.el7 will be installed
--> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-8.el7.x86_64
---> Package gperftools-libs.x86_64 0:2.6.1-1.el7 will be installed
---> Package libaio.x86_64 0:0.3.109-13.el7 will be installed
---> Package libedit.x86_64 0:3.0-12.20121213cvs.el7 will be installed
---> Package librados2.x86_64 2:13.2.2-0.el7.tis.28 will be installed
--> Processing Dependency: libibverbs.so.1(IBVERBS_1.0)(64bit) for package: 2:librados2-13.2.2-0.el7.tis.28.x86_64
--> Processing Dependency: libibverbs.so.1(IBVERBS_1.1)(64bit) for package: 2:librados2-13.2.2-0.el7.tis.28.x86_64
--> Processing Dependency: libibverbs.so.1()(64bit) for package: 2:librados2-13.2.2-0.el7.tis.28.x86_64
---> Package librbd1.x86_64 2:13.2.2-0.el7.tis.28 will be installed
---> Package nettle.x86_64 0:2.7.1-8.el7 will be installed
---> Package openssh.x86_64 0:7.4p1-16.el7_4.tis.10 will be installed
---> Package python3-libs.x86_64 0:3.6.8-10.el7 will be installed
--> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.6.8-10.el7.x86_64
---> Package python3-setuptools.noarch 0:39.2.0-10.el7 will be installed
--> Running transaction check
---> Package fipscheck.x86_64 0:1.4.1-6.el7 will be installed
---> Package libibverbs.x86_64 0:45mlnx1-1.45101.tis.1 will be installed
--> Processing Dependency: rdma-core(x86-64) = 45mlnx1-1.45101.tis.1 for package: libibverbs-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: libnl-3.so.200(libnl_3)(64bit) for package: libibverbs-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: libnl-route-3.so.200(libnl_3)(64bit) for package: libibverbs-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: libnl-3.so.200()(64bit) for package: libibverbs-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: libnl-route-3.so.200()(64bit) for package: libibverbs-45mlnx1-1.45101.tis.1.x86_64
---> Package libtirpc.x86_64 0:0.2.4-0.15.el7 will be installed
---> Package trousers.x86_64 0:0.3.14-2.el7 will be installed
--> Running transaction check
---> Package libnl3.x86_64 0:3.2.28-4.el7 will be installed
---> Package rdma-core.x86_64 0:45mlnx1-1.45101.tis.1 will be installed
--> Processing Dependency: /usr/bin/perl for package: rdma-core-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: pciutils for package: rdma-core-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: perl(File::Basename) for package: rdma-core-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: perl(File::Path) for package: rdma-core-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: perl(Getopt::Long) for package: rdma-core-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: perl(strict) for package: rdma-core-45mlnx1-1.45101.tis.1.x86_64
--> Processing Dependency: perl(warnings) for package: rdma-core-45mlnx1-1.45101.tis.1.x86_64
--> Running transaction check
---> Package pciutils.x86_64 0:3.5.1-3.el7 will be installed
--> Processing Dependency: pciutils-libs = 3.5.1-3.el7 for package: pciutils-3.5.1-3.el7.x86_64
--> Processing Dependency: libpci.so.3(LIBPCI_3.5)(64bit) for package: pciutils-3.5.1-3.el7.x86_64
--> Processing Dependency: libpci.so.3(LIBPCI_3.3)(64bit) for package: pciutils-3.5.1-3.el7.x86_64
--> Processing Dependency: libpci.so.3(LIBPCI_3.1)(64bit) for package: pciutils-3.5.1-3.el7.x86_64
--> Processing Dependency: libpci.so.3(LIBPCI_3.0)(64bit) for package: pciutils-3.5.1-3.el7.x86_64
--> Processing Dependency: hwdata for package: pciutils-3.5.1-3.el7.x86_64
--> Processing Dependency: libpci.so.3()(64bit) for package: pciutils-3.5.1-3.el7.x86_64
---> Package perl.x86_64 4:5.16.3-294.el7_6 will be installed
--> Processing Dependency: perl-libs = 4:5.16.3-294.el7_6 for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(File::Spec::Unix) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(File::Spec::Functions) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(File::Spec) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Cwd) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-294.el7_6.x86_64
--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-294.el7_6.x86_64
---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed
---> Package perl-Getopt-Long.noarch 0:2.40-3.el7 will be installed
--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.el7.noarch
--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.el7.noarch
--> Running transaction check
---> Package hwdata.x86_64 0:0.252-9.1.el7 will be installed
---> Package pciutils-libs.x86_64 0:3.5.1-3.el7 will be installed
---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed
---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed
---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed
---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed
---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed
---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed
--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed
--> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch
--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch
---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed
---> Package perl-Socket.x86_64 0:2.010-4.el7 will be installed
---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed
---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed
---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed
---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed
---> Package perl-constant.noarch 0:1.27-2.el7 will be installed
---> Package perl-libs.x86_64 4:5.16.3-294.el7_6 will be installed
---> Package perl-macros.x86_64 4:5.16.3-294.el7_6 will be installed
---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed
---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed
--> Running transaction check
---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed
---> Package perl-Pod-Escapes.noarch 1:1.04-294.el7_6 will be installed
---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed
--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
--> Processing Dependency: groff-base for package: perl-Pod-Perldoc-3.20-4.el7.noarch
---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed
--> Running transaction check
---> Package groff-base.x86_64 0:1.22.2-8.el7 will be installed
---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed
---> Package perl-parent.noarch 1:0.225-244.el7 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
openssh-clients x86_64 7.4p1-16.el7_4.tis.10 local-stx-build 659 k
python3 x86_64 3.6.8-10.el7 stx-distro 69 k
python3-pip noarch 9.0.3-5.el7 stx-distro 1.8 M
qemu-img-ev x86_64 10:3.0.0-0.tis.100 local-stx-build 1.2 M
Installing for dependencies:
fipscheck x86_64 1.4.1-6.el7 stx-distro 21 k
fipscheck-lib x86_64 1.4.1-6.el7 stx-distro 11 k
gnutls x86_64 3.3.29-8.el7 stx-distro 680 k
gperftools-libs x86_64 2.6.1-1.el7 stx-distro 272 k
groff-base x86_64 1.22.2-8.el7 stx-distro 942 k
hwdata x86_64 0.252-9.1.el7 stx-distro 2.3 M
libaio x86_64 0.3.109-13.el7 stx-distro 24 k
libedit x86_64 3.0-12.20121213cvs.el7 stx-distro 92 k
libibverbs x86_64 45mlnx1-1.45101.tis.1 local-stx-build 130 k
libnl3 x86_64 3.2.28-4.el7 stx-distro 278 k
librados2 x86_64 2:13.2.2-0.el7.tis.28 local-stx-build 2.7 M
librbd1 x86_64 2:13.2.2-0.el7.tis.28 local-stx-build 1.1 M
libtirpc x86_64 0.2.4-0.15.el7 stx-distro 89 k
nettle x86_64 2.7.1-8.el7 stx-distro 327 k
openssh x86_64 7.4p1-16.el7_4.tis.10 local-stx-build 513 k
pciutils x86_64 3.5.1-3.el7 stx-distro 93 k
pciutils-libs x86_64 3.5.1-3.el7 stx-distro 46 k
perl x86_64 4:5.16.3-294.el7_6 stx-distro 8.0 M
perl-Carp noarch 1.26-244.el7 stx-distro 19 k
perl-Encode x86_64 2.51-7.el7 stx-distro 1.5 M
perl-Exporter noarch 5.68-3.el7 stx-distro 28 k
perl-File-Path noarch 2.09-2.el7 stx-distro 26 k
perl-File-Temp noarch 0.23.01-3.el7 stx-distro 56 k
perl-Filter x86_64 1.49-3.el7 stx-distro 76 k
perl-Getopt-Long noarch 2.40-3.el7 stx-distro 56 k
perl-HTTP-Tiny noarch 0.033-3.el7 stx-distro 38 k
perl-PathTools x86_64 3.40-5.el7 stx-distro 82 k
perl-Pod-Escapes noarch 1:1.04-294.el7_6 stx-distro 51 k
perl-Pod-Perldoc noarch 3.20-4.el7 stx-distro 87 k
perl-Pod-Simple noarch 1:3.28-4.el7 stx-distro 216 k
perl-Pod-Usage noarch 1.63-3.el7 stx-distro 27 k
perl-Scalar-List-Utils x86_64 1.27-248.el7 stx-distro 36 k
perl-Socket x86_64 2.010-4.el7 stx-distro 49 k
perl-Storable x86_64 2.45-3.el7 stx-distro 77 k
perl-Text-ParseWords noarch 3.29-4.el7 stx-distro 14 k
perl-Time-HiRes x86_64 4:1.9725-3.el7 stx-distro 45 k
perl-Time-Local noarch 1.2300-2.el7 stx-distro 24 k
perl-constant noarch 1.27-2.el7 stx-distro 19 k
perl-libs x86_64 4:5.16.3-294.el7_6 stx-distro 688 k
perl-macros x86_64 4:5.16.3-294.el7_6 stx-distro 44 k
perl-parent noarch 1:0.225-244.el7 stx-distro 12 k
perl-podlators noarch 2.5.1-3.el7 stx-distro 112 k
perl-threads x86_64 1.87-4.el7 stx-distro 49 k
perl-threads-shared x86_64 1.43-6.el7 stx-distro 39 k
python3-libs x86_64 3.6.8-10.el7 stx-distro 7.0 M
python3-setuptools noarch 39.2.0-10.el7 stx-distro 629 k
rdma-core x86_64 45mlnx1-1.45101.tis.1 local-stx-build 35 k
trousers x86_64 0.3.14-2.el7 stx-distro 289 k
Transaction Summary
================================================================================
Install 4 Packages (+48 Dependent packages)
Total download size: 33 M
Installed size: 129 M
Downloading packages:
--------------------------------------------------------------------------------
Total 82 MB/s | 33 MB 00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : fipscheck-1.4.1-6.el7.x86_64 1/52
Installing : fipscheck-lib-1.4.1-6.el7.x86_64 2/52
Installing : nettle-2.7.1-8.el7.x86_64 3/52
install-info: No such file or directory for /usr/share/info/nettle.info
Installing : openssh-7.4p1-16.el7_4.tis.10.x86_64 4/52
Installing : libtirpc-0.2.4-0.15.el7.x86_64 5/52
Installing : python3-pip-9.0.3-5.el7.noarch 6/52
Installing : python3-setuptools-39.2.0-10.el7.noarch 7/52
Installing : python3-3.6.8-10.el7.x86_64 8/52
Installing : python3-libs-3.6.8-10.el7.x86_64 9/52
Installing : libnl3-3.2.28-4.el7.x86_64 10/52
Installing : gperftools-libs-2.6.1-1.el7.x86_64 11/52
Installing : libedit-3.0-12.20121213cvs.el7.x86_64 12/52
Installing : libaio-0.3.109-13.el7.x86_64 13/52
Installing : hwdata-0.252-9.1.el7.x86_64 14/52
Installing : pciutils-libs-3.5.1-3.el7.x86_64 15/52
Installing : pciutils-3.5.1-3.el7.x86_64 16/52
Installing : groff-base-1.22.2-8.el7.x86_64 17/52
Installing : 1:perl-parent-0.225-244.el7.noarch 18/52
Installing : perl-HTTP-Tiny-0.033-3.el7.noarch 19/52
Installing : perl-Pod-Perldoc-3.20-4.el7.noarch 20/52
Installing : perl-podlators-2.5.1-3.el7.noarch 21/52
Installing : 1:perl-Pod-Escapes-1.04-294.el7_6.noarch 22/52
Installing : perl-Encode-2.51-7.el7.x86_64 23/52
Installing : perl-Pod-Usage-1.63-3.el7.noarch 24/52
Installing : perl-Text-ParseWords-3.29-4.el7.noarch 25/52
Installing : 4:perl-libs-5.16.3-294.el7_6.x86_64 26/52
Installing : 4:perl-macros-5.16.3-294.el7_6.x86_64 27/52
Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 28/52
Installing : perl-Carp-1.26-244.el7.noarch 29/52
Installing : perl-Storable-2.45-3.el7.x86_64 30/52
Installing : perl-PathTools-3.40-5.el7.x86_64 31/52
Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64 32/52
Installing : perl-Exporter-5.68-3.el7.noarch 33/52
Installing : perl-Time-Local-1.2300-2.el7.noarch 34/52
Installing : perl-constant-1.27-2.el7.noarch 35/52
Installing : perl-File-Temp-0.23.01-3.el7.noarch 36/52
Installing : perl-File-Path-2.09-2.el7.noarch 37/52
Installing : perl-threads-shared-1.43-6.el7.x86_64 38/52
Installing : perl-threads-1.87-4.el7.x86_64 39/52
Installing : perl-Filter-1.49-3.el7.x86_64 40/52
Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch 41/52
Installing : perl-Getopt-Long-2.40-3.el7.noarch 42/52
Installing : perl-Socket-2.010-4.el7.x86_64 43/52
Installing : 4:perl-5.16.3-294.el7_6.x86_64 44/52
Installing : rdma-core-45mlnx1-1.45101.tis.1.x86_64 45/52
Installing : libibverbs-45mlnx1-1.45101.tis.1.x86_64 46/52
Installing : 2:librados2-13.2.2-0.el7.tis.28.x86_64 47/52
Installing : 2:librbd1-13.2.2-0.el7.tis.28.x86_64 48/52
Installing : trousers-0.3.14-2.el7.x86_64 49/52
Installing : gnutls-3.3.29-8.el7.x86_64 50/52
Installing : 10:qemu-img-ev-3.0.0-0.tis.100.x86_64 51/52
Installing : openssh-clients-7.4p1-16.el7_4.tis.10.x86_64 52/52
Verifying : fipscheck-lib-1.4.1-6.el7.x86_64 1/52
Verifying : trousers-0.3.14-2.el7.x86_64 2/52
Verifying : perl-Socket-2.010-4.el7.x86_64 3/52
Verifying : perl-threads-shared-1.43-6.el7.x86_64 4/52
Verifying : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 5/52
Verifying : python3-libs-3.6.8-10.el7.x86_64 6/52
Verifying : groff-base-1.22.2-8.el7.x86_64 7/52
Verifying : 2:librbd1-13.2.2-0.el7.tis.28.x86_64 8/52
Verifying : pciutils-libs-3.5.1-3.el7.x86_64 9/52
Verifying : perl-PathTools-3.40-5.el7.x86_64 10/52
Verifying : 1:perl-Pod-Escapes-1.04-294.el7_6.noarch 11/52
Verifying : gnutls-3.3.29-8.el7.x86_64 12/52
Verifying : nettle-2.7.1-8.el7.x86_64 13/52
Verifying : python3-pip-9.0.3-5.el7.noarch 14/52
Verifying : 1:perl-parent-0.225-244.el7.noarch 15/52
Verifying : 4:perl-libs-5.16.3-294.el7_6.x86_64 16/52
Verifying : hwdata-0.252-9.1.el7.x86_64 17/52
Verifying : perl-File-Temp-0.23.01-3.el7.noarch 18/52
Verifying : 1:perl-Pod-Simple-3.28-4.el7.noarch 19/52
Verifying : openssh-clients-7.4p1-16.el7_4.tis.10.x86_64 20/52
Verifying : perl-Time-Local-1.2300-2.el7.noarch 21/52
Verifying : libibverbs-45mlnx1-1.45101.tis.1.x86_64 22/52
Verifying : libaio-0.3.109-13.el7.x86_64 23/52
Verifying : 4:perl-macros-5.16.3-294.el7_6.x86_64 24/52
Verifying : 4:perl-5.16.3-294.el7_6.x86_64 25/52
Verifying : perl-Encode-2.51-7.el7.x86_64 26/52
Verifying : perl-Carp-1.26-244.el7.noarch 27/52
Verifying : 10:qemu-img-ev-3.0.0-0.tis.100.x86_64 28/52
Verifying : fipscheck-1.4.1-6.el7.x86_64 29/52
Verifying : perl-Storable-2.45-3.el7.x86_64 30/52
Verifying : perl-Scalar-List-Utils-1.27-248.el7.x86_64 31/52
Verifying : rdma-core-45mlnx1-1.45101.tis.1.x86_64 32/52
Verifying : python3-setuptools-39.2.0-10.el7.noarch 33/52
Verifying : perl-Pod-Usage-1.63-3.el7.noarch 34/52
Verifying : python3-3.6.8-10.el7.x86_64 35/52
Verifying : 2:librados2-13.2.2-0.el7.tis.28.x86_64 36/52
Verifying : perl-Exporter-5.68-3.el7.noarch 37/52
Verifying : perl-HTTP-Tiny-0.033-3.el7.noarch 38/52
Verifying : perl-Pod-Perldoc-3.20-4.el7.noarch 39/52
Verifying : perl-podlators-2.5.1-3.el7.noarch 40/52
Verifying : perl-constant-1.27-2.el7.noarch 41/52
Verifying : perl-File-Path-2.09-2.el7.noarch 42/52
Verifying : libedit-3.0-12.20121213cvs.el7.x86_64 43/52
Verifying : perl-threads-1.87-4.el7.x86_64 44/52
Verifying : gperftools-libs-2.6.1-1.el7.x86_64 45/52
Verifying : libnl3-3.2.28-4.el7.x86_64 46/52
Verifying : perl-Filter-1.49-3.el7.x86_64 47/52
Verifying : perl-Getopt-Long-2.40-3.el7.noarch 48/52
Verifying : perl-Text-ParseWords-3.29-4.el7.noarch 49/52
Verifying : openssh-7.4p1-16.el7_4.tis.10.x86_64 50/52
Verifying : pciutils-3.5.1-3.el7.x86_64 51/52
Verifying : libtirpc-0.2.4-0.15.el7.x86_64 52/52
Installed:
openssh-clients.x86_64 0:7.4p1-16.el7_4.tis.10
python3.x86_64 0:3.6.8-10.el7
python3-pip.noarch 0:9.0.3-5.el7
qemu-img-ev.x86_64 10:3.0.0-0.tis.100
Dependency Installed:
fipscheck.x86_64 0:1.4.1-6.el7
fipscheck-lib.x86_64 0:1.4.1-6.el7
gnutls.x86_64 0:3.3.29-8.el7
gperftools-libs.x86_64 0:2.6.1-1.el7
groff-base.x86_64 0:1.22.2-8.el7
hwdata.x86_64 0:0.252-9.1.el7
libaio.x86_64 0:0.3.109-13.el7
libedit.x86_64 0:3.0-12.20121213cvs.el7
libibverbs.x86_64 0:45mlnx1-1.45101.tis.1
libnl3.x86_64 0:3.2.28-4.el7
librados2.x86_64 2:13.2.2-0.el7.tis.28
librbd1.x86_64 2:13.2.2-0.el7.tis.28
libtirpc.x86_64 0:0.2.4-0.15.el7
nettle.x86_64 0:2.7.1-8.el7
openssh.x86_64 0:7.4p1-16.el7_4.tis.10
pciutils.x86_64 0:3.5.1-3.el7
pciutils-libs.x86_64 0:3.5.1-3.el7
perl.x86_64 4:5.16.3-294.el7_6
perl-Carp.noarch 0:1.26-244.el7
perl-Encode.x86_64 0:2.51-7.el7
perl-Exporter.noarch 0:5.68-3.el7
perl-File-Path.noarch 0:2.09-2.el7
perl-File-Temp.noarch 0:0.23.01-3.el7
perl-Filter.x86_64 0:1.49-3.el7
perl-Getopt-Long.noarch 0:2.40-3.el7
perl-HTTP-Tiny.noarch 0:0.033-3.el7
perl-PathTools.x86_64 0:3.40-5.el7
perl-Pod-Escapes.noarch 1:1.04-294.el7_6
perl-Pod-Perldoc.noarch 0:3.20-4.el7
perl-Pod-Simple.noarch 1:3.28-4.el7
perl-Pod-Usage.noarch 0:1.63-3.el7
perl-Scalar-List-Utils.x86_64 0:1.27-248.el7
perl-Socket.x86_64 0:2.010-4.el7
perl-Storable.x86_64 0:2.45-3.el7
perl-Text-ParseWords.noarch 0:3.29-4.el7
perl-Time-HiRes.x86_64 4:1.9725-3.el7
perl-Time-Local.noarch 0:1.2300-2.el7
perl-constant.noarch 0:1.27-2.el7
perl-libs.x86_64 4:5.16.3-294.el7_6
perl-macros.x86_64 4:5.16.3-294.el7_6
perl-parent.noarch 1:0.225-244.el7
perl-podlators.noarch 0:2.5.1-3.el7
perl-threads.x86_64 0:1.87-4.el7
perl-threads-shared.x86_64 0:1.43-6.el7
python3-libs.x86_64 0:3.6.8-10.el7
python3-setuptools.noarch 0:39.2.0-10.el7
rdma-core.x86_64 0:45mlnx1-1.45101.tis.1
trousers.x86_64 0:0.3.14-2.el7
Complete!
[91m+ rm -rf /var/log/btmp /var/log/grubby_prune_debug /var/log/lastlog /var/log/tallylog /var/log/wtmp /var/log/yum.log /tmp/ks-script-3QMvMi /tmp/yum.log '/var/tmp/*'
[0mRemoving intermediate container bf1a06169310
---> 66e72eaa40ee
Successfully built 66e72eaa40ee
Successfully tagged 172.16.206.38:5000/chant/stx-centos:master-stable-chant
Pushing image: 172.16.206.38:5000/chant/stx-centos:master-stable-chant
The push refers to repository [172.16.206.38:5000/chant/stx-centos]
8338fda74991: Preparing
ad423ef1360b: Preparing
4826cdadf1ef: Preparing
4826cdadf1ef: Layer already exists
ad423ef1360b: Pushed
8338fda74991: Pushed
master-stable-chant: digest: sha256:e03346d8339f12dabc7c52dda90edfe60c9d3f6fdac399e5cdf381d7c9f304c8 size: 949
7. Clean or not