dev #19

Merged
mpavlov merged 9 commits from dev into master 2024-09-29 15:26:55 +03:00
Showing only changes of commit dd25db5776 - Show all commits

6
Jenkinsfile vendored
View File

@@ -26,11 +26,9 @@ pipeline {
steps {
script {
def ask_for_certs = input message: 'Upload RootCA certificate and key', parameters: [base64File(name: 'rootca'), base64File(name: 'rootca_key')]
}
withFileParameter('rootca') {
def rootca = readFile params.rootca
sh 'mv ${rootca} roles/rproxy/files/RootCA.crt'
}
withFileParameter('rootca_key') {
def rootca_key = readFile params.rootca_key
sh 'mv ${rootca_key} roles/rproxy/files/RootCA.key'
}
}