mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2026-02-03 04:09:29 -05:00
20 lines
582 B
PowerShell
20 lines
582 B
PowerShell
function Set-IcingaForWindowsInstallerValuesFromStep()
|
|
{
|
|
param (
|
|
[string]$InstallerStep,
|
|
[string]$Parent,
|
|
[array]$Values = @()
|
|
);
|
|
|
|
$Step = Get-IcingaForWindowsManagementConsoleMenu;
|
|
|
|
if ([string]::IsNullOrEmpty($InstallerStep) -eq $FALSE) {
|
|
$Step = Get-IcingaForWindowsManagementConsoleAlias -Command $InstallerStep;
|
|
|
|
if ([string]::IsNullOrEmpty($Parent) -eq $FALSE) {
|
|
$Step = [string]::Format('{0}:{1}', $Step, $Parent);
|
|
}
|
|
}
|
|
|
|
$global:Icinga.InstallWizard.Config[$Step].Values = $Values;
|
|
}
|