From f69b586aa972d1e36445af9e1e7dad12e45f40db Mon Sep 17 00:00:00 2001 From: Ezri Brimhall Date: Wed, 25 Jun 2025 13:01:52 -0600 Subject: [PATCH] Fixed the config spec --- src/vpn_manager_globalprotect/backend.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/vpn_manager_globalprotect/backend.py b/src/vpn_manager_globalprotect/backend.py index 1667501..d9b5e3c 100644 --- a/src/vpn_manager_globalprotect/backend.py +++ b/src/vpn_manager_globalprotect/backend.py @@ -415,7 +415,12 @@ class GlobalProtectConnection( name="login_target", signature="s", description="What kind of connection to create (IPSec or SSL)", - choices=[ConnectionType.PORTAL, ConnectionType.GATEWAY], + choices=[ + LoginTarget.PORTAL, + LoginTarget.GATEWAY, + LoginTarget.SSL, + LoginTarget.IPSEC, + ], ), ConfigSpec( name="spoof_clientos",