attempt to get openvpn config if null
This commit is contained in:
parent
8cf693d792
commit
2bec4ee19f
@ -79,9 +79,11 @@ pipeline {
|
|||||||
fi
|
fi
|
||||||
"""
|
"""
|
||||||
|
|
||||||
openVPNConfig = sh(
|
retry(3) {
|
||||||
returnStdout: true,
|
try {
|
||||||
script: """# Get OpenVPN Config
|
openVPNConfig = sh(
|
||||||
|
returnStdout: true,
|
||||||
|
script: """# Get OpenVPN Config
|
||||||
curl \
|
curl \
|
||||||
--silent \
|
--silent \
|
||||||
--location \
|
--location \
|
||||||
@ -101,7 +103,15 @@ curl \
|
|||||||
--expression='s/auth-user-pass/auth-user-pass \\/etc\\/openvpn\\/client\\/openvpn-credentials.txt/' \
|
--expression='s/auth-user-pass/auth-user-pass \\/etc\\/openvpn\\/client\\/openvpn-credentials.txt/' \
|
||||||
| base64 -w 0
|
| base64 -w 0
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
|
} catch(e) {
|
||||||
|
if (openVPNConfig == "") {
|
||||||
|
printf("nordURL: %s", nordURL)
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
withCredentials(
|
withCredentials(
|
||||||
[
|
[
|
||||||
string(
|
string(
|
||||||
|
Reference in New Issue
Block a user