blob: e6a9ada8741aeed81b3d2065184be1a234e77b1b [file] [log] [blame]
tom22288032014-10-07 08:16:53 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
3# Pushes the specified bundle to the remote ONOS cell machines and updates it.
4#-------------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9cd ~/.m2/repository
10jar=$(find org/onlab -type f -name '*.jar' | grep $1 | grep -v -e -tests | head -n 1)
11
12[ -z "$jar" ] && echo "No bundle $1 found for" && exit 1
13
14bundle=$(echo $(basename $jar .jar) | sed 's/-[0-9].*//g')
15
16nodes=$(env | sort | egrep "OC[0-9]+" | cut -d= -f2)
17for node in $nodes; do
18 scp $jar $ONOS_USER@$node:$ONOS_INSTALL_DIR/$KARAF_DIST/system/$jar
19 ssh $ONOS_USER@$node $ONOS_INSTALL_DIR/bin/onos update $bundle
20done