Add intermediate variables for attacker,monitor,result_checker
[yardstick.git] / yardstick / benchmark / scenarios / availability / ha_tools / stop_service.bash
1 #!/bin/bash
2
3 ##############################################################################
4 # Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 # Stop a service and check the service is stoped
13
14 set -e
15
16 service_name=$1
17
18 Distributor=$(lsb_release -a | grep "Distributor ID" | awk '{print $3}')
19
20 if [ "$Distributor" != "Ubuntu" -a "$service_name" != "keystone" -a "$service_name" != "neutron-server" -a "$service_name" != "haproxy" ]; then
21     service_name="openstack-"${service_name}
22 elif [ "$Distributor" = "Ubuntu" -a "$service_name" = "keystone" ]; then
23     service_name="apache2"
24 elif [ "$service_name" = "keystone" ]; then
25     service_name="httpd"
26 fi
27
28 if which systemctl 2>/dev/null; then
29     systemctl stop $service_name
30 else
31     service $service_name stop
32 fi
33
34
35 # TODO
36 # check the service status