blob: 473095c62c4104b2b3de02dc0ec31941a153d923 [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}
tom2d7acb72014-09-22 22:13:00 -07009export KARAF_TAR=${KARAF_TAR:-~/Downloads/apache-karaf-3.0.1.tar.gz}
tom5c255702014-09-18 06:57:39 -070010export KARAF_DIST=$(basename $KARAF_ZIP .zip)
11
12# ONOS Version and onos.tar.gz staging environment
13export ONOS_VERSION=${ONOS_VERSION:-1.0.0-SNAPSHOT}
14export ONOS_STAGE_ROOT=${ONOS_STAGE_ROOT:-/tmp}
15export ONOS_BITS=onos-$ONOS_VERSION
16export ONOS_STAGE=$ONOS_STAGE_ROOT/$ONOS_BITS
17export ONOS_TAR=$ONOS_STAGE.tar.gz
18
19# Defaults for ONOS testing using remote machines.
20export ONOS_INSTALL_DIR="/opt/onos" # Installation directory on remote
21export OCI="${OCI:-192.168.56.101}" # ONOS Controller Instance
22export ONOS_USER="sdn" # ONOS user on remote system
23export ONOS_PWD="rocks" # ONOS user password on remote system