mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
19 lines
524 B
PowerShell
19 lines
524 B
PowerShell
|
|
<#
|
||
|
|
.SYNOPSIS
|
||
|
|
Fetches the configuration of the configured Proxy server for the Framework, in
|
||
|
|
case it is set
|
||
|
|
.DESCRIPTION
|
||
|
|
etches the configuration of the configured Proxy server for the Framework, in
|
||
|
|
case it is set
|
||
|
|
.FUNCTIONALITY
|
||
|
|
etches the configuration of the configured Proxy server for the Framework, in
|
||
|
|
case it is set
|
||
|
|
.LINK
|
||
|
|
https://github.com/Icinga/icinga-powershell-framework
|
||
|
|
#>
|
||
|
|
|
||
|
|
function Get-IcingaFrameworkProxyServer()
|
||
|
|
{
|
||
|
|
return (Get-IcingaPowerShellConfig -Path 'Framework.Proxy.Server');
|
||
|
|
}
|