Trim unneeded content from OpenEuler mirror

We currently only support x86_64 and aarch64 systems, and don't need
packages for other platforms nor separate bootable system image
files. Explicitly exclude them in the OpenEuler mirror script.

Change-Id: Ia1e741909b2a5129e10eedcba5ca4c87ccad5d91
This commit is contained in:
Jeremy Stanley 2024-12-05 20:46:29 +00:00
parent e39aab11ba
commit 3ce5b54cf1

View File

@ -60,10 +60,16 @@ for REPO in $REPOS; do
--exclude="isolinux/" \ --exclude="isolinux/" \
--exclude="debuginfo/" \ --exclude="debuginfo/" \
--exclude="docker_img/" \ --exclude="docker_img/" \
--exclude="edge_img/" \
--exclude="embedded_img/" \
--exclude="loongarch64/" \
--exclude="ppc64le/" \
--exclude="raspi_img" \ --exclude="raspi_img" \
--exclude="riscv64/" \
--exclude="source/" \ --exclude="source/" \
--exclude="stratovirt_img/" \ --exclude="stratovirt_img/" \
--exclude="virtual_machine_img/" \ --exclude="virtual_machine_img/" \
--exclude="WSL/" \
$MIRROR/$REPO/ $BASE/$REPO/ $MIRROR/$REPO/ $BASE/$REPO/
echo_ts "$REPO rsync done." echo_ts "$REPO rsync done."
done done