diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-29 15:00:54 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-29 15:00:54 -0400 |
commit | 7b42f91f8637f6c3ce49f357bea75a3e6528b1ba (patch) | |
tree | 9d2e2cc1605034debe7cf917af5e74f5838427f8 /roles/openshift_master/handlers | |
parent | 6d74968b30f3dff2046ab50330c2de55ac103a8b (diff) | |
parent | e6e5c64508ff876973cc5db768012ec836aea31e (diff) | |
download | openshift-7b42f91f8637f6c3ce49f357bea75a3e6528b1ba.tar.gz openshift-7b42f91f8637f6c3ce49f357bea75a3e6528b1ba.tar.bz2 openshift-7b42f91f8637f6c3ce49f357bea75a3e6528b1ba.tar.xz openshift-7b42f91f8637f6c3ce49f357bea75a3e6528b1ba.zip |
Merge pull request #1666 from brenton/systemd1
Reusing the systemd templates for the upgrade
Diffstat (limited to 'roles/openshift_master/handlers')
-rw-r--r-- | roles/openshift_master/handlers/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_master/handlers/main.yml b/roles/openshift_master/handlers/main.yml index e5b9e4977..70c7ef4e4 100644 --- a/roles/openshift_master/handlers/main.yml +++ b/roles/openshift_master/handlers/main.yml @@ -1,17 +1,17 @@ --- - name: restart master service: name={{ openshift.common.service_type }}-master state=restarted - when: (not openshift_master_ha | bool) and (not (master_service_status_changed | default(false) | bool)) + when: (openshift.master.ha is defined and not openshift.master.ha | bool) and (not (master_service_status_changed | default(false) | bool)) notify: Verify API Server - name: restart master api service: name={{ openshift.common.service_type }}-master-api state=restarted - when: (openshift_master_ha | bool) and (not (master_api_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native' + when: (openshift.master.ha is defined and openshift_master_ha | bool) and (not (master_api_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native' notify: Verify API Server - name: restart master controllers service: name={{ openshift.common.service_type }}-master-controllers state=restarted - when: (openshift_master_ha | bool) and (not (master_controllers_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native' + when: (openshift.master.ha is defined and openshift_master_ha | bool) and (not (master_controllers_service_status_changed | default(false) | bool)) and openshift.master.cluster_method == 'native' - name: Verify API Server # Using curl here since the uri module requires python-httplib2 and |