NAME

OTRS::OPM::Installer - Install OTRS add ons

VERSION

version 0.02

SYNOPSIS

use OTRS::OPM::Installer;

my $installer = OTRS::OPM::Installer->new;
$installer->install( 'FAQ' );

# or

my $installer = OTRS::OPM::Installer->new();
$installer->install( package => 'FAQ', version => '2.1.9' );

# provide path to a config file
my $installer = OTRS::OPM::Installer->new(
    conf => 'test.rc',
);
$installer->install( 'FAQ' );

DESCRIPTION

This is an alternate installer for OTRS addons. The standard OTRS package manager currently does not install dependencies. OTRS::OPM::Installer takes care of those dependencies and it can handle dependencies from different places:

  • OTRS.org

    • ITSM Packages

    • Misc Packages

  • OPAR

CONFIGURATION FILE

You can provide some basic configuration in a .opminstaller.rc file:

repository=ftp://ftp.otrs.org/pub/otrs/packages
repository=ftp://ftp.otrs.org/pub/otrs/itsm/packages33
repository=http://opar.perl-services.de
repository=http://feature-addons.de/repo
otrs_path=/srv/otrs

ACKNOWLEDGEMENT

The development of this packages was sponsored by http://feature-addons.de

AUTHOR

Renee Baecker <reneeb@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2017 by Renee Baecker.

This is free software, licensed under:

The Artistic License 2.0 (GPL Compatible)