blob: 7a0493d132ea1d31c7b4e1360c02337a628fd69c [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
Thomas Vachuska60fc8422015-04-23 16:18:34 -070017# Validates the specified IP regular expression against existing adapters.
18# Excludes local-loopback.
19function validateIp {
Thomas Vachuskaba082b82015-05-20 13:47:38 -070020 ifconfig | awk '{ print $2}' | grep -E -o "([0-9]{1,3}[\.]){3}[0-9]{1,3}" | grep $1
Thomas Vachuska60fc8422015-04-23 16:18:34 -070021}
22
Thomas Vachuska5630c612015-03-24 12:24:12 -070023# Clean the previous Karaf directory if requested and if it exists.
24if [ "$1" = "clean" ]; then
25 shift
Jonathan Hart2aa40682015-08-03 10:53:51 -070026 CLEAN="true"
Thomas Vachuska5630c612015-03-24 12:24:12 -070027 [ -d $KARAF_ROOT ] && rm -fr $KARAF_ROOT $STAGE/apps $STAGE/config
28fi
29
Thomas Vachuskaba082b82015-05-20 13:47:38 -070030ONOS_IP=${ONOS_IP:-127.0.0.1}
Thomas Vachuskafcd61142015-04-23 13:59:08 -070031IP="${1:-$ONOS_IP}"
32
33# If IP was not given, nor configured attempt to use ONOS_NIC env. variable
34if [ -z "$IP" -a -n "$ONOS_NIC" ]; then
Thomas Vachuska60fc8422015-04-23 16:18:34 -070035 IP=$(validateIp $ONOS_NIC)
Thomas Vachuskafcd61142015-04-23 13:59:08 -070036 [ -z "$IP" ] && echo "No adapter with IP matching $ONOS_NIC found!"
37else
38 # Otherwise, verify that the IP address given exists among the adapters.
39 saveIp=$IP
Thomas Vachuska60fc8422015-04-23 16:18:34 -070040 IP=$(validateIp $IP)
Thomas Vachuskafcd61142015-04-23 13:59:08 -070041 [ -z "$IP" ] && echo "No adapter with IP $saveIp found!"
42fi
43
44# If IP is still not surmised or if usage was requested, show usage and IPs.
45if [ -z "$IP" -o "$1" = "-?" -o "$1" = "-h" -o "$1" = "--help" ]; then
Thomas Vachuska5630c612015-03-24 12:24:12 -070046 echo "usage: $(basename $0) [clean] <ip-address>"
47 echo "Available IP addresses are:"
Thomas Vachuska60fc8422015-04-23 16:18:34 -070048 validateIp .
Thomas Vachuska5630c612015-03-24 12:24:12 -070049 exit 1
50fi
51
Thomas Vachuska5630c612015-03-24 12:24:12 -070052SUBNET="$(echo $IP | cut -d. -f1-3)"
53
54# Bail on any errors
55set -e
56
57# Check if Apache Karaf is already installed.
58if [ ! -d $KARAF_ROOT ]; then
59 # Check if Apache Karaf bits are available and if not, fetch them.
60 if [ ! -f $KARAF_TAR ]; then
61 echo "Downloading $KARAF_TAR..."
HIGUCHI Yuta9fe56ce2015-11-20 10:24:01 -080062 curl -sL http://downloads.onosproject.org/third-party/apache-karaf-$KARAF_VERSION.tar.gz --create-dirs -o $KARAF_TAR
Thomas Vachuska5630c612015-03-24 12:24:12 -070063 fi
64 [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ] && \
65 echo "Apache Karaf bits $KARAF_ZIP or $KARAF_TAR not found" && exit 1
66
67 echo "Unpacking $KARAF_TAR to $STAGE..."
68 mkdir -p $STAGE
69 cd $STAGE
70 tar zxf $KARAF_TAR
71 rm -rf $KARAF_ROOT/demos
72fi
73
74if ! grep -q "/onos-features/" $KARAF_ROOT/etc/org.apache.karaf.features.cfg; then
75 # Patch the Apache Karaf distribution file to add ONOS features repository
76 echo "Adding ONOS feature repository..."
77 perl -pi.old -e "s|^(featuresRepositories=.*)|\1,mvn:org.onosproject/onos-features/$ONOS_POM_VERSION/xml/features|" \
78 $KARAF_ROOT/etc/org.apache.karaf.features.cfg
79fi
80
81if ! grep -q ",onos-api," $KARAF_ROOT/etc/org.apache.karaf.features.cfg; then
82 # Patch the Apache Karaf distribution file to load default ONOS boot features
Thomas Vachuskabf916ea2015-05-20 18:24:34 -070083 export BOOT_FEATURES="webconsole,onos-api,onos-core,onos-incubator,onos-cli,onos-rest,onos-gui"
Thomas Vachuska5630c612015-03-24 12:24:12 -070084 echo "Adding ONOS boot features $BOOT_FEATURES..."
85 perl -pi.old -e "s|^(featuresBoot=.*)|\1,$BOOT_FEATURES|" \
86 $KARAF_ROOT/etc/org.apache.karaf.features.cfg
87fi
88
89if [ ! -f $KARAF_ROOT/lib/onos-branding-$ONOS_POM_VERSION.jar ]; then
90 # Patch the Apache Karaf distribution with ONOS branding bundle
91 echo "Branding as ONOS..."
92 rm -f $KARAF_ROOT/lib/onos-branding-*.jar
93 cp $M2_REPO/org/onosproject/onos-branding/$ONOS_POM_VERSION/onos-branding-$ONOS_POM_VERSION.jar \
94 $KARAF_ROOT/lib
95fi
96
Thomas Vachuska9b171c52015-04-28 12:01:07 -070097echo "Creating local cluster configs for IP $IP..."
98[ -d $STAGE/config ] || mkdir -p $STAGE/config
99cat > $STAGE/config/cluster.json <<EOF
Madan Jampani596f2662015-10-23 14:35:23 -0700100{
101 "name": "default",
102 "nodes": [ {"id": "$IP", "ip": "$IP", "port": 9876 } ],
103 "partitions": [ { "name": "p1", "members": [ "$IP" ] } ]
104}
Thomas Vachuska5630c612015-03-24 12:24:12 -0700105EOF
Thomas Vachuska5630c612015-03-24 12:24:12 -0700106
Jonathan Hart2aa40682015-08-03 10:53:51 -0700107if [ "$CLEAN" = "true" ]; then
108 echo "Copying package configs..."
109 cp -r $ONOS_ROOT/tools/package/etc/* $KARAF_ROOT/etc/
110 cp -r $ONOS_ROOT/tools/package/config/* $STAGE/config/
111fi
112
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700113echo "Staging builtin apps..."
114rm -fr $STAGE/apps
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -0700115onos-stage-apps $STAGE/apps $KARAF_ROOT/system
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700116
Thomas Vachuskafcd61142015-04-23 13:59:08 -0700117ACTIVE_APPS=${ONOS_APPS:-drivers,openflow}
118echo "Customizing apps to be auto-activated: $ACTIVE_APPS..."
119for app in ${ACTIVE_APPS//,/ }; do
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700120 touch $STAGE/apps/org.onosproject.$app/active
121done