Fixed error causing find to complain about not having -mindepth earlier
[matthijs/upstream/backupninja.git] / backupninja
index 7bd35416788b126caad90d1552315c2ba5c44141..ea7304e115918c95f839b293dd4156cc6dac14f5 100755 (executable)
@@ -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
        (
@@ -438,6 +445,8 @@ getconf RDIFFBACKUP /usr/bin/rdiff-backup
 getconf MYSQL /usr/bin/mysql
 getconf MYSQLHOTCOPY /usr/bin/mysqlhotcopy
 getconf MYSQLDUMP /usr/bin/mysqldump
+getconf PGSQLDUMP /usr/bin/pg_dump
+getconf PGSQLDUMPALL /usr/bin/pg_dumpall
 getconf GZIP /bin/gzip
 getconf RSYNC /usr/bin/rsync
 getconf vservers no
@@ -477,7 +486,7 @@ errormsg=""
 if [ "$singlerun" ]; then
        files=$singlerun
 else
-       files=`find $configdirectory -mindepth 1 | sort -n`
+       files=`find $configdirectory -mindepth 1 ! -name '.*.swp' | sort -n`
 fi
 
 for file in $files; do