diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-10-13 20:43:12 -0700 |
---|---|---|
committer | jblake+piny@omgwallhack.org <jblake@omgwallhack.org> | 2010-10-13 20:43:12 -0700 |
commit | 2f862e33447446116907c60ba1142369f70a99ab (patch) | |
tree | da7ed59f81ba22a8347f3fcc4802aa23bbb3169b /usr/src/pinyadmin/sbin/rebuildrepo | |
parent | ca2a5d4df51dec985d00802426dc5f8fa47734d8 (diff) | |
download | piny-code-2f862e33447446116907c60ba1142369f70a99ab.tar.gz piny-code-2f862e33447446116907c60ba1142369f70a99ab.zip |
Rebuilding repo configs.
Diffstat (limited to 'usr/src/pinyadmin/sbin/rebuildrepo')
-rwxr-xr-x | usr/src/pinyadmin/sbin/rebuildrepo | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/usr/src/pinyadmin/sbin/rebuildrepo b/usr/src/pinyadmin/sbin/rebuildrepo new file mode 100755 index 0000000..9d4e359 --- /dev/null +++ b/usr/src/pinyadmin/sbin/rebuildrepo @@ -0,0 +1,14 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Piny; + +foreach my $reponame ( @ARGV ) { + + my $repo = Piny::Repo->new( $reponame ); + + $repo->rebuild; + +}; |