Kernel::System::CheckEnvironment::ExternalPrograms

NAME

Kernel::System::CheckEnvironment::ExternalPrograms – Environment check for required external programs.

PUBLIC INTERFACE

new()

Don't use the ObjectManager, use it directly instead:

    use Kernel::System::CheckEnvironment::ExternalPrograms;
    my $ExternalProgramsObject = Kernel::System::CheckEnvironment::ExternalPrograms->new();
    $ExternalProgramsObject->Run();

The ObjectManager should not be used especially when using this module from a script, because we want this to always work, no matter if any dependencies fail.

Scroll to Top