icinga-powershell-framework/lib/core/icingaagent/getters/Get-IcingaAgentBinary.psm1

12 lines
311 B
PowerShell
Raw Normal View History

2019-09-29 12:25:40 -04:00
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;
}