attempt to get openvpn config if null

This commit is contained in:
Hyatt 2023-06-29 12:45:30 -05:00
parent 8cf693d792
commit 2bec4ee19f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -79,6 +79,8 @@ pipeline {
fi
"""
retry(3) {
try {
openVPNConfig = sh(
returnStdout: true,
script: """# Get OpenVPN Config
@ -102,6 +104,14 @@ curl \
| base64 -w 0
"""
)
} catch(e) {
if (openVPNConfig == "") {
printf("nordURL: %s", nordURL)
throw e
}
}
}
withCredentials(
[
string(