Last active
January 25, 2022 18:21
-
-
Save lovellfelix/d0b2e2cd29af098af1385cadec087d80 to your computer and use it in GitHub Desktop.
CentOS Mirror: - CENTOS, EPEL & Zabbix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
LOCKFILE="/opt/scripts/rsync_updates" | |
CENTOSDIR="/opt/repo-data/centos/" | |
CENTOS_MIRROR="rsync://repos.dfw.quadranet.com/centos/" | |
CENTOS_PARAMS="-avz --delete --exclude=*.iso --progress" | |
EPELDIR="/opt/repo-data/epel/" | |
EPEL_MIRROR="rsync://mirror.math.princeton.edu/pub/epel/" | |
EPEL_PARAMS="-avz --delete --exclude=4* --exclude=5* --progress" | |
ZBXDIR="/srv/mirror/zabbix/centos/5/x86_64" | |
MIRROR5="rsync://repo.zabbixzone.com/centos/5/x86_64/" | |
ZBXDIR="/opt/repo-data/zabbix/" | |
ZBXD_MIRROR="rsync://repo.zabbix.com/mirror" | |
ZBXD_PARAMS="-avz --delete --exclude=*/*/debian --exclude=*/*/ubuntu --progress" | |
if [ -f $LOCKFILE ]; then | |
echo "Updates via rsync already running." | |
exit 0 | |
else | |
touch $LOCKFILE | |
rsync $CENTOS_PARAMS $CENTOS_MIRROR $CENTOSDIR | |
rsync $EPEL_PARAMS $EPEL_MIRROR $EPELDIR | |
rsync $ZBXD_PARAMS $ZBXD_MIRROR $ZBXDIR | |
#Fixed permission issue with Zabbix repository data | |
chmod go+rx -R $ZBXDIR | |
rm -f $LOCKFILE | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#crontab start sync at 11PM | |
0 23 * * * /opt/scripts/sync_repo.sh > /opt/scripts/cron.log 2>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment