Kernel::System::CheckEnvironment

NAME

Kernel::System::CheckEnvironment – Run all environment check modules.

PUBLIC INTERFACE

new()

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

    use Kernel::System::CheckEnvironment;
    my $CheckEnvironmentObject = Kernel::System::CheckEnvironment->new();
    $CheckEnvironmentObject->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