blob: 19091ec95038170e678acd4888a4740349178654 [file] [log] [blame]
tom82d6bde2014-09-23 17:33:58 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
3# Checks the logs of the remote ONOS instance and makes sure they are clean.
4#-------------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9remote=$ONOS_USER@${1:-$OCI}
10
11LOG=$ONOS_INSTALL_DIR/log/karaf.log
12
13ssh $remote "egrep 'ERROR|Exception' $LOG"