Saya ingin mencerminkan repositori Yum / RPM berikut di http://yum.puppetlabs.com/ :
- http://yum.puppetlabs.com/el/6/products/
- http://yum.puppetlabs.com/el/6/dependencies/
- http://yum.puppetlabs.com/el/5/products
- http://yum.puppetlabs.com/el/5/dependencies/
Repositori Puppet berisi setiap produk Puppet yang pernah dirilis dan cukup besar sekitar 8GB. Saya hanya perlu mirror versi terbaru dari file.
Saya telah mencoba untuk mencerminkan repositori menggunakan reposync --newest-only
:
reposync --config=puppetlabs.repo.el6 --repoid=puppetlabs-products --repoid=puppetlabs-deps --newest-only --download_path=el/6 --quiet --downloadcomps
dan ini mengunduh paket-paket terbaru seperti yang saya butuhkan. Namun, reposync tidak secara otomatis membuat struktur direktori reguler ( x86_64
, noarch
, SRPMS
, dll) dan tidak cermin repodata.xml
. Akibatnya, klien yum saya mendapatkan kesalahan seperti ini:
[root@web1 ~]# yum --quiet install puppet
http://mirrors.example.org/pub/puppet/el/6/puppetlabs-deps/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: puppetlabs-deps. Please verify its path and try again
[root@web1 ~]#
Apakah ada cara untuk secara program hanya memantulkan file baru dari repo Yum dan mengikuti struktur direktori repositori standar?