Skip to content

Repository Access via rsync

Christopher S. Simmons edited this page Sep 27, 2023 · 6 revisions

In addition to providing standard package repositories for use with yum and zypper, OpenHPC repos support the rsync protocol to ease local site mirroring.

1.3.x branch example

The following command will download all of the binary RPMs and repo metadata from OHPC v1.3, as well as subsequent updates in that release series:

rsync -avzHKL --exclude src --exclude repocache --delay-updates \
     rsync://build.openhpc.community/OpenHPC/1.3/ 1.3

2.x branch example

The following command will download all of the binary RPMs and repo metadata from OHPC v2.0, as well as subsequent updates in that release series:

rsync -avzHKL --exclude src --exclude repocache --delay-updates rsync://repos.openhpc.community/OpenHPC/2/ 2

3.x branch example

The following command will download all of the binary RPMs and repo metadata from OHPC v3.0, as well as subsequent updates in that release series:

rsync -avzHKL --exclude src --exclude repocache --delay-updates rsync://repos.openhpc.community/OpenHPC/3/ 3
Clone this wiki locally