X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=backupninja;h=ea7304e115918c95f839b293dd4156cc6dac14f5;hb=c2b40bb9d36bf88abd3c5a9caebcd15b53383695;hp=e5c55aea505aef9912feafa5cb91ddc95fe42465;hpb=3e49c348b95c1d3b1c5a51cd3e28ab654070ec88;p=matthijs%2Fupstream%2Fbackupninja-vserver.git diff --git a/backupninja b/backupninja index e5c55ae..ea7304e 100755 --- a/backupninja +++ b/backupninja @@ -305,7 +305,14 @@ function process_action() { let "actions_run += 1" # call the handler: - local bufferfile="/tmp/backupninja.buffer.$$" + if [ -x /bin/mktemp ] + then + local bufferfile=`mktemp /tmp/backupninja.buffer.XXXXXXXX` + else + DATE=`date` + sectmp=`echo $DATE | /usr/bin/md5sum | cut -d- -f1` + local bufferfile=/tmp/backupninja.buffer.$sectmp + fi echo "" > $bufferfile echo_debug_msg=1 ( @@ -479,7 +486,7 @@ errormsg="" if [ "$singlerun" ]; then files=$singlerun else - files=`find $configdirectory ! -name '.*.swp' -mindepth 1 | sort -n` + files=`find $configdirectory -mindepth 1 ! -name '.*.swp' | sort -n` fi for file in $files; do