aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/services/opendaylight-ovs.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-03-10 02:40:11 +0000
committerGerrit Code Review <review@openstack.org>2017-03-10 02:40:11 +0000
commit30030bf2d86d7f7e28855be1ae5f67ace4842827 (patch)
treed522c8cfb4bf2385037ca484c7b331867a083ddb /puppet/services/opendaylight-ovs.yaml
parent7a40e53f72876c0f5120b51e8d9933a68e3ea25e (diff)
parent96490958c5091f325cb0e3e69890b0a9472f4542 (diff)
Merge "Adds upgrade tasks for OpenDaylight services" into stable/ocata
Diffstat (limited to 'puppet/services/opendaylight-ovs.yaml')
-rw-r--r--puppet/services/opendaylight-ovs.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/puppet/services/opendaylight-ovs.yaml b/puppet/services/opendaylight-ovs.yaml
index cfec3c48..3db0848e 100644
--- a/puppet/services/opendaylight-ovs.yaml
+++ b/puppet/services/opendaylight-ovs.yaml
@@ -73,3 +73,17 @@ outputs:
proto: 'gre'
step_config: |
include tripleo::profile::base::neutron::plugins::ovs::opendaylight
+ upgrade_tasks:
+ - name: Check if openvswitch is deployed
+ command: systemctl is-enabled openvswitch
+ tags: common
+ ignore_errors: True
+ register: openvswitch_enabled
+ - name: "PreUpgrade step0,validation: Check service openvswitch is running"
+ shell: /usr/bin/systemctl show 'openvswitch' --property ActiveState | grep '\bactive\b'
+ when: openvswitch_enabled.rc == 0
+ tags: step0,validation
+ - name: Stop openvswitch service
+ tags: step1
+ when: openvswitch_enabled.rc == 0
+ service: name=openvswitch state=stopped