1
0
Fork 0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__config_lalis/cp-task-lalis.sh

23 lines
592 B
Bash
Executable File

#!/usr/bin/bash
MIRRORPATH=/mnt/lalis/mirror/mageia/lalis/
for X in 8 9
{
rsync -aP SRPMS/*mga$X* $MIRRORPATH/$X/SRPMS/core/
if [ $? -ne 0 ]; then
echo "error rsync : $LINENO"
#exit 1
fi
for ARCH in x86_64 i586 #aarch64 armv7hl
{
rsync -aP RPMS/noarch/*mga$X* $MIRRORPATH/$X/$ARCH/media/core/
if [ $? -ne 0 ]; then
echo "error rsync : $LINENO"
#exit 1
fi
nice -n 19 gendistrib --nobadrpm --blind --skipmissingdir --mediacfg $MIRRORPATH/$X/$ARCH/media/media_info/media.cfg $MIRRORPATH/$X/$ARCH
}
}
chmod a+rX -R .