summaryrefslogtreecommitdiff
path: root/bin/ftpsync
diff options
context:
space:
mode:
authorJoerg Jaspert <joerg@debian.org>2008-09-27 22:03:51 +0200
committerJoerg Jaspert <joerg@debian.org>2008-09-27 22:03:51 +0200
commitf4eb4ab8a597a0241d78918d9a8dae58b1fe7dc9 (patch)
tree5d5686ed73211e3d469f9492288d6d64c3f220b8 /bin/ftpsync
parent6276ad90b6466031941484d40f88a76618e8db61 (diff)
Include a few suggestions from sgran
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Diffstat (limited to 'bin/ftpsync')
-rwxr-xr-xbin/ftpsync8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/ftpsync b/bin/ftpsync
index de2cb47..5b0a894 100755
--- a/bin/ftpsync
+++ b/bin/ftpsync
@@ -125,9 +125,7 @@ touch "${UPDATEREQUIRED}"
# If we are here for the first time, create the
# destination and the trace directory
-if [ ! -d "${TO}/project/trace/" ]; then
- mkdir -p ${TO}/project/trace
-fi
+mkdir -p ${TO}/project/trace
# Check to see if another sync is in progress
if ${LOCKFILE} -! -l 43200 -r 0 "${LOCK}"; then
@@ -154,7 +152,9 @@ while [ -e "${UPDATEREQUIRED}" ]; do
${RSYNC_USER}@${RSYNC_HOST}::${RSYNC_PATH} ${TO}
result=$?
- if [ $result -eq 0 ]; then
+ # 24 - vanished source files. Ignore, that should be the target of $UPDATEREQUIRED
+ # and us re-running.
+ if [ $result -eq 0 || $result -eq 24 ]; then
# We are lucky, it worked. Now do step 2 and sync again, this time including
# the packages/releases files
${RSYNC} ${RSYNC_OPTIONS} ${RSYNC_OPTIONS2} ${EXCLUDE} ${SOURCE_EXCLUDE} \