Disables notification feature after Icinga Agent installation

Fixes #75
This commit is contained in:
Lord Hepipud 2020-06-24 10:32:03 +02:00
parent 7b9d8df5b4
commit 1f86a213b3

View file

@ -1,5 +1,6 @@
function Install-IcingaAgentBaseFeatures() function Install-IcingaAgentBaseFeatures()
{ {
Disable-IcingaAgentFeature -Feature 'checker'; Disable-IcingaAgentFeature -Feature 'checker';
Disable-IcingaAgentFeature -Feature 'notification';
Enable-IcingaAgentFeature -Feature 'api'; Enable-IcingaAgentFeature -Feature 'api';
} }