This commit is contained in:
Alexander Aleksandrovič Klimov 2026-02-16 09:55:58 +01:00 committed by GitHub
commit a66d6c4cb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 1597 additions and 1564 deletions

File diff suppressed because it is too large Load diff

View file

@ -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;

File diff suppressed because it is too large Load diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 410 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 473 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 460 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 439 KiB