mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 23:29:40 -05:00
Changed AllowUpdate type for easier programmable use on Agent installation
This commit is contained in:
parent
d3d319942e
commit
4925279074
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