From f4eb4ab8a597a0241d78918d9a8dae58b1fe7dc9 Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Sat, 27 Sep 2008 22:03:51 +0200 Subject: Include a few suggestions from sgran Signed-off-by: Joerg Jaspert --- bin/ftpsync | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/ftpsync') 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} \ -- cgit v1.2.3