From 1e52727d7f722f25c2167a73f554c141e934d93f Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 11 Jul 2019 14:47:52 +0200 Subject: [PATCH] run.php: Let our hooks always run resolves #3 --- run.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.php b/run.php index a571159..2ccd4e3 100644 --- a/run.php +++ b/run.php @@ -3,5 +3,5 @@ /** @var $this \Icinga\Application\Modules\Module */ -$this->provideHook('audit', 'AuditLog'); -$this->provideHook('audit', 'AuditStream'); +$this->provideHook('audit', 'AuditLog', true); +$this->provideHook('audit', 'AuditStream', true);