-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstx-nova-python3-img.log
More file actions
1912 lines (1896 loc) · 125 KB
/
stx-nova-python3-img.log
File metadata and controls
1912 lines (1896 loc) · 125 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
996
997
998
999
1000
check base images
172.16.206.38:5000/chant/stx-centos:master-stable-chant
pull stx base images
master-stable-chant: Pulling from chant/stx-centos
Digest: sha256:4e45606df688d256a31eea6a48b28b2daadf4cc3a826be66b8d09a117c9793cc
Status: Image is up to date for 172.16.206.38:5000/chant/stx-centos:master-stable-chant
172.16.206.38:5000/chant/stx-centos:master-stable-chant
Download loci
M Dockerfile
M scripts/fetch_wheels.py
M scripts/fetch_wheels.sh
Find the directive files
GIT_LIST=/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root
GIT_LIST_REL=./cgcs-root
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/distributedcloud/centos_stable_docker_images.inc
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/distributedcloud
distributedcloud
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/distributedcloud/distributedcloud/centos/stx-keystone-api-proxy.stable_docker_image
in loci
skip value
space 0
proj
label stx-keystone-api-proxy
only value
stx-nova
space 1
proj infra
label stx-keystone-api-proxy
Skipping stx-keystone-api-proxy
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/fault/centos_stable_docker_images.inc
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/fault
fm-rest-api
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/fault/fm-rest-api/centos/stx-fm-rest-api.stable_docker_image
in loci
skip value
space 0
proj
label stx-fm-rest-api
only value
stx-nova
space 1
proj infra
label stx-fm-rest-api
Skipping stx-fm-rest-api
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/integ/centos_stable_docker_images.inc
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/integ
database/mariadb
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/integ/database/mariadb/centos/stx-mariadb.stable_docker_image
in docker
Skipping stx-mariadb
kubernetes/cni/sriov-cni
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/integ/kubernetes/cni/sriov-cni/centos/k8s-cni-sriov.stable_docker_image
in docker
Skipping k8s-cni-sriov
kubernetes/plugins/sriov-network-device-plugin
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/integ/kubernetes/plugins/sriov-network-device-plugin/centos/k8s-plugins-sriov-network-device.stable_docker_image
in docker
Skipping k8s-plugins-sriov-network-device
networking/openvswitch
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/integ/networking/openvswitch/centos/stx-ovs.stable_docker_image
in docker
Skipping stx-ovs
virt/libvirt
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/integ/virt/libvirt/centos/stx-libvirt.stable_docker_image
in docker
Skipping stx-libvirt
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/nfv/centos_stable_docker_images.inc
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/nfv
./nova-api-proxy
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/nfv/./nova-api-proxy/centos/stx-nova-api-proxy.stable_docker_image
in loci
skip value
space 0
proj
label stx-nova-api-proxy
only value
stx-nova
space 1
proj infra
label stx-nova-api-proxy
Skipping stx-nova-api-proxy
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/centos_stable_docker_images.inc
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream
openstack/openstack-aodh
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/openstack-aodh/centos/stx-aodh.stable_docker_image
in loci
skip value
space 0
proj
label stx-aodh
only value
stx-nova
space 1
proj aodh
label stx-aodh
Skipping stx-aodh
openstack/openstack-ironic
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/openstack-ironic/centos/stx-ironic.stable_docker_image
in loci
skip value
space 0
proj
label stx-ironic
only value
stx-nova
space 1
proj ironic
label stx-ironic
Skipping stx-ironic
openstack/openstack-panko
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/openstack-panko/centos/stx-panko.stable_docker_image
in loci
skip value
space 0
proj
label stx-panko
only value
stx-nova
space 1
proj panko
label stx-panko
Skipping stx-panko
openstack/python-barbican
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-barbican/centos/stx-barbican.stable_docker_image
in loci
skip value
space 0
proj
label stx-barbican
only value
stx-nova
space 1
proj barbican
label stx-barbican
Skipping stx-barbican
openstack/python-ceilometer
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-ceilometer/centos/stx-ceilometer.stable_docker_image
in loci
skip value
space 0
proj
label stx-ceilometer
only value
stx-nova
space 1
proj ceilometer
label stx-ceilometer
Skipping stx-ceilometer
openstack/python-cinder
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-cinder/centos/stx-cinder.stable_docker_image
in loci
skip value
space 0
proj
label stx-cinder
only value
stx-nova
space 1
proj cinder
label stx-cinder
Skipping stx-cinder
openstack/python-glance
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-glance/centos/stx-glance.stable_docker_image
in loci
skip value
space 0
proj
label stx-glance
only value
stx-nova
space 1
proj glance
label stx-glance
Skipping stx-glance
openstack/python-gnocchi
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-gnocchi/centos/stx-gnocchi.stable_docker_image
in loci
skip value
space 0
proj
label stx-gnocchi
only value
stx-nova
space 1
proj gnocchi
label stx-gnocchi
Skipping stx-gnocchi
openstack/python-heat/openstack-heat
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-heat/openstack-heat/centos/stx-heat.stable_docker_image
in loci
skip value
space 0
proj
label stx-heat
only value
stx-nova
space 1
proj heat
label stx-heat
Skipping stx-heat
openstack/python-horizon
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-horizon/centos/stx-horizon.stable_docker_image
in loci
skip value
space 0
proj
label stx-horizon
only value
stx-nova
space 1
proj horizon
label stx-horizon
Skipping stx-horizon
openstack/python-keystone
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-keystone/centos/stx-keystone.stable_docker_image
in loci
skip value
space 0
proj
label stx-keystone
only value
stx-nova
space 1
proj keystone
label stx-keystone
Skipping stx-keystone
openstack/python-neutron
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-neutron/centos/stx-neutron.stable_docker_image
in loci
skip value
space 0
proj
label stx-neutron
only value
stx-nova
space 1
proj neutron
label stx-neutron
Skipping stx-neutron
openstack/python-nova
/home/chant/starlingx/workspace/localdisk/designer/chant/starlingx/cgcs-root/stx/upstream/openstack/python-nova/centos/stx-nova.stable_docker_image
in loci
skip value
space 0
proj
label stx-nova
only value
stx-nova
space 1
proj nova
label stx-nova
Building stx-nova
Running: docker build /home/chant/starlingx/workspace/localdisk/loadbuild/chant/starlingx//std/build-images/loci --no-cache --build-arg PROJECT=nova --build-arg PROJECT_REPO=https://opendev.org/openstack/nova.git --build-arg FROM=172.16.206.38:5000/chant/stx-centos:master-stable-chant --build-arg WHEELS=http://172.16.206.38:8080/stx-centos-stable-wheels.tar --build-arg PIP_PACKAGES=pycrypto httplib2 pylint python-ironicclient --build-arg DIST_PACKAGES=openssh-clients openssh-server libvirt e2fsprogs --build-arg PROFILES=fluent nova ceph linuxbridge openvswitch configdrive qemu apache --tag chant/stx-nova:dev-centos-stable-build
Sending build context to Docker daemon 521.2kB
Step 1/26 : ARG FROM=ubuntu:xenial
Step 2/26 : FROM ${FROM}
---> 069428bcc024
Step 3/26 : ENV PATH=/var/lib/openstack/bin:$PATH
---> Running in 7405f70fda02
Removing intermediate container 7405f70fda02
---> 7fcacfd0ae6f
Step 4/26 : ARG PROJECT
---> Running in 654b34a5d703
Removing intermediate container 654b34a5d703
---> 546f7528dc8c
Step 5/26 : ARG WHEELS=loci/requirements:master-ubuntu
---> Running in 528373f2c64a
Removing intermediate container 528373f2c64a
---> 8e1aaed1eafe
Step 6/26 : ARG PROJECT_REPO=https://git.openstack.org/openstack/${PROJECT}
---> Running in acada61d5f3c
Removing intermediate container acada61d5f3c
---> efa3f2ad3b84
Step 7/26 : ARG PROJECT_REF=master
---> Running in a9ad6f05910d
Removing intermediate container a9ad6f05910d
---> 6807c60db7c3
Step 8/26 : ARG DISTRO
---> Running in 92303be8e0f7
Removing intermediate container 92303be8e0f7
---> 6affb1a780a5
Step 9/26 : ARG PROFILES
---> Running in 4efc6453aca4
Removing intermediate container 4efc6453aca4
---> dff4dbeb5177
Step 10/26 : ARG PIP_PACKAGES=""
---> Running in 245ec79e4d3c
Removing intermediate container 245ec79e4d3c
---> b30d0e0fca08
Step 11/26 : ARG PIP_ARGS=""
---> Running in 4264972056e2
Removing intermediate container 4264972056e2
---> 8b9a8a9b8bb3
Step 12/26 : ARG PIP_WHEEL_ARGS=$PIP_ARGS
---> Running in 9430cd01caae
Removing intermediate container 9430cd01caae
---> 8d9366df6384
Step 13/26 : ARG DIST_PACKAGES=""
---> Running in 237b790ad16c
Removing intermediate container 237b790ad16c
---> 5c1c2102eaae
Step 14/26 : ARG PLUGIN=no
---> Running in 752c437ae4c5
Removing intermediate container 752c437ae4c5
---> 26814d195cd2
Step 15/26 : ARG PYTHON3=yes
---> Running in 8331b5df418e
Removing intermediate container 8331b5df418e
---> c6f3fb450ffc
Step 16/26 : ARG EXTRA_BINDEP=""
---> Running in 0d4ff91e1078
Removing intermediate container 0d4ff91e1078
---> eecd4da6b907
Step 17/26 : ARG EXTRA_PYDEP=""
---> Running in a3a9e8bc81e0
Removing intermediate container a3a9e8bc81e0
---> f74e0259a7e7
Step 18/26 : ARG UID=42424
---> Running in 55c837e9b4ea
Removing intermediate container 55c837e9b4ea
---> 4164945ff8c8
Step 19/26 : ARG GID=42424
---> Running in 6036e9be33ec
Removing intermediate container 6036e9be33ec
---> 7204a8d25558
Step 20/26 : ARG NOVNC_REPO=https://github.com/novnc/novnc
---> Running in cc4ed9b02347
Removing intermediate container cc4ed9b02347
---> b59dc9370cc6
Step 21/26 : ARG NOVNC_REF=v1.0.0
---> Running in f1ac6d32ced9
Removing intermediate container f1ac6d32ced9
---> a4a149859897
Step 22/26 : ARG SPICE_REPO=https://gitlab.freedesktop.org/spice/spice-html5.git
---> Running in e7eca3bd591d
Removing intermediate container e7eca3bd591d
---> abffb440718f
Step 23/26 : ARG SPICE_REF=spice-html5-0.1.6
---> Running in 8f90eb47c738
Removing intermediate container 8f90eb47c738
---> a981dfa28fbe
Step 24/26 : COPY scripts /opt/loci/scripts
---> 2e40bf69f13e
Step 25/26 : ADD bindep.txt pydep.txt $EXTRA_BINDEP $EXTRA_PYDEP /opt/loci/
---> ea747ef9fac4
Step 26/26 : RUN /opt/loci/scripts/install.sh
---> Running in 1a138cca687b
[91m++ awk -F= '/^ID=/ {gsub(/\"/, "", $2); print $2}' /etc/centos-release /etc/os-release /etc/redhat-release /etc/system-release
[0m[91m+ distro=centos
+ export distro=centos
+ distro=centos
[0m[91m+ [[ yes == \n\o ]]
+ dpkg_python_packages=("python3" "python3-virtualenv")
[0m[91m+ rpm_python_packages=("python3" "python3-virtualenv")
[0m[91m+ case ${distro} in
+ yum upgrade -y
[0mLoaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: mirrors.tuna.tsinghua.edu.cn
* extras: mirrors.ustc.edu.cn
* updates: mirrors.ustc.edu.cn
Resolving Dependencies
--> Running transaction check
---> Package audit-libs.x86_64 0:2.8.4-4.el7 will be updated
---> Package audit-libs.x86_64 0:2.8.5-4.el7 will be an update
---> Package bash.x86_64 0:4.2.46-31.el7.tis.4 will be updated
---> Package bash.x86_64 0:4.2.46-33.el7 will be an update
---> Package bind-license.noarch 32:9.9.4-72.el7 will be updated
---> Package bind-license.noarch 32:9.11.4-9.P2.el7 will be an update
---> Package binutils.x86_64 0:2.27-34.base.el7 will be updated
---> Package binutils.x86_64 0:2.27-41.base.el7_7.2 will be an update
---> Package ca-certificates.noarch 0:2018.2.22-70.0.el7_5 will be updated
---> Package ca-certificates.noarch 0:2019.2.32-76.el7_7 will be an update
---> Package centos-release.x86_64 0:7-6.1810.2.el7.centos will be updated
---> Package centos-release.x86_64 0:7-7.1908.0.el7.centos will be an update
---> Package coreutils.x86_64 0:8.22-23.el7 will be updated
---> Package coreutils.x86_64 0:8.22-24.el7 will be an update
---> Package cryptsetup-libs.x86_64 0:2.0.3-3.el7 will be updated
---> Package cryptsetup-libs.x86_64 0:2.0.3-5.el7 will be an update
---> Package curl.x86_64 0:7.29.0-51.el7_6.3 will be updated
---> Package curl.x86_64 0:7.29.0-54.el7_7.2 will be an update
---> Package dbus.x86_64 1:1.10.24-12.el7 will be updated
---> Package dbus.x86_64 1:1.10.24-13.el7_6 will be an update
---> Package dbus-libs.x86_64 1:1.10.24-12.el7 will be updated
---> Package dbus-libs.x86_64 1:1.10.24-13.el7_6 will be an update
---> Package device-mapper.x86_64 7:1.02.146-4.el7 will be updated
---> Package device-mapper.x86_64 7:1.02.158-2.el7_7.2 will be an update
---> Package device-mapper-libs.x86_64 7:1.02.146-4.el7 will be updated
---> Package device-mapper-libs.x86_64 7:1.02.158-2.el7_7.2 will be an update
---> Package diffutils.x86_64 0:3.3-4.el7 will be updated
---> Package diffutils.x86_64 0:3.3-5.el7 will be an update
---> Package dracut.x86_64 0:033-554.el7 will be updated
---> Package dracut.x86_64 0:033-564.el7 will be an update
---> Package elfutils-default-yama-scope.noarch 0:0.172-2.el7 will be updated
---> Package elfutils-default-yama-scope.noarch 0:0.176-2.el7 will be an update
---> Package elfutils-libelf.x86_64 0:0.172-2.el7 will be updated
---> Package elfutils-libelf.x86_64 0:0.176-2.el7 will be an update
---> Package elfutils-libs.x86_64 0:0.172-2.el7 will be updated
---> Package elfutils-libs.x86_64 0:0.176-2.el7 will be an update
---> Package glib2.x86_64 0:2.56.1-2.el7 will be updated
---> Package glib2.x86_64 0:2.56.1-5.el7 will be an update
---> Package glibc.x86_64 0:2.17-260.el7 will be updated
---> Package glibc.x86_64 0:2.17-292.el7 will be an update
---> Package glibc-common.x86_64 0:2.17-260.el7 will be updated
---> Package glibc-common.x86_64 0:2.17-292.el7 will be an update
---> Package gnutls.x86_64 0:3.3.29-8.el7 will be updated
---> Package gnutls.x86_64 0:3.3.29-9.el7_6 will be an update
---> Package hostname.x86_64 0:3.13-3.el7 will be updated
---> Package hostname.x86_64 0:3.13-3.el7_7.1 will be an update
---> Package hwdata.x86_64 0:0.252-9.1.el7 will be updated
---> Package hwdata.x86_64 0:0.252-9.3.el7 will be an update
---> Package ima-evm-utils.x86_64 0:1.1-2.el7 will be updated
---> Package ima-evm-utils.x86_64 0:1.1-3.el7 will be an update
---> Package kmod.x86_64 0:20-23.el7 will be updated
---> Package kmod.x86_64 0:20-25.el7 will be an update
---> Package kmod-libs.x86_64 0:20-23.el7 will be updated
---> Package kmod-libs.x86_64 0:20-25.el7 will be an update
---> Package kpartx.x86_64 0:0.4.9-119.el7 will be updated
---> Package kpartx.x86_64 0:0.4.9-127.el7 will be an update
---> Package krb5-libs.x86_64 0:1.15.1-34.el7 will be updated
---> Package krb5-libs.x86_64 0:1.15.1-37.el7_7.2 will be an update
---> Package libblkid.x86_64 0:2.23.2-59.el7 will be updated
---> Package libblkid.x86_64 0:2.23.2-61.el7_7.1 will be an update
---> Package libcap.x86_64 0:2.22-9.el7 will be updated
---> Package libcap.x86_64 0:2.22-10.el7 will be an update
---> Package libcom_err.x86_64 0:1.42.9-13.el7 will be updated
---> Package libcom_err.x86_64 0:1.42.9-16.el7 will be an update
---> Package libcurl.x86_64 0:7.29.0-51.el7_6.3 will be updated
---> Package libcurl.x86_64 0:7.29.0-54.el7_7.2 will be an update
---> Package libdb.x86_64 0:5.3.21-24.el7 will be updated
---> Package libdb.x86_64 0:5.3.21-25.el7 will be an update
---> Package libdb-utils.x86_64 0:5.3.21-24.el7 will be updated
---> Package libdb-utils.x86_64 0:5.3.21-25.el7 will be an update
---> Package libgcc.x86_64 0:4.8.5-36.el7 will be updated
---> Package libgcc.x86_64 0:4.8.5-39.el7 will be an update
---> Package libmount.x86_64 0:2.23.2-59.el7 will be updated
---> Package libmount.x86_64 0:2.23.2-61.el7_7.1 will be an update
---> Package libsmartcols.x86_64 0:2.23.2-59.el7 will be updated
---> Package libsmartcols.x86_64 0:2.23.2-61.el7_7.1 will be an update
---> Package libssh2.x86_64 0:1.4.3-12.el7 will be updated
---> Package libssh2.x86_64 0:1.8.0-3.el7 will be an update
---> Package libstdc++.x86_64 0:4.8.5-36.el7 will be updated
---> Package libstdc++.x86_64 0:4.8.5-39.el7 will be an update
---> Package libtirpc.x86_64 0:0.2.4-0.15.el7 will be updated
---> Package libtirpc.x86_64 0:0.2.4-0.16.el7 will be an update
---> Package libuuid.x86_64 0:2.23.2-59.el7 will be updated
---> Package libuuid.x86_64 0:2.23.2-61.el7_7.1 will be an update
---> Package lz4.x86_64 0:1.7.5-2.el7 will be updated
---> Package lz4.x86_64 0:1.7.5-3.el7 will be an update
---> Package nspr.x86_64 0:4.19.0-1.el7_5 will be updated
---> Package nspr.x86_64 0:4.21.0-1.el7 will be an update
---> Package nss.x86_64 0:3.36.0-7.el7_5 will be updated
---> Package nss.x86_64 0:3.44.0-7.el7_7 will be an update
---> Package nss-pem.x86_64 0:1.0.3-5.el7 will be updated
---> Package nss-pem.x86_64 0:1.0.3-7.el7 will be an update
---> Package nss-softokn.x86_64 0:3.36.0-5.el7_5 will be updated
---> Package nss-softokn.x86_64 0:3.44.0-8.el7_7 will be an update
---> Package nss-softokn-freebl.x86_64 0:3.36.0-5.el7_5 will be updated
---> Package nss-softokn-freebl.x86_64 0:3.44.0-8.el7_7 will be an update
---> Package nss-sysinit.x86_64 0:3.36.0-7.el7_5 will be updated
---> Package nss-sysinit.x86_64 0:3.44.0-7.el7_7 will be an update
---> Package nss-tools.x86_64 0:3.36.0-7.el7_5 will be updated
---> Package nss-tools.x86_64 0:3.44.0-7.el7_7 will be an update
---> Package nss-util.x86_64 0:3.36.0-1.el7_5 will be updated
---> Package nss-util.x86_64 0:3.44.0-4.el7_7 will be an update
---> Package openldap.x86_64 0:2.4.44-20.el7.tis.9 will be updated
---> Package openldap.x86_64 0:2.4.44-21.el7_6 will be an update
---> Package openssh.x86_64 0:7.4p1-16.el7_4.tis.10 will be updated
---> Package openssh.x86_64 0:7.4p1-21.el7 will be an update
---> Package openssh-clients.x86_64 0:7.4p1-16.el7_4.tis.10 will be updated
---> Package openssh-clients.x86_64 0:7.4p1-21.el7 will be an update
---> Package openssl-libs.x86_64 1:1.0.2k-16.el7 will be updated
---> Package openssl-libs.x86_64 1:1.0.2k-19.el7 will be an update
---> Package passwd.x86_64 0:0.79-4.el7 will be updated
---> Package passwd.x86_64 0:0.79-5.el7 will be an update
---> Package procps-ng.x86_64 0:3.3.10-23.el7 will be updated
---> Package procps-ng.x86_64 0:3.3.10-26.el7_7.1 will be an update
---> Package python.x86_64 0:2.7.5-76.el7.tis.4 will be updated
---> Package python.x86_64 0:2.7.5-86.el7 will be an update
---> Package python-libs.x86_64 0:2.7.5-76.el7.tis.4 will be updated
---> Package python-libs.x86_64 0:2.7.5-86.el7 will be an update
---> Package readline.x86_64 0:6.2-10.el7 will be updated
---> Package readline.x86_64 0:6.2-11.el7 will be an update
---> Package shadow-utils.x86_64 2:4.1.5.1-25.el7 will be updated
---> Package shadow-utils.x86_64 2:4.6-5.el7 will be an update
---> Package sqlite.x86_64 0:3.7.17-8.el7 will be updated
---> Package sqlite.x86_64 0:3.7.17-8.el7_7.1 will be an update
---> Package systemd.x86_64 0:219-62.el7_6.5.tis.11 will be updated
---> Package systemd.x86_64 0:219-67.el7_7.3 will be an update
---> Package systemd-libs.x86_64 0:219-62.el7_6.5.tis.11 will be updated
---> Package systemd-libs.x86_64 0:219-67.el7_7.3 will be an update
---> Package tzdata.noarch 0:2018g-1.el7 will be updated
---> Package tzdata.noarch 0:2019c-1.el7 will be an update
---> Package util-linux.x86_64 0:2.23.2-59.el7 will be updated
---> Package util-linux.x86_64 0:2.23.2-61.el7_7.1 will be an update
---> Package vim-minimal.x86_64 2:7.4.160-5.el7 will be updated
---> Package vim-minimal.x86_64 2:7.4.629-6.el7 will be an update
---> Package yum.noarch 0:3.4.3-161.el7.centos will be updated
---> Package yum.noarch 0:3.4.3-163.el7.centos will be an update
---> Package yum-plugin-fastestmirror.noarch 0:1.1.31-50.el7 will be updated
---> Package yum-plugin-fastestmirror.noarch 0:1.1.31-52.el7 will be an update
---> Package yum-plugin-ovl.noarch 0:1.1.31-45.el7 will be updated
---> Package yum-plugin-ovl.noarch 0:1.1.31-52.el7 will be an update
---> Package yum-utils.noarch 0:1.1.31-50.el7 will be updated
---> Package yum-utils.noarch 0:1.1.31-52.el7 will be an update
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository
Size
================================================================================
Updating:
audit-libs x86_64 2.8.5-4.el7 base 102 k
bash x86_64 4.2.46-33.el7 base 1.0 M
bind-license noarch 32:9.11.4-9.P2.el7 base 88 k
binutils x86_64 2.27-41.base.el7_7.2 updates 5.9 M
ca-certificates noarch 2019.2.32-76.el7_7 updates 399 k
centos-release x86_64 7-7.1908.0.el7.centos base 26 k
coreutils x86_64 8.22-24.el7 base 3.3 M
cryptsetup-libs x86_64 2.0.3-5.el7 base 338 k
curl x86_64 7.29.0-54.el7_7.2 updates 270 k
dbus x86_64 1:1.10.24-13.el7_6 base 245 k
dbus-libs x86_64 1:1.10.24-13.el7_6 base 169 k
device-mapper x86_64 7:1.02.158-2.el7_7.2 updates 294 k
device-mapper-libs x86_64 7:1.02.158-2.el7_7.2 updates 322 k
diffutils x86_64 3.3-5.el7 base 322 k
dracut x86_64 033-564.el7 base 329 k
elfutils-default-yama-scope noarch 0.176-2.el7 base 33 k
elfutils-libelf x86_64 0.176-2.el7 base 194 k
elfutils-libs x86_64 0.176-2.el7 base 291 k
glib2 x86_64 2.56.1-5.el7 base 2.5 M
glibc x86_64 2.17-292.el7 base 3.6 M
glibc-common x86_64 2.17-292.el7 base 11 M
gnutls x86_64 3.3.29-9.el7_6 base 680 k
hostname x86_64 3.13-3.el7_7.1 updates 17 k
hwdata x86_64 0.252-9.3.el7 base 2.4 M
ima-evm-utils x86_64 1.1-3.el7 base 46 k
kmod x86_64 20-25.el7 base 122 k
kmod-libs x86_64 20-25.el7 base 51 k
kpartx x86_64 0.4.9-127.el7 base 78 k
krb5-libs x86_64 1.15.1-37.el7_7.2 updates 805 k
libblkid x86_64 2.23.2-61.el7_7.1 updates 181 k
libcap x86_64 2.22-10.el7 base 47 k
libcom_err x86_64 1.42.9-16.el7 base 41 k
libcurl x86_64 7.29.0-54.el7_7.2 updates 223 k
libdb x86_64 5.3.21-25.el7 base 720 k
libdb-utils x86_64 5.3.21-25.el7 base 132 k
libgcc x86_64 4.8.5-39.el7 base 102 k
libmount x86_64 2.23.2-61.el7_7.1 updates 183 k
libsmartcols x86_64 2.23.2-61.el7_7.1 updates 141 k
libssh2 x86_64 1.8.0-3.el7 base 88 k
libstdc++ x86_64 4.8.5-39.el7 base 305 k
libtirpc x86_64 0.2.4-0.16.el7 base 89 k
libuuid x86_64 2.23.2-61.el7_7.1 updates 83 k
lz4 x86_64 1.7.5-3.el7 base 99 k
nspr x86_64 4.21.0-1.el7 base 127 k
nss x86_64 3.44.0-7.el7_7 updates 854 k
nss-pem x86_64 1.0.3-7.el7 base 74 k
nss-softokn x86_64 3.44.0-8.el7_7 updates 330 k
nss-softokn-freebl x86_64 3.44.0-8.el7_7 updates 224 k
nss-sysinit x86_64 3.44.0-7.el7_7 updates 65 k
nss-tools x86_64 3.44.0-7.el7_7 updates 528 k
nss-util x86_64 3.44.0-4.el7_7 updates 79 k
openldap x86_64 2.4.44-21.el7_6 base 356 k
openssh x86_64 7.4p1-21.el7 base 510 k
openssh-clients x86_64 7.4p1-21.el7 base 655 k
openssl-libs x86_64 1:1.0.2k-19.el7 base 1.2 M
passwd x86_64 0.79-5.el7 base 105 k
procps-ng x86_64 3.3.10-26.el7_7.1 updates 291 k
python x86_64 2.7.5-86.el7 base 95 k
python-libs x86_64 2.7.5-86.el7 base 5.6 M
readline x86_64 6.2-11.el7 base 193 k
shadow-utils x86_64 2:4.6-5.el7 base 1.2 M
sqlite x86_64 3.7.17-8.el7_7.1 updates 394 k
systemd x86_64 219-67.el7_7.3 updates 5.1 M
systemd-libs x86_64 219-67.el7_7.3 updates 411 k
tzdata noarch 2019c-1.el7 updates 493 k
util-linux x86_64 2.23.2-61.el7_7.1 updates 2.0 M
vim-minimal x86_64 2:7.4.629-6.el7 base 443 k
yum noarch 3.4.3-163.el7.centos base 1.2 M
yum-plugin-fastestmirror noarch 1.1.31-52.el7 base 34 k
yum-plugin-ovl noarch 1.1.31-52.el7 base 27 k
yum-utils noarch 1.1.31-52.el7 base 121 k
Transaction Summary
================================================================================
Upgrade 71 Packages
Total download size: 60 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
[91mwarning: /var/cache/yum/x86_64/7/base/packages/audit-libs-2.8.5-4.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
[0mPublic key for audit-libs-2.8.5-4.el7.x86_64.rpm is not installed
Public key for binutils-2.27-41.base.el7_7.2.x86_64.rpm is not installed
--------------------------------------------------------------------------------
Total 12 MB/s | 60 MB 00:05
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
[91mImporting GPG key 0xF4A80EB5:
Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
Package : centos-release-7-6.1810.2.el7.centos.x86_64 (@stx-distro)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
[0mRunning transaction check
Running transaction test
Transaction test succeeded
Running transaction
Updating : libgcc-4.8.5-39.el7.x86_64 1/142
Updating : centos-release-7-7.1908.0.el7.centos.x86_64 2/142
Updating : tzdata-2019c-1.el7.noarch 3/142
Updating : bash-4.2.46-33.el7.x86_64 4/142
Updating : nss-softokn-freebl-3.44.0-8.el7_7.x86_64 5/142
Updating : glibc-common-2.17-292.el7.x86_64 6/142
Updating : glibc-2.17-292.el7.x86_64 7/142
warning: /etc/nsswitch.conf created as /etc/nsswitch.conf.rpmnew
Updating : nspr-4.21.0-1.el7.x86_64 8/142
Updating : nss-util-3.44.0-4.el7_7.x86_64 9/142
Updating : audit-libs-2.8.5-4.el7.x86_64 10/142
Updating : libcom_err-1.42.9-16.el7.x86_64 11/142
Updating : libuuid-2.23.2-61.el7_7.1.x86_64 12/142
Updating : diffutils-3.3-5.el7.x86_64 13/142
install-info: No such file or directory for /usr/share/info/diffutils.info
Updating : libcap-2.22-10.el7.x86_64 14/142
Updating : readline-6.2-11.el7.x86_64 15/142
Updating : sqlite-3.7.17-8.el7_7.1.x86_64 16/142
Updating : nss-softokn-3.44.0-8.el7_7.x86_64 17/142
Updating : lz4-1.7.5-3.el7.x86_64 18/142
Updating : libdb-5.3.21-25.el7.x86_64 19/142
Updating : elfutils-libelf-0.176-2.el7.x86_64 20/142
Updating : kmod-libs-20-25.el7.x86_64 21/142
Updating : libsmartcols-2.23.2-61.el7_7.1.x86_64 22/142
Updating : ca-certificates-2019.2.32-76.el7_7.noarch 23/142
Updating : coreutils-8.22-24.el7.x86_64 24/142
Updating : 1:openssl-libs-1.0.2k-19.el7.x86_64 25/142
Updating : krb5-libs-1.15.1-37.el7_7.2.x86_64 26/142
Updating : libblkid-2.23.2-61.el7_7.1.x86_64 27/142
Updating : libmount-2.23.2-61.el7_7.1.x86_64 28/142
Updating : 2:shadow-utils-4.6-5.el7.x86_64 29/142
Updating : glib2-2.56.1-5.el7.x86_64 30/142
Updating : libssh2-1.8.0-3.el7.x86_64 31/142
Updating : python-libs-2.7.5-86.el7.x86_64 32/142
Updating : python-2.7.5-86.el7.x86_64 33/142
Updating : yum-plugin-fastestmirror-1.1.31-52.el7.noarch 34/142
Updating : yum-3.4.3-163.el7.centos.noarch 35/142
Updating : nss-pem-1.0.3-7.el7.x86_64 36/142
Updating : nss-sysinit-3.44.0-7.el7_7.x86_64 37/142
Updating : nss-3.44.0-7.el7_7.x86_64 38/142
Updating : nss-tools-3.44.0-7.el7_7.x86_64 39/142
Updating : openldap-2.4.44-21.el7_6.x86_64 40/142
Updating : libcurl-7.29.0-54.el7_7.2.x86_64 41/142
Updating : binutils-2.27-41.base.el7_7.2.x86_64 42/142
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 : util-linux-2.23.2-61.el7_7.1.x86_64 43/142
Updating : procps-ng-3.3.10-26.el7_7.1.x86_64 44/142
Updating : kpartx-0.4.9-127.el7.x86_64 45/142
Updating : 7:device-mapper-1.02.158-2.el7_7.2.x86_64 46/142
Updating : 7:device-mapper-libs-1.02.158-2.el7_7.2.x86_64 47/142
Updating : cryptsetup-libs-2.0.3-5.el7.x86_64 48/142
Updating : dracut-033-564.el7.x86_64 49/142
Updating : kmod-20-25.el7.x86_64 50/142
Updating : elfutils-libs-0.176-2.el7.x86_64 51/142
Updating : systemd-libs-219-67.el7_7.3.x86_64 52/142
Updating : 1:dbus-libs-1.10.24-13.el7_6.x86_64 53/142
Updating : systemd-219-67.el7_7.3.x86_64 54/142
Failed to get D-Bus connection: Operation not permitted
Updating : elfutils-default-yama-scope-0.176-2.el7.noarch 55/142
Updating : 1:dbus-1.10.24-13.el7_6.x86_64 56/142
Updating : openssh-7.4p1-21.el7.x86_64 57/142
Updating : openssh-clients-7.4p1-21.el7.x86_64 58/142
Updating : hwdata-0.252-9.3.el7.x86_64 59/142
Updating : curl-7.29.0-54.el7_7.2.x86_64 60/142
Updating : yum-plugin-ovl-1.1.31-52.el7.noarch 61/142
Updating : yum-utils-1.1.31-52.el7.noarch 62/142
Updating : passwd-0.79-5.el7.x86_64 63/142
Updating : libtirpc-0.2.4-0.16.el7.x86_64 64/142
Updating : ima-evm-utils-1.1-3.el7.x86_64 65/142
Updating : libdb-utils-5.3.21-25.el7.x86_64 66/142
Updating : libstdc++-4.8.5-39.el7.x86_64 67/142
Updating : 2:vim-minimal-7.4.629-6.el7.x86_64 68/142
Updating : gnutls-3.3.29-9.el7_6.x86_64 69/142
Updating : hostname-3.13-3.el7_7.1.x86_64 70/142
Updating : 32:bind-license-9.11.4-9.P2.el7.noarch 71/142
Cleanup : openssh-clients-7.4p1-16.el7_4.tis.10.x86_64 72/142
Cleanup : openssh-7.4p1-16.el7_4.tis.10.x86_64 73/142
Cleanup : libtirpc-0.2.4-0.15.el7.x86_64 74/142
Cleanup : curl-7.29.0-51.el7_6.3.x86_64 75/142
Cleanup : libstdc++-4.8.5-36.el7.x86_64 76/142
Cleanup : ima-evm-utils-1.1-2.el7.x86_64 77/142
Cleanup : gnutls-3.3.29-8.el7.x86_64 78/142
Cleanup : passwd-0.79-4.el7.x86_64 79/142
Cleanup : glib2-2.56.1-2.el7.x86_64 80/142
Cleanup : libdb-utils-5.3.21-24.el7.x86_64 81/142
Cleanup : hwdata-0.252-9.1.el7.x86_64 82/142
Cleanup : yum-utils-1.1.31-50.el7.noarch 83/142
Cleanup : yum-plugin-ovl-1.1.31-45.el7.noarch 84/142
Cleanup : 1:dbus-libs-1.10.24-12.el7.x86_64 85/142
Cleanup : procps-ng-3.3.10-23.el7.x86_64 86/142
Cleanup : util-linux-2.23.2-59.el7.x86_64 87/142
Cleanup : kpartx-0.4.9-119.el7.x86_64 88/142
Cleanup : cryptsetup-libs-2.0.3-3.el7.x86_64 89/142
Cleanup : 7:device-mapper-libs-1.02.146-4.el7.x86_64 90/142
Cleanup : 7:device-mapper-1.02.146-4.el7.x86_64 91/142
Cleanup : systemd-libs-219-62.el7_6.5.tis.11.x86_64 92/142
Cleanup : kmod-20-23.el7.x86_64 93/142
Cleanup : dracut-033-554.el7.x86_64 94/142
Cleanup : elfutils-libs-0.172-2.el7.x86_64 95/142
Cleanup : elfutils-default-yama-scope-0.172-2.el7.noarch 96/142
Cleanup : 1:dbus-1.10.24-12.el7.x86_64 97/142
Cleanup : systemd-219-62.el7_6.5.tis.11.x86_64 98/142
Cleanup : libcurl-7.29.0-51.el7_6.3.x86_64 99/142
Cleanup : openldap-2.4.44-20.el7.tis.9.x86_64 100/142
Cleanup : nss-tools-3.36.0-7.el7_5.x86_64 101/142
Cleanup : nss-3.36.0-7.el7_5.x86_64 102/142
Cleanup : nss-softokn-3.36.0-5.el7_5.x86_64 103/142
Cleanup : libmount-2.23.2-59.el7.x86_64 104/142
Cleanup : binutils-2.27-34.base.el7.x86_64 105/142
Cleanup : libblkid-2.23.2-59.el7.x86_64 106/142
Cleanup : nss-sysinit-3.36.0-7.el7_5.x86_64 107/142
Cleanup : 2:shadow-utils-4.1.5.1-25.el7.x86_64 108/142
Cleanup : nss-pem-1.0.3-5.el7.x86_64 109/142
Cleanup : kmod-libs-20-23.el7.x86_64 110/142
Cleanup : libsmartcols-2.23.2-59.el7.x86_64 111/142
Cleanup : libssh2-1.4.3-12.el7.x86_64 112/142
Cleanup : audit-libs-2.8.4-4.el7.x86_64 113/142
Cleanup : libuuid-2.23.2-59.el7.x86_64 114/142
Cleanup : elfutils-libelf-0.172-2.el7.x86_64 115/142
Cleanup : 2:vim-minimal-7.4.160-5.el7.x86_64 116/142
Cleanup : yum-3.4.3-161.el7.centos.noarch 117/142
Cleanup : centos-release-7-6.1810.2.el7.centos.x86_64 118/142
Cleanup : yum-plugin-fastestmirror-1.1.31-50.el7.noarch 119/142
Cleanup : 32:bind-license-9.9.4-72.el7.noarch 120/142
Cleanup : python-2.7.5-76.el7.tis.4.x86_64 121/142
Cleanup : python-libs-2.7.5-76.el7.tis.4.x86_64 122/142
Cleanup : coreutils-8.22-23.el7.x86_64 123/142
Cleanup : krb5-libs-1.15.1-34.el7.x86_64 124/142
Cleanup : 1:openssl-libs-1.0.2k-16.el7.x86_64 125/142
Cleanup : libdb-5.3.21-24.el7.x86_64 126/142
Cleanup : sqlite-3.7.17-8.el7.x86_64 127/142
Cleanup : readline-6.2-10.el7.x86_64 128/142
Cleanup : libcom_err-1.42.9-13.el7.x86_64 129/142
Cleanup : libcap-2.22-9.el7.x86_64 130/142
Cleanup : diffutils-3.3-4.el7.x86_64 131/142
Cleanup : lz4-1.7.5-2.el7.x86_64 132/142
Cleanup : hostname-3.13-3.el7.x86_64 133/142
Cleanup : ca-certificates-2018.2.22-70.0.el7_5.noarch 134/142
Cleanup : glibc-common-2.17-260.el7.x86_64 135/142
Cleanup : bash-4.2.46-31.el7.tis.4.x86_64 136/142
Cleanup : nspr-4.19.0-1.el7_5.x86_64 137/142
Cleanup : nss-util-3.36.0-1.el7_5.x86_64 138/142
Cleanup : nss-softokn-freebl-3.36.0-5.el7_5.x86_64 139/142
Cleanup : glibc-2.17-260.el7.x86_64 140/142
Cleanup : tzdata-2018g-1.el7.noarch 141/142
Cleanup : libgcc-4.8.5-36.el7.x86_64 142/142
Verifying : tzdata-2019c-1.el7.noarch 1/142
Verifying : yum-3.4.3-163.el7.centos.noarch 2/142
Verifying : libdb-utils-5.3.21-25.el7.x86_64 3/142
Verifying : nss-3.44.0-7.el7_7.x86_64 4/142
Verifying : libssh2-1.8.0-3.el7.x86_64 5/142
Verifying : elfutils-default-yama-scope-0.176-2.el7.noarch 6/142
Verifying : python-libs-2.7.5-86.el7.x86_64 7/142
Verifying : readline-6.2-11.el7.x86_64 8/142
Verifying : sqlite-3.7.17-8.el7_7.1.x86_64 9/142
Verifying : ca-certificates-2019.2.32-76.el7_7.noarch 10/142
Verifying : nss-pem-1.0.3-7.el7.x86_64 11/142
Verifying : glibc-common-2.17-292.el7.x86_64 12/142
Verifying : yum-plugin-ovl-1.1.31-52.el7.noarch 13/142
Verifying : lz4-1.7.5-3.el7.x86_64 14/142
Verifying : 1:openssl-libs-1.0.2k-19.el7.x86_64 15/142
Verifying : hwdata-0.252-9.3.el7.x86_64 16/142
Verifying : util-linux-2.23.2-61.el7_7.1.x86_64 17/142
Verifying : nss-tools-3.44.0-7.el7_7.x86_64 18/142
Verifying : coreutils-8.22-24.el7.x86_64 19/142
Verifying : 7:device-mapper-libs-1.02.158-2.el7_7.2.x86_64 20/142
Verifying : libstdc++-4.8.5-39.el7.x86_64 21/142
Verifying : glib2-2.56.1-5.el7.x86_64 22/142
Verifying : python-2.7.5-86.el7.x86_64 23/142
Verifying : libuuid-2.23.2-61.el7_7.1.x86_64 24/142
Verifying : 2:vim-minimal-7.4.629-6.el7.x86_64 25/142
Verifying : passwd-0.79-5.el7.x86_64 26/142
Verifying : gnutls-3.3.29-9.el7_6.x86_64 27/142
Verifying : systemd-libs-219-67.el7_7.3.x86_64 28/142
Verifying : nss-sysinit-3.44.0-7.el7_7.x86_64 29/142
Verifying : openssh-clients-7.4p1-21.el7.x86_64 30/142
Verifying : 32:bind-license-9.11.4-9.P2.el7.noarch 31/142
Verifying : yum-utils-1.1.31-52.el7.noarch 32/142
Verifying : elfutils-libs-0.176-2.el7.x86_64 33/142
Verifying : libcurl-7.29.0-54.el7_7.2.x86_64 34/142
Verifying : nss-softokn-freebl-3.44.0-8.el7_7.x86_64 35/142
Verifying : openldap-2.4.44-21.el7_6.x86_64 36/142
Verifying : yum-plugin-fastestmirror-1.1.31-52.el7.noarch 37/142
Verifying : binutils-2.27-41.base.el7_7.2.x86_64 38/142
Verifying : kmod-libs-20-25.el7.x86_64 39/142
Verifying : 2:shadow-utils-4.6-5.el7.x86_64 40/142
Verifying : ima-evm-utils-1.1-3.el7.x86_64 41/142
Verifying : centos-release-7-7.1908.0.el7.centos.x86_64 42/142
Verifying : audit-libs-2.8.5-4.el7.x86_64 43/142
Verifying : cryptsetup-libs-2.0.3-5.el7.x86_64 44/142
Verifying : diffutils-3.3-5.el7.x86_64 45/142
Verifying : hostname-3.13-3.el7_7.1.x86_64 46/142
Verifying : libdb-5.3.21-25.el7.x86_64 47/142
Verifying : 1:dbus-libs-1.10.24-13.el7_6.x86_64 48/142
Verifying : 1:dbus-1.10.24-13.el7_6.x86_64 49/142
Verifying : libblkid-2.23.2-61.el7_7.1.x86_64 50/142
Verifying : libtirpc-0.2.4-0.16.el7.x86_64 51/142
Verifying : 7:device-mapper-1.02.158-2.el7_7.2.x86_64 52/142
Verifying : bash-4.2.46-33.el7.x86_64 53/142
Verifying : openssh-7.4p1-21.el7.x86_64 54/142
Verifying : procps-ng-3.3.10-26.el7_7.1.x86_64 55/142
Verifying : libgcc-4.8.5-39.el7.x86_64 56/142
Verifying : krb5-libs-1.15.1-37.el7_7.2.x86_64 57/142
Verifying : dracut-033-564.el7.x86_64 58/142
Verifying : curl-7.29.0-54.el7_7.2.x86_64 59/142
Verifying : libmount-2.23.2-61.el7_7.1.x86_64 60/142
Verifying : nspr-4.21.0-1.el7.x86_64 61/142
Verifying : systemd-219-67.el7_7.3.x86_64 62/142
Verifying : kpartx-0.4.9-127.el7.x86_64 63/142
Verifying : libcap-2.22-10.el7.x86_64 64/142
Verifying : libcom_err-1.42.9-16.el7.x86_64 65/142
Verifying : glibc-2.17-292.el7.x86_64 66/142
Verifying : nss-softokn-3.44.0-8.el7_7.x86_64 67/142
Verifying : libsmartcols-2.23.2-61.el7_7.1.x86_64 68/142
Verifying : kmod-20-25.el7.x86_64 69/142
Verifying : nss-util-3.44.0-4.el7_7.x86_64 70/142
Verifying : elfutils-libelf-0.176-2.el7.x86_64 71/142
Verifying : ima-evm-utils-1.1-2.el7.x86_64 72/142
Verifying : libgcc-4.8.5-36.el7.x86_64 73/142
Verifying : libstdc++-4.8.5-36.el7.x86_64 74/142
Verifying : cryptsetup-libs-2.0.3-3.el7.x86_64 75/142
Verifying : libsmartcols-2.23.2-59.el7.x86_64 76/142
Verifying : 2:shadow-utils-4.1.5.1-25.el7.x86_64 77/142
Verifying : curl-7.29.0-51.el7_6.3.x86_64 78/142
Verifying : nss-sysinit-3.36.0-7.el7_5.x86_64 79/142
Verifying : krb5-libs-1.15.1-34.el7.x86_64 80/142
Verifying : 7:device-mapper-1.02.146-4.el7.x86_64 81/142
Verifying : readline-6.2-10.el7.x86_64 82/142
Verifying : sqlite-3.7.17-8.el7.x86_64 83/142
Verifying : 7:device-mapper-libs-1.02.146-4.el7.x86_64 84/142
Verifying : libuuid-2.23.2-59.el7.x86_64 85/142
Verifying : hwdata-0.252-9.1.el7.x86_64 86/142
Verifying : openssh-clients-7.4p1-16.el7_4.tis.10.x86_64 87/142
Verifying : systemd-219-62.el7_6.5.tis.11.x86_64 88/142
Verifying : coreutils-8.22-23.el7.x86_64 89/142
Verifying : elfutils-libelf-0.172-2.el7.x86_64 90/142
Verifying : libcap-2.22-9.el7.x86_64 91/142
Verifying : lz4-1.7.5-2.el7.x86_64 92/142
Verifying : nss-tools-3.36.0-7.el7_5.x86_64 93/142
Verifying : util-linux-2.23.2-59.el7.x86_64 94/142
Verifying : nss-softokn-3.36.0-5.el7_5.x86_64 95/142
Verifying : ca-certificates-2018.2.22-70.0.el7_5.noarch 96/142
Verifying : yum-utils-1.1.31-50.el7.noarch 97/142
Verifying : python-2.7.5-76.el7.tis.4.x86_64 98/142
Verifying : centos-release-7-6.1810.2.el7.centos.x86_64 99/142
Verifying : libcom_err-1.42.9-13.el7.x86_64 100/142
Verifying : yum-3.4.3-161.el7.centos.noarch 101/142
Verifying : libblkid-2.23.2-59.el7.x86_64 102/142
Verifying : libdb-utils-5.3.21-24.el7.x86_64 103/142
Verifying : elfutils-libs-0.172-2.el7.x86_64 104/142
Verifying : gnutls-3.3.29-8.el7.x86_64 105/142
Verifying : dracut-033-554.el7.x86_64 106/142
Verifying : passwd-0.79-4.el7.x86_64 107/142
Verifying : glibc-2.17-260.el7.x86_64 108/142
Verifying : glib2-2.56.1-2.el7.x86_64 109/142
Verifying : openldap-2.4.44-20.el7.tis.9.x86_64 110/142
Verifying : binutils-2.27-34.base.el7.x86_64 111/142
Verifying : bash-4.2.46-31.el7.tis.4.x86_64 112/142
Verifying : systemd-libs-219-62.el7_6.5.tis.11.x86_64 113/142
Verifying : libdb-5.3.21-24.el7.x86_64 114/142
Verifying : kmod-20-23.el7.x86_64 115/142
Verifying : elfutils-default-yama-scope-0.172-2.el7.noarch 116/142
Verifying : 2:vim-minimal-7.4.160-5.el7.x86_64 117/142
Verifying : libmount-2.23.2-59.el7.x86_64 118/142
Verifying : hostname-3.13-3.el7.x86_64 119/142
Verifying : 32:bind-license-9.9.4-72.el7.noarch 120/142
Verifying : tzdata-2018g-1.el7.noarch 121/142
Verifying : nss-softokn-freebl-3.36.0-5.el7_5.x86_64 122/142
Verifying : yum-plugin-ovl-1.1.31-45.el7.noarch 123/142
Verifying : nspr-4.19.0-1.el7_5.x86_64 124/142
Verifying : libcurl-7.29.0-51.el7_6.3.x86_64 125/142
Verifying : libtirpc-0.2.4-0.15.el7.x86_64 126/142
Verifying : 1:dbus-libs-1.10.24-12.el7.x86_64 127/142
Verifying : 1:dbus-1.10.24-12.el7.x86_64 128/142
Verifying : python-libs-2.7.5-76.el7.tis.4.x86_64 129/142
Verifying : nss-3.36.0-7.el7_5.x86_64 130/142
Verifying : procps-ng-3.3.10-23.el7.x86_64 131/142
Verifying : 1:openssl-libs-1.0.2k-16.el7.x86_64 132/142
Verifying : kpartx-0.4.9-119.el7.x86_64 133/142
Verifying : audit-libs-2.8.4-4.el7.x86_64 134/142
Verifying : nss-pem-1.0.3-5.el7.x86_64 135/142
Verifying : kmod-libs-20-23.el7.x86_64 136/142
Verifying : libssh2-1.4.3-12.el7.x86_64 137/142
Verifying : yum-plugin-fastestmirror-1.1.31-50.el7.noarch 138/142
Verifying : glibc-common-2.17-260.el7.x86_64 139/142
Verifying : nss-util-3.36.0-1.el7_5.x86_64 140/142
Verifying : openssh-7.4p1-16.el7_4.tis.10.x86_64 141/142
Verifying : diffutils-3.3-4.el7.x86_64 142/142
Updated:
audit-libs.x86_64 0:2.8.5-4.el7
bash.x86_64 0:4.2.46-33.el7
bind-license.noarch 32:9.11.4-9.P2.el7
binutils.x86_64 0:2.27-41.base.el7_7.2
ca-certificates.noarch 0:2019.2.32-76.el7_7
centos-release.x86_64 0:7-7.1908.0.el7.centos
coreutils.x86_64 0:8.22-24.el7
cryptsetup-libs.x86_64 0:2.0.3-5.el7
curl.x86_64 0:7.29.0-54.el7_7.2
dbus.x86_64 1:1.10.24-13.el7_6
dbus-libs.x86_64 1:1.10.24-13.el7_6
device-mapper.x86_64 7:1.02.158-2.el7_7.2
device-mapper-libs.x86_64 7:1.02.158-2.el7_7.2
diffutils.x86_64 0:3.3-5.el7
dracut.x86_64 0:033-564.el7
elfutils-default-yama-scope.noarch 0:0.176-2.el7
elfutils-libelf.x86_64 0:0.176-2.el7
elfutils-libs.x86_64 0:0.176-2.el7
glib2.x86_64 0:2.56.1-5.el7
glibc.x86_64 0:2.17-292.el7
glibc-common.x86_64 0:2.17-292.el7
gnutls.x86_64 0:3.3.29-9.el7_6
hostname.x86_64 0:3.13-3.el7_7.1
hwdata.x86_64 0:0.252-9.3.el7
ima-evm-utils.x86_64 0:1.1-3.el7
kmod.x86_64 0:20-25.el7
kmod-libs.x86_64 0:20-25.el7
kpartx.x86_64 0:0.4.9-127.el7
krb5-libs.x86_64 0:1.15.1-37.el7_7.2
libblkid.x86_64 0:2.23.2-61.el7_7.1
libcap.x86_64 0:2.22-10.el7
libcom_err.x86_64 0:1.42.9-16.el7
libcurl.x86_64 0:7.29.0-54.el7_7.2
libdb.x86_64 0:5.3.21-25.el7
libdb-utils.x86_64 0:5.3.21-25.el7
libgcc.x86_64 0:4.8.5-39.el7
libmount.x86_64 0:2.23.2-61.el7_7.1
libsmartcols.x86_64 0:2.23.2-61.el7_7.1
libssh2.x86_64 0:1.8.0-3.el7
libstdc++.x86_64 0:4.8.5-39.el7
libtirpc.x86_64 0:0.2.4-0.16.el7
libuuid.x86_64 0:2.23.2-61.el7_7.1
lz4.x86_64 0:1.7.5-3.el7
nspr.x86_64 0:4.21.0-1.el7
nss.x86_64 0:3.44.0-7.el7_7
nss-pem.x86_64 0:1.0.3-7.el7
nss-softokn.x86_64 0:3.44.0-8.el7_7
nss-softokn-freebl.x86_64 0:3.44.0-8.el7_7
nss-sysinit.x86_64 0:3.44.0-7.el7_7
nss-tools.x86_64 0:3.44.0-7.el7_7
nss-util.x86_64 0:3.44.0-4.el7_7
openldap.x86_64 0:2.4.44-21.el7_6
openssh.x86_64 0:7.4p1-21.el7
openssh-clients.x86_64 0:7.4p1-21.el7
openssl-libs.x86_64 1:1.0.2k-19.el7
passwd.x86_64 0:0.79-5.el7
procps-ng.x86_64 0:3.3.10-26.el7_7.1
python.x86_64 0:2.7.5-86.el7
python-libs.x86_64 0:2.7.5-86.el7
readline.x86_64 0:6.2-11.el7
shadow-utils.x86_64 2:4.6-5.el7
sqlite.x86_64 0:3.7.17-8.el7_7.1
systemd.x86_64 0:219-67.el7_7.3
systemd-libs.x86_64 0:219-67.el7_7.3
tzdata.noarch 0:2019c-1.el7
util-linux.x86_64 0:2.23.2-61.el7_7.1
vim-minimal.x86_64 2:7.4.629-6.el7
yum.noarch 0:3.4.3-163.el7.centos
yum-plugin-fastestmirror.noarch 0:1.1.31-52.el7
yum-plugin-ovl.noarch 0:1.1.31-52.el7
yum-utils.noarch 0:1.1.31-52.el7
Complete!
[91m+ yum install -y --setopt=skip_missing_names_on_install=False git patch redhat-lsb-core sudo python3 python3-virtualenv
[0mLoaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: mirror.bit.edu.cn
* extras: mirrors.ustc.edu.cn
* updates: mirrors.ustc.edu.cn
Package python3-3.6.8-10.el7.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package git.x86_64 0:1.8.3.1-21.el7_7 will be installed
--> Processing Dependency: perl-Git = 1.8.3.1-21.el7_7 for package: git-1.8.3.1-21.el7_7.x86_64
--> Processing Dependency: rsync for package: git-1.8.3.1-21.el7_7.x86_64
--> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-21.el7_7.x86_64
--> Processing Dependency: perl(Git) for package: git-1.8.3.1-21.el7_7.x86_64
--> Processing Dependency: perl(Error) for package: git-1.8.3.1-21.el7_7.x86_64
--> Processing Dependency: less for package: git-1.8.3.1-21.el7_7.x86_64
---> Package patch.x86_64 0:2.7.1-12.el7_7 will be installed
---> Package python36-virtualenv.noarch 0:15.1.0-5.el7 will be installed
--> Processing Dependency: python36-devel for package: python36-virtualenv-15.1.0-5.el7.noarch
---> Package redhat-lsb-core.x86_64 0:4.1-27.el7.centos.1 will be installed
--> Processing Dependency: redhat-lsb-submod-security(x86-64) = 4.1-27.el7.centos.1 for package: redhat-lsb-core-4.1-27.el7.centos.1.x86_64
--> Processing Dependency: spax for package: redhat-lsb-core-4.1-27.el7.centos.1.x86_64
--> Processing Dependency: /usr/sbin/sendmail for package: redhat-lsb-core-4.1-27.el7.centos.1.x86_64
--> Processing Dependency: /usr/sbin/fuser for package: redhat-lsb-core-4.1-27.el7.centos.1.x86_64
--> Processing Dependency: /usr/bin/time for package: redhat-lsb-core-4.1-27.el7.centos.1.x86_64