mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
Changed AllowUpdate type for easier programmable use on Agent installation
This commit is contained in:
parent
411cfec4d4
commit
9bd709f0da
1 changed files with 3 additions and 3 deletions
|
|
@ -2,9 +2,9 @@ function Install-IcingaAgent()
|
|||
{
|
||||
param(
|
||||
[string]$Version,
|
||||
[string]$Source = 'https://packages.icinga.com/windows/',
|
||||
[string]$InstallDir = '',
|
||||
[switch]$AllowUpdates
|
||||
[string]$Source = 'https://packages.icinga.com/windows/',
|
||||
[string]$InstallDir = '',
|
||||
[bool]$AllowUpdates = $FALSE
|
||||
);
|
||||
|
||||
$IcingaData = Get-IcingaAgentInstallation;
|
||||
|
|
|
|||
Loading…
Reference in a new issue