]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
cephadm: remove ktdreyer's copr repository
authorDimitri Savineau <dsavinea@redhat.com>
Fri, 17 Jul 2020 17:38:14 +0000 (13:38 -0400)
committerDimitri Savineau <dsavinea@redhat.com>
Fri, 17 Jul 2020 17:38:14 +0000 (13:38 -0400)
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 <dsavinea@redhat.com>
src/cephadm/cephadm

index c74f87b4d214f6dcbaccbb47fdc4441e952b3f3f..202341648c8ae5711bc58c9834fe24a6ecb80f49 100755 (executable)
@@ -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)