blob: 406c9cb5733a18f1ecc81dc91d5fa2ac915bb330 [file] [log] [blame]
tom126852b2014-09-22 22:34:01 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
3# Logs in to the remote ONOS instance.
4#-------------------------------------------------------------------------------
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 "$@"