Browse Source

Fixing checkout for bindings with -binding suffix

jupierce 8 years ago
parent
commit
884e071e29

+ 1 - 1
roles/lib_openshift/library/oc_adm_policy_group.py

@@ -1948,7 +1948,7 @@ class PolicyGroup(OpenShiftCLI):
 
             return False
 
-        elif '\"%s\" not found' % self.config.config_options['name']['value'] in results['stderr']:
+        elif self.config.config_options['name']['value'] in results['stderr'] and '" not found' in results['stderr']:
             return False
 
         return results

+ 1 - 1
roles/lib_openshift/library/oc_adm_policy_user.py

@@ -1947,7 +1947,7 @@ class PolicyUser(OpenShiftCLI):
 
             return False
 
-        elif '\"%s\" not found' % self.config.config_options['name']['value'] in results['stderr']:
+        elif self.config.config_options['name']['value'] in results['stderr'] and '" not found' in results['stderr']:
             return False
 
         return results

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_policy_group.py

@@ -89,7 +89,7 @@ class PolicyGroup(OpenShiftCLI):
 
             return False
 
-        elif '\"%s\" not found' % self.config.config_options['name']['value'] in results['stderr']:
+        elif self.config.config_options['name']['value'] in results['stderr'] and '" not found' in results['stderr']:
             return False
 
         return results

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_policy_user.py

@@ -88,7 +88,7 @@ class PolicyUser(OpenShiftCLI):
 
             return False
 
-        elif '\"%s\" not found' % self.config.config_options['name']['value'] in results['stderr']:
+        elif self.config.config_options['name']['value'] in results['stderr'] and '" not found' in results['stderr']:
             return False
 
         return results