aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/services/monitoring/sensu-client.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-03-02 09:49:37 +0000
committerGerrit Code Review <review@openstack.org>2017-03-02 09:49:37 +0000
commit6c24b0a159ca0ca8f76e0dffe13430c7c9f8cb5c (patch)
tree586aefab98b0fc462f8c6c8499e0fca2cef48206 /puppet/services/monitoring/sensu-client.yaml
parent09794f09aaaa6d4ab10cb7bbb7ee1f69b63fc09d (diff)
parent7c84a9b390c469e716e5802eef078d2df3902c6a (diff)
Merge "upgrades/validation: only run validation when services exist"
Diffstat (limited to 'puppet/services/monitoring/sensu-client.yaml')
-rw-r--r--puppet/services/monitoring/sensu-client.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/puppet/services/monitoring/sensu-client.yaml b/puppet/services/monitoring/sensu-client.yaml
index c0826549..aba2b1ed 100644
--- a/puppet/services/monitoring/sensu-client.yaml
+++ b/puppet/services/monitoring/sensu-client.yaml
@@ -63,11 +63,22 @@ outputs:
step_config: |
include ::tripleo::profile::base::monitoring::sensu
upgrade_tasks:
+ - name: Check if sensu_client is deployed
+ command: systemctl is-enabled sensu-client
+ tags: common
+ ignore_errors: True
+ register: sensu_client_enabled
- name: Check status of sensu-client service
shell: >
/usr/bin/systemctl show sensu-client --property ActiveState |
grep '\bactive\b'
+ when: sensu_client_enabled.rc == 0
tags: step0,validation
- name: Stop sensu-client service
tags: step1
+ when: sensu_client_enabled.rc == 0
service: name=sensu-client state=stopped
+ - name: Install sensu package if it was disabled
+ tags: step3
+ yum: name=sensu state=latest
+ when: sensu_client.rc != 0