blob: 9ed86bd4f600b0e6220d26d265a332c96b539f26 [file] [log] [blame]
tom4d0c6632014-09-15 23:27:01 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom4d0c6632014-09-15 23:27:01 -07003# Starts ONOS Apache Karaf container
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom4d0c6632014-09-15 23:27:01 -07005
Brian O'Connor9362d882015-03-10 11:56:35 -07006# uncomment the following line for performance testing
7#export JAVA_OPTS="${JAVA_OPTS:--Xms8G -Xmx8G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+PrintGCDetails -XX:+PrintGCTimeStamps}"
tom5c255702014-09-18 06:57:39 -07008
JunHuy Lam39eb4292015-06-26 17:24:23 +09009# uncomment the following line for Netty TLS encryption
10# Do modify the keystore location/password and truststore location/password accordingly
11#export JAVA_OPTS="${JAVA_OPTS:--DenableNettyTLS=true -Djavax.net.ssl.keyStore=/home/ubuntu/onos.jks -Djavax.net.ssl.keyStorePassword=222222 -Djavax.net.ssl.trustStore=/home/ubuntu/onos.jks -Djavax.net.ssl.trustStorePassword=222222}"
12
Bob Lantz5e4d49d2016-02-25 02:26:45 -080013set -e # exit on error
14set -u # exit on undefined variable
15
16# If ONOS_HOME is set, respect its value.
17# If ONOS_HOME is not set (e.g. in the init or service environment),
18# set it based on this script's path.
Brian O'Connora57c2212016-05-06 18:04:15 -070019ONOS_HOME=${ONOS_HOME:-$(cd $(dirname $0)/.. >/dev/null 2>&1 && pwd)}
David Bainbridgeff4fb042015-08-17 12:53:29 -070020KARAF_ARGS=
21SYS_APPS=drivers
Bob Lantz5e4d49d2016-02-25 02:26:45 -080022ONOS_APPS=${ONOS_APPS:-} # Empty means don't activate any new apps
Jian Li7343bfa2016-01-27 15:42:05 -080023
Carmelo Cascone8ffe33b2018-02-01 17:37:22 -080024# MWC-2018
Carmelo Cascone2237df12018-02-24 15:19:56 +010025ONOS_APPS="drivers.barefoot-pro,drivers.cavium-pro,drivers.mellanox-pro,pipelines.fabric-pro,netcfghostprovider,hostprovider,lldpprovider,proxyarp,route-service,segmentrouting,org.onosproject.fpcagent"
Carmelo Cascone8ffe33b2018-02-01 17:37:22 -080026
Bob Lantz5e4d49d2016-02-25 02:26:45 -080027cd $ONOS_HOME
David Bainbridgeff4fb042015-08-17 12:53:29 -070028
29# Parse out arguments destinted for karaf invocation v. arguments that
30# will be processed in line
31while [ $# -gt 0 ]; do
32 case $1 in
33 apps-clean)
34 # Deactivate all applications
35 find ${ONOS_HOME}/apps -name "active" -exec rm \{\} \;
36 ;;
37 *)
38 KARAF_ARGS+=" $1"
39 ;;
40 esac
41 shift
42done
43
44# Activate the system required applications (SYS_APPS) as well as any
45# specified applications in the var ONOS_APPS
46for app in ${SYS_APPS//,/ } ${ONOS_APPS//,/ }; do
Marc De Leenheerf8e02832017-01-17 15:33:11 -080047 if [ -d "${ONOS_HOME}/apps/org.onosproject.$app/" ]; then
48 touch ${ONOS_HOME}/apps/org.onosproject.$app/active
49 elif [ -d "${ONOS_HOME}/apps/$app" ]; then
50 touch ${ONOS_HOME}/apps/$app/active
51 else
52 echo "[WARN] Don't know how to activate $app"
53 fi
David Bainbridgeff4fb042015-08-17 12:53:29 -070054done
55
Bob Lantz641d5452016-03-04 19:39:17 -080056exec ${ONOS_HOME}/apache-karaf-$KARAF_VERSION/bin/karaf $KARAF_ARGS