blob: e8c13b8f46908db82bdf6aa9950b3a082e8f10ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/bash
home="$(dirname "$(readlink -f $0)")"
target="${home}/repo"
tmp="${home}/tmp"
lock='/tmp/mirrorsync.lck'
source='ftp5.gwdg.de::pub/linux/archlinux/'
[ ! -d "${target}" ] && mkdir -p "${target}"
[ ! -d "${tmp}" ] && mkdir -p "${tmp}"
[ -f "${lock}" ] && exit 1
touch "${lock}"
trap "rm -f '${lock}'" EXIT INT TERM
rsync -rtlvH --safe-links --delete-after --progress -h \
--delay-updates --no-motd --bwlimit=1000 \
--temp-dir="${tmp}" \
--exclude='*.links.tar.gz' \
--exclude='*.old' \
--exclude='/other' \
--exclude='/sources' \
--exclude='/iso' \
${source} \
"${target}"
echo "Last sync was $(date -d @$(cat ${target}/lastsync))"
|