Last active
May 12, 2024 15:15
-
-
Save gdamjan/cc3a65cf9afa5fd7645c to your computer and use it in GitHub Desktop.
script to rsync from an arch mirror
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
[Unit] | |
Description=Mirror arch linux | |
[Service] | |
Type=oneshot | |
ExecStart=/usr/local/bin/sync_arch_mirror.sh | |
User=arch | |
IPAccounting=yes | |
NoNewPrivileges=yes | |
PrivateTmp=yes | |
PrivateDevices=yes | |
ProtectSystem=strict | |
ProtectControlGroups=yes | |
ProtectKernelTunables=yes | |
ProtectKernelModules=yes | |
MemoryDenyWriteExecute=yes | |
RestrictRealtime=yes | |
RestrictNamespaces=yes | |
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 | |
SystemCallArchitectures=native | |
LockPersonality=yes |
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
[Unit] | |
Description=Mirror arch almost every two hours | |
[Timer] | |
OnBootSec=15min | |
OnUnitActiveSec=2h10m | |
AccuracySec=10min | |
[Install] | |
WantedBy=timers.target |
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
pool/packages | |
core | |
core-testing | |
extra | |
extra-testing | |
multilib | |
multilib-testing | |
lastsync | |
lastupdate |
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 | |
set -euo pipefail | |
if [ "$EUID" -eq 0 ] | |
then echo "Don't run as root!" | |
exit 1 | |
fi | |
REPO=rsync://ftp.acc.umu.se/mirror/archlinux | |
DEST=/srv/arch_mirror/archlinux | |
RSYNC_FILE_LIST=/srv/arch_mirror/archlinux-rsync-file-list.txt | |
mkdir -p $DEST | |
# Common rsync options | |
: "${LAZY:="--delete-delay --delay-updates"}" | |
RSYNC_OPTS="-rltH -4 --safe-links --no-motd $LAZY" | |
# Only be verbose on tty | |
if tty -s; then | |
RSYNC_OPTS="$RSYNC_OPTS -v" | |
fi | |
/usr/bin/rsync $RSYNC_OPTS --files-from=$RSYNC_FILE_LIST $REPO/ $DEST/ |
Author
gdamjan
commented
Oct 24, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment