icinga-powershell-framework/lib/core/jea/Get-IcingaJEASessionFile.psm1

11 lines
237 B
PowerShell
Raw Normal View History

2021-08-06 12:12:27 -04:00
function Get-IcingaJEASessionFile()
{
[string]$Path = Join-Path -Path (Get-IcingaFrameworkRootPath) -ChildPath 'RoleCapabilities\IcingaForWindows.psrc';
if (Test-Path -Path $Path) {
return $Path;
}
return '';
}