From 4cf99eb68e5c5e7e2423905dd83684b03e80b99b Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Fri, 17 Jul 2020 13:38:14 -0400 Subject: [PATCH] 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 --- src/cephadm/cephadm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/cephadm/cephadm b/src/cephadm/cephadm index c74f87b4d214f..202341648c8ae 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) -- 2.47.3