]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
ceph_ansible: Remove unnecessary package install/removal 1434/head
authorBrad Hubbard <bhubbard@redhat.com>
Tue, 17 Mar 2020 05:01:52 +0000 (15:01 +1000)
committerBrad Hubbard <bhubbard@redhat.com>
Sun, 29 Mar 2020 22:33:59 +0000 (08:33 +1000)
Signed-off-by: Brad Hubbard <bhubbard@redhat.com>
teuthology/task/ceph_ansible.py

index ef936d6022e42ff63551d0a9c9f0b29d6206babc..9759b48b52f2fc30ac111bc7bde27f4520fce1e3 100644 (file)
@@ -248,18 +248,6 @@ class CephAnsible(Task):
                         'libffi-dev',
                         'python-dev'
                     ])
-            else:
-                # cleanup rpm packages the task installed
-                installer_node.run(args=[
-                    'sudo',
-                    'yum',
-                    'remove',
-                    '-y',
-                    'libffi-devel',
-                    'python-devel',
-                    'openssl-devel',
-                    'libselinux-python'
-                ])
 
     def collect_logs(self):
         ctx = self.ctx
@@ -363,26 +351,7 @@ class CephAnsible(Task):
         # setup ansible on first mon node
         ceph_installer = self.ceph_installer
         args = self.args
-        if ceph_installer.os.package_type == 'rpm':
-            # handle selinux init issues during purge-cluster
-            # https://bugzilla.redhat.com/show_bug.cgi?id=1364703
-            ceph_installer.run(
-                args=[
-                    'sudo', 'yum', 'remove', '-y', 'libselinux-python'
-                ]
-            )
-            # install crypto/selinux packages for ansible
-            ceph_installer.run(args=[
-                'sudo',
-                'yum',
-                'install',
-                '-y',
-                'libffi-devel',
-                'python-devel',
-                'openssl-devel',
-                'libselinux-python'
-            ])
-        else:
+        if ceph_installer.os.package_type == 'deb':
             # update ansible from ppa
             ceph_installer.run(args=[
                 'sudo',