
Test::AutoBuild::Stage::CreateRepo - Create an package repository index for package management tools

use Test::AutoBuild::Stage::CreateRepo
my $stage = Test::AutoBuild::Stage::CreateRepo->new(name => "crearerepo",
label => "Create package repository index",
options => {
directory => "/var/lib/builder/public_html/dist",
parameters => "-d -s -n",
});
$stage->run($runtime);

This module invokes the createrepo(8) command to generate an index of RPM packages generated during the build. The index enables use of the yum(8) command to install packages generated by the builder. The crearerepo(8) command is expected to be found in the $PATH.

In addition to the standard parameters defined by the Test::AutoBuild::Stage module, this module accepts two entries in the options parameter:
The full path to the directory containing RPMs to be indexed. If this option is not specified, then the directories option must be set.
An array of paths to directories containing RPMs to be indexed. If this option is not specified, then the directory option must be set.
A string of command line arguments to be passed to the createrepo command, see the createrepo(8) manual page for details of possible values.
{
name = createrepo
label = Update Pacakge Repository
module = Test::AutoBuild::Stage::CreateRepo
critical = 0
options = {
directory = /var/lib/builder/public_html/dist
parameters = -d
}
}

For each directory defined in the options parameter, this method will run the createrepo command to generate the index.

Daniel Berrange <dan@berrange.com> Dennis Gregorovic <dgregorovic@alum.mit.edu>

Copyright (C) 2004 Red Hat, Inc.

perl(1), Test::AutoBuild::Stage, yum(8), createrepo(8)