diff options
author | rexlee8776 <limingjiang@huawei.com> | 2017-10-27 17:23:16 +0800 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2017-10-28 11:00:50 +0800 |
commit | d70cbc5c6bd03cb68a13dcab50a12178982f5c44 (patch) | |
tree | 3d18de78e76855bcee830edb93a69d08c33f2eab | |
parent | 923aa1738cbf5a8053e77e00937fc26f2142f6a3 (diff) |
tc053 kill haproxy wrong mismatch
JIRA: YARDSTICK-831
Change-Id: I587c486572f439952b8a31da664d1e2c1fb8dc27
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
-rwxr-xr-x | yardstick/benchmark/scenarios/availability/ha_tools/fault_process_kill.bash | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yardstick/benchmark/scenarios/availability/ha_tools/fault_process_kill.bash b/yardstick/benchmark/scenarios/availability/ha_tools/fault_process_kill.bash index a865b6551..eec86e133 100755 --- a/yardstick/benchmark/scenarios/availability/ha_tools/fault_process_kill.bash +++ b/yardstick/benchmark/scenarios/availability/ha_tools/fault_process_kill.bash @@ -20,6 +20,11 @@ if [ "$process_name" = "keystone" ]; then do kill -9 "${pid}" done +elif [ "$process_name" = "haproxy" ]; then + for pid in $(pgrep -f "^/usr/[^ ]*/${process_name}"); + do + kill -9 "${pid}" + done else for pid in $(pgrep -f "/usr/.*/${process_name}"); do |