summaryrefslogtreecommitdiffstats
path: root/utils/test/testapi/htmlize/finish.sh
diff options
context:
space:
mode:
authorJose Lausuch <jose.lausuch@ericsson.com>2017-01-24 09:42:38 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-01-24 09:42:38 +0000
commitaa51cedd14432be1bc9a9f6e97ca2abc077ba23f (patch)
tree1b0bf32051bd33f1a8af3be6b81a36378105f223 /utils/test/testapi/htmlize/finish.sh
parent04156d074c1d83e86e1c6d7c15dd077b17c86dab (diff)
parentc9ea476389a4a5d26840be8c96ce97c5d657ff46 (diff)
Merge "Remove start and finish builders from jenkins job"
Diffstat (limited to 'utils/test/testapi/htmlize/finish.sh')
-rw-r--r--utils/test/testapi/htmlize/finish.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/utils/test/testapi/htmlize/finish.sh b/utils/test/testapi/htmlize/finish.sh
deleted file mode 100644
index dc3aa868b..000000000
--- a/utils/test/testapi/htmlize/finish.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-
-# Stop opnfv-testapi server
-proc_number=`ps -ef | grep opnfv-testapi | grep -v grep | wc -l`
-
-if [ $proc_number -gt 0 ]; then
- procs=`ps -ef | grep opnfv-testapi | grep -v grep`
- echo "Kill opnfv-testapi server $procs"
- ps -ef | grep opnfv-testapi | grep -v grep | awk '{print $2}' | xargs kill -kill &>/dev/null
-fi