blob: 9f1872755ef2d9b9d7aebe25506c820f0bec49b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
// Icinga Web 2 X.509 Module | (c) 2018 Icinga GmbH | GPLv2
namespace Icinga\Module\X509;
use Icinga\Application\Icinga;
class Command extends \Icinga\Cli\Command
{
// Fix Web 2 issue where $configs is not properly initialized
protected $configs = [];
public function init()
{
Icinga::app()->getModuleManager()->loadEnabledModules();
}
}
|