summaryrefslogtreecommitdiffstats
path: root/roles/etcd
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2016-09-26 17:17:09 -0400
committerJason DeTiberus <jdetiber@redhat.com>2016-09-26 17:17:09 -0400
commit15959829b9437bb6f695407b6aeb37bce1b4b791 (patch)
tree3057b6eb420c4169b98f9555991691eac24313db /roles/etcd
parent09f70e880917354e22b0ca394339e0c1cb9ebe96 (diff)
downloadopenshift-15959829b9437bb6f695407b6aeb37bce1b4b791.tar.gz
openshift-15959829b9437bb6f695407b6aeb37bce1b4b791.tar.bz2
openshift-15959829b9437bb6f695407b6aeb37bce1b4b791.tar.xz
openshift-15959829b9437bb6f695407b6aeb37bce1b4b791.zip
tweak logic
Diffstat (limited to 'roles/etcd')
-rw-r--r--roles/etcd/tasks/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/etcd/tasks/main.yml b/roles/etcd/tasks/main.yml
index baa197126..2bc6a8678 100644
--- a/roles/etcd/tasks/main.yml
+++ b/roles/etcd/tasks/main.yml
@@ -37,14 +37,14 @@
failed_when: false
- name: Disable system etcd when containerized
- when: etcd_is_containerized | bool and ('LoadState=not-found' not in etcd_show.stdout or etcd_show.rc != 0)
+ when: etcd_is_containerized | bool and etcd_show.rc == 0 and 'LoadState=not-found' not in etcd_show.stdout
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 or etcd_show.rc != 0)
+ when: etcd_is_containerized | bool and etcd_show.rc == 0 and 'LoadState=not-found' not in etcd_show.stdout
command: systemctl mask etcd
- name: Reload systemd units