From 306644a26754bc8b2d1ff019061ebf7b12fff705 Mon Sep 17 00:00:00 2001 From: rivkas Date: Tue, 9 Jan 2024 10:47:46 +0200 Subject: [PATCH] reverse the mgmt-only modifications in single payg --- .../single-payg/check-point-vsec--payg.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/gcp/deployment-packages/single-payg/check-point-vsec--payg.py b/gcp/deployment-packages/single-payg/check-point-vsec--payg.py index fb0b0fef..7165477d 100755 --- a/gcp/deployment-packages/single-payg/check-point-vsec--payg.py +++ b/gcp/deployment-packages/single-payg/check-point-vsec--payg.py @@ -36,11 +36,6 @@ 'description': 'Check Point Security Gateway and Management', 'canIpForward': True, }, - 'Management only': { - 'tags': [MANAGEMENT], - 'description': 'Check Point Security Management', - 'canIpForward': False, - }, 'Gateway only': { 'tags': [GATEWAY], 'description': 'Check Point Security Gateway', @@ -151,7 +146,7 @@ def generate_config(context): prop['osVersion'] = prop['cloudguardVersion'].replace(".", "") prop['allowUploadDownload'] = str(prop['allowUploadDownload']).lower() if not prop['managementGUIClientNetwork'] and prop['installationType'] in { - 'Gateway and Management (Standalone)', 'Management only'}: + 'Gateway and Management (Standalone)'}: raise Exception('Allowed GUI clients are required when installing ' 'a management server') for k in ['managementGUIClientNetwork']: