blob: 15394671e91b9d1e9123d5cdbf38dde1d39ad0a6 [file] [log] [blame]
tom22288032014-10-07 08:16:53 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom22288032014-10-07 08:16:53 -07003# Pushes the specified bundle to the remote ONOS cell machines and updates it.
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom22288032014-10-07 08:16:53 -07005
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9cd ~/.m2/repository
tom3f146402014-10-08 22:44:56 -070010jar=$(find org/onlab -type f -name '*.jar' | grep -e $1 | grep -v -e -tests | head -n 1)
tom22288032014-10-07 08:16:53 -070011
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
tome2555ff2014-10-07 18:47:58 -070018 scp -q $jar $ONOS_USER@$node:.m2/repository/$jar
tomca8f6702014-10-07 09:28:53 -070019 scp -q $jar $ONOS_USER@$node:$ONOS_INSTALL_DIR/$KARAF_DIST/system/$jar
tom1f601242014-10-13 11:10:40 -070020 ssh $ONOS_USER@$node "
21 $ONOS_INSTALL_DIR/bin/onos \"bundle:stop -f $bundle\"
22 $ONOS_INSTALL_DIR/bin/onos \"bundle:update -f $bundle\"
23 $ONOS_INSTALL_DIR/bin/onos \"bundle:start -f $bundle\"
24 " 2>/dev/null
tom22288032014-10-07 08:16:53 -070025done