]> arthur.barton.de Git - backup-script.git/blobdiff - bin/backup-script-wrapper
Fix backup-status not showing result code for successful backups
[backup-script.git] / bin / backup-script-wrapper
index 8d160e494ee09705725589401f06b7a042bb19e5..32a15a66bf40eb7fac8732c2908b7b42a77eac6f 100755 (executable)
@@ -21,15 +21,27 @@ if [ -z "$MAILTO" ]; then
 fi
 
 NAME="backup-script"
-HOST=`hostname -f`
-TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 1
-LOGFILE="/var/log/backup-script.log"
+
 DELIMITER="- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -"
+HOST=`hostname -f`
+LOGFILE="/var/log/$NAME.log"
+PIDFILE="/var/run/$NAME.pid"
 SUBJECT="$NAME results"
+TMP=`mktemp /tmp/$NAME.XXXXXXXX` || exit 1
 
 PATH="$PATH:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
 export PATH
 
+# check PID file ("lock file")
+if [ -e "$PIDFILE" ]; then
+       echo "Lockfile \"$PIDFILE\" already exists."
+       echo "Is an other instance still running?"
+       echo
+       echo -n "Aborted: "; date
+       echo
+       exit 4
+fi
+
 exec >"$TMP" 2>&1
 
 echo "$NAME Report"