blob: f8d682af310ba64efdd57c69b945147311753e25 [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
Yuta HIGUCHI33ccd482014-11-12 10:27:20 -080016echo "pushing bundle: $bundle"
17
tom22288032014-10-07 08:16:53 -070018nodes=$(env | sort | egrep "OC[0-9]+" | cut -d= -f2)
19for node in $nodes; do
tome2555ff2014-10-07 18:47:58 -070020 scp -q $jar $ONOS_USER@$node:.m2/repository/$jar
tomca8f6702014-10-07 09:28:53 -070021 scp -q $jar $ONOS_USER@$node:$ONOS_INSTALL_DIR/$KARAF_DIST/system/$jar
tom1f601242014-10-13 11:10:40 -070022 ssh $ONOS_USER@$node "
23 $ONOS_INSTALL_DIR/bin/onos \"bundle:stop -f $bundle\"
24 $ONOS_INSTALL_DIR/bin/onos \"bundle:update -f $bundle\"
25 $ONOS_INSTALL_DIR/bin/onos \"bundle:start -f $bundle\"
26 " 2>/dev/null
tom22288032014-10-07 08:16:53 -070027done