icinga-powershell-framework/lib/core/icingaagent/getters/Get-IcingaAgentBinary.psm1
2019-09-29 18:25:40 +02:00

11 lines
311 B
PowerShell

function Get-IcingaAgentBinary()
{
$IcingaRootDir = Get-IcingaAgentRootDirectory;
$IcingaBinary = (Join-Path -Path $IcingaRootDir -ChildPath '\sbin\icinga2.exe');
if ((Test-Path $IcingaBinary) -eq $FALSE) {
throw 'Icinga Agent binary could not be found';
}
return $IcingaBinary;
}