diff options
Diffstat (limited to 'bin/unix')
-rwxr-xr-x | bin/unix/rsync_retry.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/unix/rsync_retry.sh b/bin/unix/rsync_retry.sh new file mode 100755 index 0000000..be70c03 --- /dev/null +++ b/bin/unix/rsync_retry.sh | |||
@@ -0,0 +1,14 @@ | |||
1 | #! /bin/sh | ||
2 | |||
3 | REMOTE=${REMOTE:-vps} | ||
4 | SRC="$1" | ||
5 | DEST="$2" | ||
6 | DEST="${DEST:-$1}" | ||
7 | |||
8 | # If fail to sync file, then | ||
9 | if rsync -au "${SRC}" ${REMOTE}:"${DEST}"; then | ||
10 | rm "${SRC}".retry 2>/dev/null | ||
11 | true | ||
12 | else | ||
13 | echo ${DEST} >${SRC}.retry | ||
14 | fi | ||