add yardstick iruya 9.0.0 release notes
[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 if [ -f /usr/bin/yum -a "$service_name" != "keystone" -a "$service_name" != "neutron-server" -a "$service_name" != "haproxy" -a "$service_name" != "openvswitch" ]; then
20     service_name="openstack-"${service_name}
21 elif [ -f /usr/bin/apt -a "$service_name" = "keystone" ]; then
22     service_name="apache2"
23 elif [ "$service_name" = "keystone" ]; then
24     service_name="httpd"
25 fi
26
27 if which systemctl 2>/dev/null; then
28     systemctl $operation $service_name
29 else
30     service $service_name $operation
31 fi