tc046 kill keystone process condition incorrect - dovetail
[yardstick.git] / yardstick / benchmark / scenarios / availability / ha_tools / fault_process_kill.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 process by process name
13
14 set -e
15
16 process_name=$1
17
18 if [ "$process_name" = "keystone" ]; then
19     for pid in $(ps aux | grep "keystone" | grep -iv monitor | grep -v grep | grep -v /bin/sh | awk '{print $2}'); \
20         do
21             kill -9 "${pid}"
22         done
23 elif [ "$process_name" = "haproxy" ]; then
24     for pid in $(pgrep -f "^/usr/[^ ]*/${process_name}");
25         do
26             kill -9 "${pid}"
27         done
28 else
29     for pid in $(pgrep -fa [^-_a-zA-Z0-9]${process_name} | awk '{print $1}');
30         do
31             kill -9 "${pid}"
32         done
33 fi