aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/bin/onos-log-kill
blob: c18d9231f26b35b553047536c80b40491be0f9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# -----------------------------------------------------------------------------
# Kills all remote ONOS log file monitors on the specified node.
# -----------------------------------------------------------------------------

[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
. $ONOS_ROOT/tools/build/envDefaults
. $ONOS_ROOT/tools/test/bin/find-node.sh

less=0
[ "$1" = "-l" ] && shift && less=1

remote=$(find_node $1)
remote=$ONOS_USER@${remote:-$OCI}

ssh $remote "ps -ef | grep \"tail -n 512\" | grep -v grep | cut -c10-15 | xargs kill"