|
@@ -34,16 +34,17 @@
|
|
|
command: systemctl show etcd.service
|
|
|
register: etcd_show
|
|
|
changed_when: false
|
|
|
+ failed_when: false
|
|
|
|
|
|
- name: Disable system etcd when containerized
|
|
|
- when: etcd_is_containerized | bool and 'LoadState=not-found' not in etcd_show.stdout
|
|
|
+ when: etcd_is_containerized | bool and ('LoadState=not-found' not in etcd_show.stdout or etcd_show.rc != 0)
|
|
|
service:
|
|
|
name: etcd
|
|
|
state: stopped
|
|
|
enabled: no
|
|
|
|
|
|
- name: Mask system etcd when containerized
|
|
|
- when: etcd_is_containerized | bool and 'LoadState=not-found' not in etcd_show.stdout
|
|
|
+ when: etcd_is_containerized | bool and ('LoadState=not-found' not in etcd_show.stdout or etcd_show.rc != 0)
|
|
|
command: systemctl mask etcd
|
|
|
|
|
|
- name: Reload systemd units
|