diff options
Diffstat (limited to 'roles/etcd')
| -rw-r--r-- | roles/etcd/tasks/main.yml | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/roles/etcd/tasks/main.yml b/roles/etcd/tasks/main.yml index d6956de71..064544b03 100644 --- a/roles/etcd/tasks/main.yml +++ b/roles/etcd/tasks/main.yml @@ -36,8 +36,12 @@      state: stopped      enabled: no +- name: Check for etcd service presence +  command: systemctl show etcd.service +  register: etcd_show +    - name: Mask system etcd when containerized -  when: openshift.common.is_containerized | bool +  when: openshift.common.is_containerized | bool and 'LoadState=not-found' not in etcd_show.stdout    command: systemctl mask etcd  - name: Reload systemd units  | 
