web-dev-qa-db-ja.com

yum updateには更新がありませんか?

最近、yumキャッシュをクリーンアップしましたが、yumupdateを実行しても更新がないことがわかりました。実際にアップデートがないのか、何かがおかしいのかわかりません。

yum clean all
rm -rf /var/cache/yum/*

yum update

Loaded plugins: replace, rhnplugin, security
This system is receiving updates from RHN Classic or RHN Satellite.
Excluding Packages from Red Hat Enterprise Linux (v. 5 for 64-bit x86_64)
Finished
Skipping security plugin, no data
Setting up Update Process
No Packages marked for Update

yum repolist all

...
epel, Extra Packages for Enterprise Linux 5 - x86_64, enabled: 6,781   
epel-debuginfo, Extra Packages for Enterprise Linux 5 - x86_64 - Debug, disabled
rhel-x86_64-server-5, Red Hat Enterprise Linux (v. 5 for 64-bit x86_64), enabled: 16,487+311
...

Yum.logの最後の数行

Jul 01 14:57:09 Updated: openssl-Perl-0.9.8e-36.el5_11.x86_64
Jul 01 14:57:10 Updated: openssl-0.9.8e-36.el5_11.i686
Jul 01 14:57:12 Updated: openssl-devel-0.9.8e-36.el5_11.i386
Jul 10 09:15:31 Updated: dhcpv6-client-1.0.10-22.el5_11.x86_64

/etc/yum.repos.dの下(ここにrhel-x86_64-server-5が表示されませんか?)

ius-archive.repo
ius-dev.repo
ius.repo
ius-testing.repo
rhel-debuginfo.repo
rpmforge.repo
pgdg-92-redhat.repo
kbs-el5-rb187.repo
mirrors-rpmforge
mirrors-rpmforge-extras
mirrors-rpmforge-testing
epel.repo
varnish.repo
epel-testing.repo
2
kenpeter

Yum出力の「このシステムはRHNクラシックまたはRHN衛星から更新を受信して​​います。」という行は、yumrhnpluginからの通知です。 RHNClassicのローカルSatelliteサーバーに登録されています。

RHNクラシックまたはSatelliteサブスクリプションに属するソフトウェアチャネルは、/ etc/yum.repos.dにリポジトリファイルとして表示されませんが、システムIDとrhnpluginを介して衛星サーバーから管理されます。

あなたのシステムは単純に RHEL 5では完全に最新 であるという考えを考慮しましたか?

最近インストールされたOpenSSLパッケージは RSA-2015:1197 とdhcpクライアントバージョン RHBA-2015:1212 に一致するため、これらは一時的に最新のエラッタの一部です。

2
HBruijn