The secondi HA test case-shutdown controller
[yardstick.git] / yardstick / benchmark / scenarios / availability / ha_tools / check_host_ping.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 # check wether the host is running
13
14 set -e
15
16 host_ip=$1
17 shift
18 options="$@"
19
20 ping -c 1 $options $host_ip | grep ttl | wc -l
21 EXIT_CODE=$?
22
23 if [ $EXIT_CODE -ne 0 ]; then
24     exit 1
25 else
26     echo "running"
27 fi