Sen zaten --disableexcludes=yum denemişsin ama bu yeterli olmamış. Şunu dene:
dnf update -y --allowerasing

2. Modülleri sıfırla (modular filtering'i kaldır)


dnf module list rhn-client-tools

dnf module reset rhn-client-tools -y

dnf update -y --allowerasing

Exclude ayarlarını kontrol et


Şu dizinlerdeki exclude satırlarını kontrol et:
  • /etc/dnf/dnf.conf
  • /etc/yum.repos.d/CloudLinux-*.repo
Örnek bir exclude satırı:
exclude=rhn-*
Bu gibi satırlar varsa ya geçici olarak kaldır, ya da --disableexcludes=all parametresiyle update dene:

dnf update -y --disableexcludes=all --allowerasing

Paketleri elle kaldır-güncelle


Son çare olarak, sorunlu paketleri kaldırıp tekrar kurabilirsin:

dnf remove rhn-check rhn-client-tools python3-rhn-client-tools rhnsd -y
dnf install rhn-check rhn-client-tools python3-rhn-client-tools rhnsd -y