# -*- perl -*- # # Test::AutoBuild::Stage::CleanArchive # # Daniel Berrange # Dennis Gregorovic # # Copyright (C) 2004 Red Hat, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # $Id: CleanArchive.pm,v 1.4 2006/02/02 10:30:48 danpb Exp $ =pod =head1 NAME Test::AutoBuild::Stage::CleanArchive - Purge old build archives =head1 SYNOPSIS use Test::AutoBuild::Stage::CleanArchive =head1 DESCRIPTION This stage purges archives to free up disk space. Archives are purged according to the validity criteria applied by the archive manager. =head1 METHODS =over 4 =cut package Test::AutoBuild::Stage::CleanArchive; use base qw(Test::AutoBuild::Stage); use warnings; use strict; use Log::Log4perl; sub process { my $self = shift; my $runtime = shift; my $log = Log::Log4perl->get_logger(); my $arcman = $runtime->archive_manager; return unless defined $arcman; my @archives = $runtime->archive_manager->list_invalid_archives(); $log->debug("Got " . scalar(@archives) . " archive(s) to delete"); foreach my $archive (@archives) { $log->debug("Deleting expired archive " . $archive->key); $runtime->archive_manager->delete_archive($archive->key); } } 1 # So that the require or use succeeds. __END__ =back =head1 AUTHORS Daniel Berrange Dennis Gregorovic =head1 COPYRIGHT Copyright (C) 2004 Red Hat, Inc. =head1 SEE ALSO C, L, L, L, L, L =cut