lib/core/installer/menu/manage/framework/repository/SetIcingaSnapshotRepo.psm1
function Show-IcingaForWindowsManagementConsoleSetIcingaSnapshotRepositories() { param ( [array]$Value = @( 'https://packages.icinga.com/IcingaForWindows/snapshot/ifw.repo.json' ), [string]$DefaultInput = 'c', [switch]$JumpToSummary = $FALSE, [switch]$Automated = $FALSE, [switch]$Advanced = $FALSE ); $CurrentRepositories = Get-IcingaRepositories; foreach ($entry in $CurrentRepositories) { if ($entry.Name -eq 'Icinga Snapshot') { $Value = $entry.Value.RemotePath; break; } } Show-IcingaForWindowsInstallerMenu ` -Header 'Please enter the URL/Path for the location of your "Icinga Snapshot" Repository:' ` -Entries @( @{ 'Command' = 'Show-IcingaForWindowsManagementConsoleManageIcingaRepositories'; 'Help' = 'Sets the current repository for Icinga for Windows as "Icinga Snapshot"'; 'Action' = @{ 'Command' = 'Add-IcingaRepository'; 'Arguments' = @{ '-Name' = 'Icinga Snapshot'; '-RemotePath' = '$DefaultValues$'; '-Force' = $TRUE; } } } ) ` -DefaultIndex $DefaultInput ` -AddConfig ` -ConfigLimit 1 ` -DefaultValues $Value ` -ContinueFirstValue ` -MandatoryValue ` -ConfigElement ` -HiddenConfigElement ` -Advanced ` -NoConfigSwap; } |