blob: 6b849d81323cf20686abcb65be3b0d1af23931b9 [file] [log] [blame]
tom890a43b2014-09-30 09:08:42 -07001#!/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
9ssh $ONOS_USER@${1:-$OCI} "kill -9 \$(ps -ef | grep karaf.jar | grep -v grep | cut -c10-15)"