summaryrefslogtreecommitdiffstats
path: root/roles/etcd
diff options
context:
space:
mode:
authorDevan Goodwin <dgoodwin@redhat.com>2016-05-30 14:29:50 -0300
committerDevan Goodwin <dgoodwin@redhat.com>2016-06-02 10:21:52 -0300
commit48d0a43a6f7957913607443ca622ba359b9b4db3 (patch)
treec1ee919c5a4d99ecef5bd5f75503a0ad3a203aef /roles/etcd
parent1c6787d2692a8060580b0e6ff37a26b87d08c701 (diff)
downloadopenshift-48d0a43a6f7957913607443ca622ba359b9b4db3.tar.gz
openshift-48d0a43a6f7957913607443ca622ba359b9b4db3.tar.bz2
openshift-48d0a43a6f7957913607443ca622ba359b9b4db3.tar.xz
openshift-48d0a43a6f7957913607443ca622ba359b9b4db3.zip
Fix error with stopping services that may not exist.
Causes a hard failure due to missing etcd/atomic-openshift-master services. Instead, check that the services exist before ensuring they're stopped/disabled.
Diffstat (limited to 'roles/etcd')
-rw-r--r--roles/etcd/tasks/main.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/roles/etcd/tasks/main.yml b/roles/etcd/tasks/main.yml
index a798dc973..71735dc25 100644
--- a/roles/etcd/tasks/main.yml
+++ b/roles/etcd/tasks/main.yml
@@ -28,18 +28,18 @@
state: directory
mode: 0700
+- name: Check for etcd service presence
+ command: systemctl show etcd.service
+ register: etcd_show
+ changed_when: false
+
- name: Disable system etcd when containerized
- when: etcd_is_containerized | bool
+ when: etcd_is_containerized | bool and 'LoadState=not-found' not in etcd_show.stdout
service:
name: etcd
state: stopped
enabled: no
-- name: Check for etcd service presence
- command: systemctl show etcd.service
- register: etcd_show
- changed_when: false
-
- name: Mask system etcd when containerized
when: etcd_is_containerized | bool and 'LoadState=not-found' not in etcd_show.stdout
command: systemctl mask etcd