mirror of https://github.com/Icinga/icinga2.git
Move NSClient++ installation step after all other wizard steps
refs #9263
This commit is contained in:
parent
6d37d0ab24
commit
93b0ab7893
|
@ -269,6 +269,17 @@ namespace Icinga
|
|||
return;
|
||||
}
|
||||
|
||||
if (chkInstallNSCP.Checked)
|
||||
{
|
||||
SetConfigureStatus(85, "Waiting for NSClient++ installation to complete...");
|
||||
|
||||
Process proc = new Process();
|
||||
proc.StartInfo.FileName = "msiexec.exe";
|
||||
proc.StartInfo.Arguments = "/i \"" + Program.Icinga2InstallDir + "\\sbin\\NSCP-Win32.msi\"";
|
||||
proc.Start();
|
||||
proc.WaitForExit();
|
||||
}
|
||||
|
||||
SetConfigureStatus(100, "Finished.");
|
||||
|
||||
FinishConfigure();
|
||||
|
|
Loading…
Reference in New Issue