Browse Source

Fix generated content

Scott Dodson 7 years ago
parent
commit
08464f4fe7
1 changed files with 4 additions and 5 deletions
  1. 4 5
      roles/lib_openshift/library/oc_adm_csr.py

+ 4 - 5
roles/lib_openshift/library/oc_adm_csr.py

@@ -1266,13 +1266,12 @@ class Utils(object):  # pragma: no cover
     @staticmethod
     def openshift_installed():
         ''' check if openshift is installed '''
-        import yum
+        import rpm
 
-        yum_base = yum.YumBase()
-        if yum_base.rpmdb.searchNevra(name='atomic-openshift'):
-            return True
+        transaction_set = rpm.TransactionSet()
+        rpmquery = transaction_set.dbMatch("name", "atomic-openshift")
 
-        return False
+        return rpmquery.count() > 0
 
     # Disabling too-many-branches.  This is a yaml dictionary comparison function
     # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements