diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-09-26 20:10:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-26 20:10:17 -0400 |
commit | 7eaf5e6316c0d0a40212d6548dc29515efa7f605 (patch) | |
tree | 9cf2517e0b41e392de5660e5efa91657086fc19a /roles/etcd/tasks/main.yml | |
parent | f7ba21be241e9a3f3354b44332611fe5095fc57f (diff) | |
parent | dae08d7023018ae8bfbec1a408e1bf20ad0e24a0 (diff) | |
download | openshift-7eaf5e6316c0d0a40212d6548dc29515efa7f605.tar.gz openshift-7eaf5e6316c0d0a40212d6548dc29515efa7f605.tar.bz2 openshift-7eaf5e6316c0d0a40212d6548dc29515efa7f605.tar.xz openshift-7eaf5e6316c0d0a40212d6548dc29515efa7f605.zip |
Merge pull request #2502 from sdodson/rhel-73-systemd
test fix for systemd changes
Diffstat (limited to 'roles/etcd/tasks/main.yml')
-rw-r--r-- | roles/etcd/tasks/main.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/roles/etcd/tasks/main.yml b/roles/etcd/tasks/main.yml index ba4136327..2bc6a8678 100644 --- a/roles/etcd/tasks/main.yml +++ b/roles/etcd/tasks/main.yml @@ -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 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 + 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 |