blob: 2f00ca02bb16f49c46aeb39afee56d62b41b520d [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
Thomas Vachuska045c01d2014-12-04 00:18:06 -080013ONOS_HOME=/opt/onos
David Bainbridgeff4fb042015-08-17 12:53:29 -070014KARAF_ARGS=
15SYS_APPS=drivers
Thomas Vachuska045c01d2014-12-04 00:18:06 -080016
17[ -d $ONOS_HOME ] && cd $ONOS_HOME || ONOS_HOME=$(dirname $0)/..
David Bainbridgeff4fb042015-08-17 12:53:29 -070018
19# Parse out arguments destinted for karaf invocation v. arguments that
20# will be processed in line
21while [ $# -gt 0 ]; do
22 case $1 in
23 apps-clean)
24 # Deactivate all applications
25 find ${ONOS_HOME}/apps -name "active" -exec rm \{\} \;
26 ;;
27 *)
28 KARAF_ARGS+=" $1"
29 ;;
30 esac
31 shift
32done
33
34# Activate the system required applications (SYS_APPS) as well as any
35# specified applications in the var ONOS_APPS
36for app in ${SYS_APPS//,/ } ${ONOS_APPS//,/ }; do
37 if [[ "$app" =~ \. ]]; then
38 touch ${ONOS_HOME}/apps/$app/active
39 else
40 touch ${ONOS_HOME}/apps/org.onosproject.$app/active
41 fi
42done
43
44exec ${ONOS_HOME}/apache-karaf-$KARAF_VERSION/bin/karaf $KARAF_ARGS