blob: 700c4a4cdcc2edda71c33ebbb905db113ffd15a5 [file] [log] [blame]
Thomas Vachuska5630c612015-03-24 12:24:12 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Downloads and sets-up Apache Karaf as a basis for running ONOS locally
4# as a single-instance.
Thomas Vachuskafcd61142015-04-23 13:59:08 -07005#
6# Note that this in no way impacts the method for running ONOS remotely.
7# For that, one should use onos-package and onos-install tools.
Thomas Vachuska5630c612015-03-24 12:24:12 -07008# -----------------------------------------------------------------------------
9
10[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
11. $ONOS_ROOT/tools/build/envDefaults
12
13# TODO: consider putting this under ~/Applications/onos/apache-karaf-...
14export KARAF_ROOT=${KARAF_ROOT:-~/Applications/apache-karaf-$KARAF_VERSION}
15export STAGE=$(dirname $KARAF_ROOT)
16
17# Clean the previous Karaf directory if requested and if it exists.
18if [ "$1" = "clean" ]; then
19 shift
20 [ -d $KARAF_ROOT ] && rm -fr $KARAF_ROOT $STAGE/apps $STAGE/config
21fi
22
Thomas Vachuskafcd61142015-04-23 13:59:08 -070023IP="${1:-$ONOS_IP}"
24
25# If IP was not given, nor configured attempt to use ONOS_NIC env. variable
26if [ -z "$IP" -a -n "$ONOS_NIC" ]; then
27 IP=$(ifconfig | grep 'inet ' | cut -d\ -f2 | grep $ONOS_NIC)
28 [ -z "$IP" ] && echo "No adapter with IP matching $ONOS_NIC found!"
29else
30 # Otherwise, verify that the IP address given exists among the adapters.
31 saveIp=$IP
32 IP=$(ifconfig | grep 'inet ' | cut -d\ -f2 | grep $IP)
33 [ -z "$IP" ] && echo "No adapter with IP $saveIp found!"
34fi
35
36# If IP is still not surmised or if usage was requested, show usage and IPs.
37if [ -z "$IP" -o "$1" = "-?" -o "$1" = "-h" -o "$1" = "--help" ]; then
Thomas Vachuska5630c612015-03-24 12:24:12 -070038 echo "usage: $(basename $0) [clean] <ip-address>"
39 echo "Available IP addresses are:"
40 ifconfig | grep 'inet ' | cut -d\ -f2 | grep -v "127.0.0.1"
41 exit 1
42fi
43
Thomas Vachuska5630c612015-03-24 12:24:12 -070044SUBNET="$(echo $IP | cut -d. -f1-3)"
45
46# Bail on any errors
47set -e
48
49# Check if Apache Karaf is already installed.
50if [ ! -d $KARAF_ROOT ]; then
51 # Check if Apache Karaf bits are available and if not, fetch them.
52 if [ ! -f $KARAF_TAR ]; then
53 echo "Downloading $KARAF_TAR..."
54 curl -sL http://downloads.onosproject.org/third-party/apache-karaf-$KARAF_VERSION.tar.gz > $KARAF_TAR
55 fi
56 [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ] && \
57 echo "Apache Karaf bits $KARAF_ZIP or $KARAF_TAR not found" && exit 1
58
59 echo "Unpacking $KARAF_TAR to $STAGE..."
60 mkdir -p $STAGE
61 cd $STAGE
62 tar zxf $KARAF_TAR
63 rm -rf $KARAF_ROOT/demos
64fi
65
66if ! grep -q "/onos-features/" $KARAF_ROOT/etc/org.apache.karaf.features.cfg; then
67 # Patch the Apache Karaf distribution file to add ONOS features repository
68 echo "Adding ONOS feature repository..."
69 perl -pi.old -e "s|^(featuresRepositories=.*)|\1,mvn:org.onosproject/onos-features/$ONOS_POM_VERSION/xml/features|" \
70 $KARAF_ROOT/etc/org.apache.karaf.features.cfg
71fi
72
73if ! grep -q ",onos-api," $KARAF_ROOT/etc/org.apache.karaf.features.cfg; then
74 # Patch the Apache Karaf distribution file to load default ONOS boot features
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070075 export BOOT_FEATURES="webconsole,onos-api,onos-core,onos-cli,onos-rest,onos-gui"
Thomas Vachuska5630c612015-03-24 12:24:12 -070076 echo "Adding ONOS boot features $BOOT_FEATURES..."
77 perl -pi.old -e "s|^(featuresBoot=.*)|\1,$BOOT_FEATURES|" \
78 $KARAF_ROOT/etc/org.apache.karaf.features.cfg
79fi
80
81if [ ! -f $KARAF_ROOT/lib/onos-branding-$ONOS_POM_VERSION.jar ]; then
82 # Patch the Apache Karaf distribution with ONOS branding bundle
83 echo "Branding as ONOS..."
84 rm -f $KARAF_ROOT/lib/onos-branding-*.jar
85 cp $M2_REPO/org/onosproject/onos-branding/$ONOS_POM_VERSION/onos-branding-$ONOS_POM_VERSION.jar \
86 $KARAF_ROOT/lib
87fi
88
Thomas Vachuskac4cb1002015-03-29 10:28:26 -070089if [ ! -d $STAGE/config ]; then
Thomas Vachuska5630c612015-03-24 12:24:12 -070090 echo "Creating local cluster configs for IP $IP..."
Thomas Vachuskac4cb1002015-03-29 10:28:26 -070091 mkdir -p $STAGE/config
Thomas Vachuska5630c612015-03-24 12:24:12 -070092 cat > $STAGE/config/cluster.json <<EOF
93 { "ipPrefix": "$SUBNET.*",
94 "nodes":[ { "id": "$IP", "ip": "$IP", "tcpPort": 9876 }]}
95EOF
96
97 cat > $STAGE/config/tablets.json <<EOF
98 { "nodes": [ { "ip": "$IP", "id": "$IP", "tcpPort": 7238 }],
99 "partitions": { "p1": [ { "ip": "$IP", "id": "$IP", "tcpPort": 7238 }]}}
100EOF
101fi
102
Thomas Vachuskafcd61142015-04-23 13:59:08 -0700103echo "Setting up hazelcast.xml for subnet $SUBNET.*..."
Thomas Vachuska5630c612015-03-24 12:24:12 -0700104cp $ONOS_ROOT/tools/package/etc/hazelcast.xml $KARAF_ROOT/etc/hazelcast.xml
105perl -pi.old -e "s/192.168.56/$SUBNET/" $KARAF_ROOT/etc/hazelcast.xml
106perl -pi.old -e "s/ <name>onos</ <name>$IP</" $KARAF_ROOT/etc/hazelcast.xml
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700107
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700108echo "Staging builtin apps..."
109rm -fr $STAGE/apps
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -0700110onos-stage-apps $STAGE/apps $KARAF_ROOT/system
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700111
Thomas Vachuskafcd61142015-04-23 13:59:08 -0700112ACTIVE_APPS=${ONOS_APPS:-drivers,openflow}
113echo "Customizing apps to be auto-activated: $ACTIVE_APPS..."
114for app in ${ACTIVE_APPS//,/ }; do
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700115 touch $STAGE/apps/org.onosproject.$app/active
116done