From 02c33932c60b13ef5c5a0a201ca1386bc2a7733d Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Tue, 18 Nov 2008 22:22:08 +0100 Subject: ftpsync kick lockfile, use shell only Signed-off-by: Joerg Jaspert --- bin/ftpsync | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'bin') diff --git a/bin/ftpsync b/bin/ftpsync index 202bb02..e98cdf5 100755 --- a/bin/ftpsync +++ b/bin/ftpsync @@ -235,8 +235,6 @@ FULLLOGS=${FULLLOGS:-"false"} # How to rotate our log SAVELOG=${SAVELOG:-"savelog -t -c 14"} -# Lockfile program -LOCKFILE=${LOCKFILE:-"lockfile"} # Our lockfile LOCK=${LOCK:-"${TO}/Archive-Update-in-Progress-${MIRRORNAME}"} @@ -327,19 +325,11 @@ mkdir -p "${TO}/project/trace" touch "${UPDATEREQUIRED}" # Check to see if another sync is in progress -if [ -x "${LOCKFILE}" ]; then - if ${LOCKFILE} -! -l 43200 -r 0 "${LOCK}"; then - error "Unable to start rsync, lock file still exists" +if ! ( set -o noclobber; echo "$$" > "${LOCK}") 2> /dev/null; then + error "Unable to start rsync, lock file still exists, PID $(cat ${LOCK})" exit 1 - fi -else - if [ "`find ${LOCK} -maxdepth 1 -cmin -720`" != "" ]; then - error "Unable to start rsync, lock file still exists" - exit 1 - else - touch "${LOCK}" - fi fi + trap cleanup EXIT ERR TERM HUP INT QUIT # Start log by redirecting everything there. -- cgit v1.2.3