]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Removed dbench installation workaround for redhat downstream runs 1547/head
authorsunilkumarn417 <sunnagar@redhat.com>
Tue, 11 Aug 2020 15:11:04 +0000 (20:41 +0530)
committersunilkumarn417 <sunnagar@redhat.com>
Tue, 11 Aug 2020 15:11:04 +0000 (20:41 +0530)
Signed-off-by: sunilkumarn417 <sunnagar@redhat.com>
teuthology/task/internal/redhat.py

index 34af8659fbfbcce622ad3eb9f61148e161df9d88..c43c9e6c6cc946011371eeb310df6b824caa6599 100644 (file)
@@ -119,9 +119,6 @@ def _enable_rhel_repos(remote):
         remote.run(args=['sudo', 'subscription-manager',
                          'repos', '--enable={r}'.format(r=repo)])
 
-    if remote.os.version.startswith('8'):
-        workaround(remote)
-
 
 @contextlib.contextmanager
 def setup_base_repo(ctx, config):
@@ -234,12 +231,3 @@ def _create_temp_repo_file(repos, repo_file):
         repo_file.write(gpgcheck)
         repo_file.write(enabled)
     repo_file.close()
-
-
-def workaround(remote):
-    log.info('temporary workaround')
-    remote.run(args=['sudo',
-                     'yum',
-                     'install', '-y',
-                     'http://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/d/dbench-4.0-10.el7.x86_64.rpm'])
-