aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/unix/rsync_retry.sh
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2023-04-12 11:49:55 +0800
committerHsieh Chin Fan <pham@topo.tw>2023-04-12 11:49:55 +0800
commit73e2aa4cee08900882d77cb94a74c338aa9740f2 (patch)
treebae3519d18ea20d31d8262629c89f886d9a4866e /bin/unix/rsync_retry.sh
parent4a07004b6ee653209bae7a40257885759c22ea27 (diff)
Update
Diffstat (limited to 'bin/unix/rsync_retry.sh')
-rwxr-xr-xbin/unix/rsync_retry.sh14
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
3REMOTE=${REMOTE:-vps}
4SRC="$1"
5DEST="$2"
6DEST="${DEST:-$1}"
7
8# If fail to sync file, then
9if rsync -au "${SRC}" ${REMOTE}:"${DEST}"; then
10 rm "${SRC}".retry 2>/dev/null
11 true
12else
13 echo ${DEST} >${SRC}.retry
14fi