1d0fffd062ba7a830266da9a02db7232ccda4afb
[yardstick.git] / yardstick / benchmark / scenarios / availability / ha_tools / start_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 # Start or restart a service and check the service is started
13
14 set -e
15
16 service_name=$1
17 operation=${2-start} # values are "start" or "restart"
18
19 Distributor=$(lsb_release -a | grep "Distributor ID" | awk '{print $3}')
20
21 if [ "$Distributor" != "Ubuntu" -a "$service_name" != "keystone" -a "$service_name" != "neutron-server" -a "$service_name" != "haproxy" ]; then
22     service_name="openstack-"${service_name}
23 elif [ "$Distributor" = "Ubuntu" -a "$service_name" = "keystone" ]; then
24     service_name="apache2"
25 elif [ "$service_name" = "keystone" ]; then
26     service_name="httpd"
27 fi
28
29 if which systemctl 2>/dev/null; then
30     systemctl $operation $service_name
31 else
32     service $service_name $operation
33 fi