diff options
-rwxr-xr-x | syncrepo.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/syncrepo.sh b/syncrepo.sh index 23cc26e..f6c8f5d 100755 --- a/syncrepo.sh +++ b/syncrepo.sh @@ -3,8 +3,9 @@ # This is a simple mirroring script. To save bandwidth it first checks a # timestamp via HTTP and only runs rsync when the timestamp differs from the # local copy. As of 2016, a single rsync run without changes transfers roughly -# 6MiB of data which adds up to roughly 250GiB of traffic per month. Performing -# a simple check via HTTP first can thus save a lot of traffic. +# 6MiB of data which adds up to roughly 250GiB of traffic per month when rsync +# is run every minute. Performing a simple check via HTTP first can thus save a +# lot of traffic. home="/srv" target="${home}/repo" |