From: Dimitri Savineau Date: Fri, 17 Jul 2020 17:38:14 +0000 (-0400) Subject: cephadm: remove ktdreyer's copr repository X-Git-Tag: wip-pdonnell-testing-20200918.022351~610^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4cf99eb68e5c5e7e2423905dd83684b03e80b99b;p=ceph-ci.git cephadm: remove ktdreyer's copr repository This was needed as a temporary solution until all missing EL8 packages are built on EPEL 8. Because we now have all dependencies on EPEL 8 then we can remove that repository. Signed-off-by: Dimitri Savineau --- diff --git a/src/cephadm/cephadm b/src/cephadm/cephadm index c74f87b4d21..202341648c8 100755 --- a/src/cephadm/cephadm +++ b/src/cephadm/cephadm @@ -4374,17 +4374,10 @@ class YumDnf(Packager): if self.distro_code.startswith('el'): logger.info('Enabling EPEL...') call_throws([self.tool, 'install', '-y', 'epel-release']) - if self.distro_code == 'el8': - # we also need Ken's copr repo, at least for now - logger.info('Enabling supplementary copr repo ktdreyer/ceph-el8...') - call_throws(['dnf', 'copr', 'enable', '-y', 'ktdreyer/ceph-el8']) def rm_repo(self): if os.path.exists(self.repo_path()): os.unlink(self.repo_path()) - if self.distro_code == 'el8': - logger.info('Disabling supplementary copr repo ktdreyer/ceph-el8...') - call_throws(['dnf', 'copr', 'disable', '-y', 'ktdreyer/ceph-el8']) def install(self, ls): logger.info('Installing packages %s...' % ls)