blob: 71d4cf40ffb59330084729db2a9ba112432e43ed [file] [log] [blame]
tom5c255702014-09-18 06:57:39 -07001# Environmental defaults for ONOS build, package and test
2
3# Root of the ONOS source tree
4export ONOS_ROOT=${ONOS_ROOT:-~/onos-next}
5
6# M2 repository and Karaf gold bits
7export M2_REPO=${M2_REPO:-~/.m2/repository}
8export KARAF_ZIP=${KARAF_ZIP:-~/Downloads/apache-karaf-3.0.1.zip}
9export KARAF_DIST=$(basename $KARAF_ZIP .zip)
10
11# ONOS Version and onos.tar.gz staging environment
12export ONOS_VERSION=${ONOS_VERSION:-1.0.0-SNAPSHOT}
13export ONOS_STAGE_ROOT=${ONOS_STAGE_ROOT:-/tmp}
14export ONOS_BITS=onos-$ONOS_VERSION
15export ONOS_STAGE=$ONOS_STAGE_ROOT/$ONOS_BITS
16export ONOS_TAR=$ONOS_STAGE.tar.gz
17
18# Defaults for ONOS testing using remote machines.
19export ONOS_INSTALL_DIR="/opt/onos" # Installation directory on remote
20export OCI="${OCI:-192.168.56.101}" # ONOS Controller Instance
21export ONOS_USER="sdn" # ONOS user on remote system
22export ONOS_PWD="rocks" # ONOS user password on remote system