/[smeserver]/builds_bin/update_rpms_dir
ViewVC logotype

Diff of /builds_bin/update_rpms_dir

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.10 by gordonr, Tue Feb 14 04:08:46 2006 UTC Revision 1.11 by gordonr, Mon Mar 6 04:02:12 2006 UTC
# Line 4  Line 4 
4  # is free software; you can redistribute it and/or modify it under the  # is free software; you can redistribute it and/or modify it under the
5  # same terms as Perl itself.  # same terms as Perl itself.
6  #  #
7  # $Id: update_rpms_dir,v 1.9 2006/02/12 05:06:41 gordonr Exp $  # $Id: update_rpms_dir,v 1.10 2006/02/14 04:08:46 gordonr Exp $
8  #  #
9  # Update RPMS directory with the latest from a given list of directories  # Update RPMS directory with the latest from a given list of directories
10    
# Line 13  use Getopt::Long; Line 13  use Getopt::Long;
13    
14  my $rpm_flags =  RPM2->vsf_nodsa;       # Deal with missing DSA keys  my $rpm_flags =  RPM2->vsf_nodsa;       # Deal with missing DSA keys
15    
16  GetOptions(\%opt, "verbose", "debug", "rpms_dir=s");  GetOptions(\%opt, "verbose", "debug", "rpms_dir=s", "target_dir=s");
17    
18  # XXX - FIXME - These will be command line options  # XXX - FIXME - These will be command line options
19    
20  my $rpms_dir = $opt{rpms_dir} || "/builds/RPMS";  my $rpms_dir = $opt{rpms_dir} || "/builds/RPMS";
21    
22    my $target_dir = $opt{target_dir} || $rpms_dir;
23    
24  warn "Using $rpms_dir\n" if $opt{verbose};  warn "Using $rpms_dir\n" if $opt{verbose};
25    
26  my @repositories = qw(  my @repositories = qw(
# Line 45  for my $file ( sort grep { /.rpm$/ } rea Line 47  for my $file ( sort grep { /.rpm$/ } rea
47          if ($newest)          if ($newest)
48          {          {
49              # XXX - FIXME - Should we try other repos, or stop here?              # XXX - FIXME - Should we try other repos, or stop here?
50              print "rm $rpms_dir/$file; cp -p $dir/$newest $rpms_dir\n"              print "rm $target_dir/$file; cp -p $dir/$newest $target_dir\n"
51          }                }      
52      }      }
53  }  }


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed