]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Add purged and recycle volume to loading procedure when expired=on
authorEric Bollengier <eric@eb.homelinux.org>
Tue, 3 Feb 2009 19:53:18 +0000 (19:53 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Tue, 3 Feb 2009 19:53:18 +0000 (19:53 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8417 91ce42f0-d328-0410-95d8-f526ca767f89

gui/bweb/lib/Bweb.pm
gui/bweb/technotes-3.0

index aef9a87d9b6a660516395e2b6db90aeec71267dd..feda60e30dd6812a955cc0caa265308ea572825e 100644 (file)
@@ -2176,10 +2176,16 @@ sub help_intern_compute
     my ($sql, undef) = $self->get_param('pools', 'locations', 'mediatypes');
 
     if (CGI::param('expired')) {
+        # we take only expired volumes or purged/recycle ones
        $sql = "
-AND (    $self->{sql}->{UNIX_TIMESTAMP}(Media.LastWritten) 
-       + $self->{sql}->{TO_SEC}(Media.VolRetention)
+AND (
+ (  ($self->{sql}->{UNIX_TIMESTAMP}(Media.LastWritten) 
+      + $self->{sql}->{TO_SEC}(Media.VolRetention)
     ) < NOW()
+ ) OR ( 
+  Media.VolStatus IN ('Purged', 'Recycle')
+ )
+)
  " . $sql ;
     }
 
index 94a4e958e71e2f32e8bb1304e59fc2802621c42a..9f758d2177da16a4c242a7c90263e26378824f12 100644 (file)
@@ -1,5 +1,6 @@
 03Feb09
 ebl  Add pool parameter to label barcode process
+ebl  Add purged and recycle volume to loading procedure when expired=on
 20Jan09
 ebl  Use default age in missing job view
 19Jan09