From 126d93dd527c5a555f601a6e84f23190d749b376 Mon Sep 17 00:00:00 2001
From: Per Jonsson <poj@lysator.liu.se>
Date: Sun, 25 Oct 2009 20:41:18 +0000
Subject: [PATCH] Minor fix in status the first time a task is backed up.

* backup-one-task: Do not run pruneing step the first time a task
  is run. This removes an incorrect warning for task.
---
 ChangeLog       |  8 +++++++-
 backup-one-task | 21 ++++++++++++---------
 2 files changed, 19 insertions(+), 10 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 2870b1c..f116712 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
-2009-10-25  Per Jonsson  <poj@minerva.lkpg.dravejk.net>
+2009-10-25  Per Jonsson  <poj@lysator.liu.se>
+
+	Minor fix in status the first time a task is backed up.
+	* backup-one-task: Do not run pruneing step the first time a task
+	is run. This removes an incorrect warning for task.
+
+2009-10-25  Per Jonsson  <poj@lysator.liu.se>
 
 	Updated the config for Lysator
 	* fetch-backup-work: Remove backups of lenin and kilauea. Fetch
diff --git a/backup-one-task b/backup-one-task
index 8559c10..7272061 100755
--- a/backup-one-task
+++ b/backup-one-task
@@ -138,16 +138,19 @@ then
     then
 	AGE=`cat "$age"`
     fi
-    
-    echo -ne "${CLR}${msg}: removing increments older than $AGE"
-    $ss --status $disk $part "${msg}: removing increments older than $AGE"
 
-    /opt/LYSrdiff/bin/rdiff-backup \
-        --remove-older-than $AGE \
-        --null-separator \
-        --force \
-        -v 2 \
-        "$files" > "$rdiffcleanlogfile" 2>&1
+    if [ -d "$files" ]
+    then
+	echo -ne "${CLR}${msg}: removing increments older than $AGE"
+	$ss --status $disk $part "${msg}: removing increments older than $AGE"
+
+	/opt/LYSrdiff/bin/rdiff-backup \
+            --remove-older-than $AGE \
+            --null-separator \
+            --force \
+            -v 2 \
+            "$files" > "$rdiffcleanlogfile" 2>&1
+    fi
 fi
 
 if [ $only_prune = 1 ]
-- 
GitLab