From 29168a6927b1bd632f065a7bacd75998fb583f20 Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Tue, 9 Jul 2024 10:38:42 +0200 Subject: [PATCH] ci: refs #7643 Reprepro & debuild fixes --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b1c5278e..bc2849e1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,7 +56,6 @@ pipeline { def files = findFiles(glob: 'output/*.deb') files.each { file -> debFile = file.name } } - echo debFile withCredentials([sshUserPrivateKey( credentialsId: 'jenkins-agent', @@ -69,16 +68,15 @@ pipeline { remote.name = 'reprepro' remote.host = 'reprepro.reprepro' remote.allowAnyHosts = true - remote.logLevel = 'FINEST' } sshPut([ remote: remote, from: "output/$debFile", - into: '/var/www/html/incoming' + into: '/var/lib/reprepro/repo/incoming' ]) sshCommand([ remote: remote, - command: "sudo -u www-data reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /var/www/html/incoming/$debFile" + command: "reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /var/lib/reprepro/repo/incoming/$debFile" ]) } }