mirror of https://github.com/Icinga/icinga2.git
Windows Wizard: Missing ticket should tell the user about the master signing
refs #5681
This commit is contained in:
parent
260c6d7438
commit
299464e31e
|
@ -144,7 +144,7 @@
|
||||||
this.lblSetupCompleted.Name = "lblSetupCompleted";
|
this.lblSetupCompleted.Name = "lblSetupCompleted";
|
||||||
this.lblSetupCompleted.Size = new System.Drawing.Size(214, 13);
|
this.lblSetupCompleted.Size = new System.Drawing.Size(214, 13);
|
||||||
this.lblSetupCompleted.TabIndex = 0;
|
this.lblSetupCompleted.TabIndex = 0;
|
||||||
this.lblSetupCompleted.Text = "The Icinga 2 agent was set up successfully.";
|
this.lblSetupCompleted.Text = "The Icinga 2 Windows client was set up successfully.";
|
||||||
//
|
//
|
||||||
// tabConfigure
|
// tabConfigure
|
||||||
//
|
//
|
||||||
|
|
|
@ -274,6 +274,14 @@ namespace Icinga
|
||||||
|
|
||||||
SetConfigureStatus(100, "Finished.");
|
SetConfigureStatus(100, "Finished.");
|
||||||
|
|
||||||
|
// Override the completed text
|
||||||
|
lblSetupCompleted.Text = "The Icinga 2 Windows client was set up successfully.";
|
||||||
|
|
||||||
|
// Add a note for the user for ticket-less signing
|
||||||
|
if (txtTicket.Text == "") {
|
||||||
|
lblSetupCompleted.Text += "\n\nTicket was not specified. Please sign the certificate request on the Icinga 2 master node (requires v2.8+).";
|
||||||
|
}
|
||||||
|
|
||||||
FinishConfigure();
|
FinishConfigure();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue