blob: 406c9cb5733a18f1ecc81dc91d5fa2ac915bb330 [file] [log] [blame]
#!/bin/bash
#-------------------------------------------------------------------------------
# Logs in to the remote ONOS instance.
#-------------------------------------------------------------------------------
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
. $ONOS_ROOT/tools/build/envDefaults
[ -n "$1" ] && OCI=$1 && shift
ssh -Y $ONOS_USER@$OCI "$@"