diff --git a/vars/debian.groovy b/vars/debian.groovy index 079a4b1..f553ca6 100644 --- a/vars/debian.groovy +++ b/vars/debian.groovy @@ -52,7 +52,7 @@ def listRepoPackages(Map params = [:]) { def type = params.type ? params.type : 'binary' def arch = params.arch ? params.arch : 'amd64' - def response = httpRequest(url: "${baseURL}/dists/${distrib}/${component}/${type}-${arch}/Packages") + def response = httpRequest(ignoreSslErrors: true, url: "${baseURL}/dists/${distrib}/${component}/${type}-${arch}/Packages") def packages = [:] def lines = response.content.split('\n')