Merge d3653b1b30 into 333534096e
1458
agent/windows-setup-agent/SetupWizard.Designer.cs
generated
|
|
@ -219,6 +219,7 @@ namespace Icinga
|
|||
args += " --trustedcert \"" + _TrustedFile + "\"";
|
||||
args += " --cn \"" + txtInstanceName.Text.Trim() + "\"";
|
||||
args += " --zone \"" + txtInstanceName.Text.Trim() + "\"";
|
||||
args += " --parent_zone \"" + txtParentZone.Text.Trim() + "\"";
|
||||
|
||||
foreach (ListViewItem lvi in lvwGlobalZones.Items) {
|
||||
args += " --global_zones " + lvi.SubItems[0].Text.Trim();
|
||||
|
|
@ -318,6 +319,12 @@ namespace Icinga
|
|||
return;
|
||||
}
|
||||
|
||||
if (txtParentZone.Text.Length == 0)
|
||||
{
|
||||
Warning("Please specify the parent zone.");
|
||||
return;
|
||||
}
|
||||
|
||||
if (lvwEndpoints.Items.Count == 0) {
|
||||
Warning("You need to add at least one master/satellite endpoint.");
|
||||
return;
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 410 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 473 KiB |
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 460 KiB |
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 439 KiB |