From 922471630508ca190e7fd0530c7e67c8f49a6530 Mon Sep 17 00:00:00 2001 From: "chenshuai@huawei.com" Date: Sun, 31 Jul 2016 12:41:55 -0400 Subject: add workround for swift JIRA: COMPASS-450 Change-Id: I29603422e47d9dc99936ac3fd971832206b3615a Signed-off-by: chenshuai@huawei.com --- .../roles/neutron-compute/handlers/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 deploy/adapters/ansible/openstack_mitaka_xenial/roles/neutron-compute/handlers/main.yml (limited to 'deploy/adapters/ansible/openstack_mitaka_xenial/roles/neutron-compute/handlers/main.yml') diff --git a/deploy/adapters/ansible/openstack_mitaka_xenial/roles/neutron-compute/handlers/main.yml b/deploy/adapters/ansible/openstack_mitaka_xenial/roles/neutron-compute/handlers/main.yml new file mode 100644 index 00000000..ca4e8088 --- /dev/null +++ b/deploy/adapters/ansible/openstack_mitaka_xenial/roles/neutron-compute/handlers/main.yml @@ -0,0 +1,15 @@ +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +--- +- name: restart neutron compute service + service: name={{ item }} state=restarted enabled=yes + with_items: services | union(services_noarch) + +- name: restart nova-compute services + service: name=nova-compute state=restarted enabled=yes -- cgit 1.2.3-korg