blob: f475f25c2bcdd95f3597e4bd375f3e0cb2cc813e [file] [log] [blame]
tom126852b2014-09-22 22:34:01 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
tom1a2908c2014-09-23 16:37:39 -07003# Logs in to the remote ONOS node.
tom126852b2014-09-22 22:34:01 -07004#-------------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9[ -n "$1" ] && OCI=$1 && shift
10ssh -Y $ONOS_USER@$OCI "$@"