mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
21 lines
404 B
PowerShell
21 lines
404 B
PowerShell
|
|
function Get-IcingaServiceCheckName()
|
||
|
|
{
|
||
|
|
param (
|
||
|
|
[string]$ServiceInput,
|
||
|
|
$Service
|
||
|
|
);
|
||
|
|
|
||
|
|
if ($null -eq $Service) {
|
||
|
|
return [string]::Format(
|
||
|
|
'Service "{0}"',
|
||
|
|
$ServiceInput
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
return [string]::Format(
|
||
|
|
'Service "{0} ({1})"',
|
||
|
|
$Service.Values.metadata.DisplayName,
|
||
|
|
$Service.Values.metadata.ServiceName
|
||
|
|
);
|
||
|
|
}
|