tom | 890a43b | 2014-09-30 09:08:42 -0700 | [diff] [blame] | 1 | #!/bin/bash |
2 | #------------------------------------------------------------------------------- | ||||
3 | # Remotely kills the ONOS service on the specified node. | ||||
4 | #------------------------------------------------------------------------------- | ||||
5 | |||||
6 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 | ||||
7 | . $ONOS_ROOT/tools/build/envDefaults | ||||
8 | |||||
9 | ssh $ONOS_USER@${1:-$OCI} "kill -9 \$(ps -ef | grep karaf.jar | grep -v grep | cut -c10-15)" |