Browse Source

Merge pull request #3547 from jupierce/oadm_policy_group_patch

Fixing checkout for bindings with -binding suffix
Scott Dodson 8 years ago
parent
commit
6eeceffad2

+ 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