yum check-update не удалось, например: elasticsearch - Уведомление об обновлении FEDORA-EPEL (из epel-testing) сломано или плохой дубликат, пропуск - PullRequest
0 голосов
/ 28 мая 2020

Linux RH 7 Версия : Red Hat Enterprise Linux Серверный выпуск 7.8 (Maipo)

Конфигурационный файл репозитория Yum: $ cat /etc/yum.repos .d / elasti c .repo

[elastic-7.x]
name=Elastic repository for 7.x packages
baseurl=https://artifacts.elastic.co/packages/7.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md

Пытался проверить наличие обновлений на elasticsearch и получил следующую ошибку:

(venvPython375) [giga@ip-10-20-30-40 bb_ws] $ sudo yum check-update elasticsearch

Loaded plugins: amazon-id, langpacks, product-id, search-disabled-repos, subscription-manager

This system is not registered with an entitlement server. You can use subscription-manager to register.

Update notice FEDORA-EPEL-2019-b3b252ad49 (from epel-testing) is broken, or a bad duplicate, skipping.
You should report this problem to the owner of the epel-testing repository.
To help pinpoint the issue, please attach the output of "yum updateinfo --verbose" to the report.
Update notice FEDORA-EPEL-2019-17d2b3507b (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-6c9bd69e8c (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-b1b73eda91 (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-f84c232513 (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-d49efff651 (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-10c651b6cf (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-906483cc2f (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-77e03a194b (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-f457d4367d (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-3221ff1dea (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-d6bedfa33e (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-a6e87b96c1 (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-0ad24584d8 (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-d50307dc61 (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-8cbc520a97 (from epel-testing) is broken, or a bad duplicate, skipping.
Update notice FEDORA-EPEL-2019-1e0469226c (from epel-testing) is broken, or a bad duplicate, skipping.

YUM epel-testing repo file содержит:

$ cat /etc/yum.repos.d/epel -testing.repo

[epel-testing]
name=Extra Packages for Enterprise Linux 7 - Testing - $basearch
#baseurl=http://download.fedoraproject.org/pub/epel/testing/7/$basearch
metalink=https://mirrors.fedoraproject.org/metalink?repo=testing-epel7&arch=$basearch&infra=$infra&content=$contentdir
failovermethod=priority
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7

[epel-testing-debuginfo]
name=Extra Packages for Enterprise Linux 7 - Testing - $basearch - Debug
#baseurl=http://download.fedoraproject.org/pub/epel/testing/7/$basearch/debug
metalink=https://mirrors.fedoraproject.org/metalink?repo=testing-debug-epel7&arch=$basearch&infra=$infra&content=$contentdir
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=1

[epel-testing-source]
name=Extra Packages for Enterprise Linux 7 - Testing - $basearch - Source
#baseurl=http://download.fedoraproject.org/pub/epel/testing/7/SRPMS
metalink=https://mirrors.fedoraproject.org/metalink?repo=testing-source-epel7&arch=$basearch&infra=$infra&content=$contentdir
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=1

PS: sudo yum list elasticsearch и sudo yum update elasticsearch оба дают echo $? как 0

...