diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2016-09-26 17:17:09 -0400 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2016-09-26 17:17:09 -0400 |
commit | 15959829b9437bb6f695407b6aeb37bce1b4b791 (patch) | |
tree | 3057b6eb420c4169b98f9555991691eac24313db /roles/openshift_master/tasks | |
parent | 09f70e880917354e22b0ca394339e0c1cb9ebe96 (diff) | |
download | openshift-15959829b9437bb6f695407b6aeb37bce1b4b791.tar.gz openshift-15959829b9437bb6f695407b6aeb37bce1b4b791.tar.bz2 openshift-15959829b9437bb6f695407b6aeb37bce1b4b791.tar.xz openshift-15959829b9437bb6f695407b6aeb37bce1b4b791.zip |
tweak logic
Diffstat (limited to 'roles/openshift_master/tasks')
-rw-r--r-- | roles/openshift_master/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml index 5419d3319..ce2f96723 100644 --- a/roles/openshift_master/tasks/main.yml +++ b/roles/openshift_master/tasks/main.yml @@ -185,7 +185,7 @@ name: "{{ openshift.common.service_type }}-master" enabled: no state: stopped - when: openshift_master_ha | bool and ( 'LoadState=not-found' not in master_svc_show.stdout or master_svc_show.rc != 0 ) + when: openshift_master_ha | bool and master_svc_show.rc == 0 and 'LoadState=not-found' not in master_svc_show.stdout - set_fact: master_service_status_changed: "{{ start_result | changed }}" |