blob: eb6b88e93f347f06035f0296fa14f049c153961d [file] [log] [blame]
tom126852b2014-09-22 22:34:01 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom1a2908c2014-09-23 16:37:39 -07003# Logs in to the remote ONOS node.
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom126852b2014-09-22 22:34:01 -07005
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
Thomas Vachuska12bf4452015-06-26 09:15:38 -07008. $ONOS_ROOT/tools/test/bin/find-node.sh
tom126852b2014-09-22 22:34:01 -07009
Thomas Vachuska12bf4452015-06-26 09:15:38 -070010[ -n "$1" ] && OCI=$(find_node $1) && shift
tom126852b2014-09-22 22:34:01 -070011ssh -Y $ONOS_USER@$OCI "$@"