blob: e64ee0e0393063c7f95daa17089efbb388c8c241 [file] [log] [blame]
Thomas Vachuska5f54c6f2016-05-04 19:19:51 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Runs ONOS from distributable onos.tar.gz
4# -----------------------------------------------------------------------------
5
6ONOS_TAR=
7
8cd /tmp
9
10# Kill any running instances
11[ -f /tmp/onos.pid ] && kill -9 $(cat /tmp/onos.pid) &>/dev/null
12
13set -e
14
15# Blitz previously unrolled onos- directory
Thomas Vachuskafc3f3142016-05-04 20:10:10 -070016rm -fr onos-*/
Thomas Vachuska5f54c6f2016-05-04 19:19:51 -070017
18# Unroll new image from the specified tar file
19[ -f $ONOS_TAR ] && tar zxf $ONOS_TAR
20
21# Change into the ONOS home directory
Thomas Vachuskadcdf24d2016-06-13 12:10:25 -070022cd onos-*/
Thomas Vachuska5f54c6f2016-05-04 19:19:51 -070023export ONOS_HOME=$PWD
24
25# FIXME: for now we're running using the karaf client; later use raw SSH
26unset ONOS_USE_SSH
27
Madan Jampani590160a2016-06-14 16:49:44 -070028# Create config/cluster.json (cluster metadata)
Brian O'Connor3c247692016-06-15 13:26:54 -070029IP=${ONOS_IP:-127.0.0.1}
Madan Jampani590160a2016-06-14 16:49:44 -070030echo "Creating local cluster configs for IP $IP..."
31[ -d $ONOS_HOME/config ] || mkdir -p $ONOS_HOME/config
32cat > $ONOS_HOME/config/cluster.json <<EOF
33{
34 "name": "default",
35 "nodes": [ {"id": "$IP", "ip": "$IP", "port": 9876 } ],
36 "partitions": [ { "id": 1, "members": [ "$IP" ] } ]
37}
38EOF
39
Thomas Vachuska5f54c6f2016-05-04 19:19:51 -070040# Start ONOS as a server, but include any specified options
41./bin/onos-service server "$@" &>onos.log &
42echo "$!" > /tmp/onos.pid
43
44# Hang-on a bit and then start tailing the ONOS log output
Charles Chanf9335af2016-05-05 21:05:47 -070045RETRY_COUNT=5
46echo "Waiting for karaf.log"
47until [ $RETRY_COUNT -le 0 ]; do
48 KARAF_LOG=$(find $ONOS_HOME -type f -name karaf.log)
49 if [ $KARAF_LOG ]; then
50 tail -f $KARAF_LOG
51 return
52 fi
53 RETRY_COUNT=$[$RETRY_COUNT-1]
54 sleep 1
55done
Madan Jampani590160a2016-06-14 16:49:44 -070056echo "Fail to open karaf.log"
57