From 144785670b77520941d929b096f8af9cab9c0b1f Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Fri, 20 Dec 2024 15:42:26 +0100 Subject: [PATCH] stop yum publishing on web01 --- theforeman.org/pipelines/lib/release.groovy | 1 - 1 file changed, 1 deletion(-) diff --git a/theforeman.org/pipelines/lib/release.groovy b/theforeman.org/pipelines/lib/release.groovy index fc5e7e55..96fca491 100644 --- a/theforeman.org/pipelines/lib/release.groovy +++ b/theforeman.org/pipelines/lib/release.groovy @@ -4,7 +4,6 @@ void push_rpms(repo_src, repo_dest, version, distro, keep_old_files = false) { void push_rpms_direct(repo_source, repo_dest, overwrite = true, merge = false) { sshagent(['repo-sync']) { - sh "ssh yumrepo@web01.osuosl.theforeman.org ${repo_source} ${repo_dest} ${overwrite} ${merge}" sh "ssh yumrepo@repo-rpm01.osuosl.theforeman.org ${repo_source} ${repo_dest} ${overwrite} ${merge}" } }