From 2bec4ee19fcc4355fda5402d373e767377ed25ff Mon Sep 17 00:00:00 2001 From: nhyatt Date: Thu, 29 Jun 2023 12:45:30 -0500 Subject: [PATCH] attempt to get openvpn config if null --- nordvpn-autoconfigure.jenkins | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/nordvpn-autoconfigure.jenkins b/nordvpn-autoconfigure.jenkins index a14294b..7fb9514 100644 --- a/nordvpn-autoconfigure.jenkins +++ b/nordvpn-autoconfigure.jenkins @@ -79,9 +79,11 @@ pipeline { fi """ - openVPNConfig = sh( - returnStdout: true, - script: """# Get OpenVPN Config + retry(3) { + try { + openVPNConfig = sh( + returnStdout: true, + script: """# Get OpenVPN Config curl \ --silent \ --location \ @@ -101,7 +103,15 @@ curl \ --expression='s/auth-user-pass/auth-user-pass \\/etc\\/openvpn\\/client\\/openvpn-credentials.txt/' \ | base64 -w 0 """ - ) + ) + } catch(e) { + if (openVPNConfig == "") { + printf("nordURL: %s", nordURL) + throw e + } + } + } + withCredentials( [ string(