You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2023/05/10 19:00:51 UTC

[trafficcontrol-trafficops-types] 01/02: Fix missing optional ISO gen request properties

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git

commit 8a9b031c048c4476ea6d69fba4ac70dcc20c32b5
Author: ocket8888 <oc...@apache.org>
AuthorDate: Wed Feb 22 15:20:26 2023 -0700

    Fix missing optional ISO gen request properties
    
    (cherry picked from commit 1a83a65fcd822c90acd8bc1bd76d0445849c60db)
---
 src/iso.ts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/iso.ts b/src/iso.ts
index f21e003..98b7721 100644
--- a/src/iso.ts
+++ b/src/iso.ts
@@ -25,6 +25,10 @@ interface ISOFields {
 	interfaceName?: string | null;
 	ip6Address?: string | null;
 	ip6Gateway?: string | null;
+	mgmtInterface?: string | null;
+	mgmtIpAddress?: string | null;
+	mgmtIpGateway?: string | null;
+	mgmtIpNetmask?: string | null;
 	osVersionDir: string;
 	rootPass: string;
 }