From 882ce624a00ea62bb1cab1cf253cb893ec190e49 Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Fri, 22 May 2020 13:41:24 +0200 Subject: [PATCH] Changes error for service installation to warning on missing path --- lib/core/framework/Install-IcingaFrameworkService.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/framework/Install-IcingaFrameworkService.psm1 b/lib/core/framework/Install-IcingaFrameworkService.psm1 index 5b6c329..81607dc 100644 --- a/lib/core/framework/Install-IcingaFrameworkService.psm1 +++ b/lib/core/framework/Install-IcingaFrameworkService.psm1 @@ -33,7 +33,7 @@ function Install-IcingaFrameworkService() ); if ([string]::IsNullOrEmpty($Path)) { - Write-IcingaConsoleError 'No path specified for Framework service. Service will not be installed'; + Write-IcingaConsoleWarning 'No path specified for Framework service. Service will not be installed'; return; }