tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 1 | #!/bin/bash |
Pavlin Radoslavov | 9141379 | 2014-10-15 11:00:32 -0700 | [diff] [blame] | 2 | # ----------------------------------------------------------------------------- |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 3 | # Starts ONOS Apache Karaf container |
Pavlin Radoslavov | 9141379 | 2014-10-15 11:00:32 -0700 | [diff] [blame] | 4 | # ----------------------------------------------------------------------------- |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 5 | |
Brian O'Connor | 9362d88 | 2015-03-10 11:56:35 -0700 | [diff] [blame] | 6 | # uncomment the following line for performance testing |
| 7 | #export JAVA_OPTS="${JAVA_OPTS:--Xms8G -Xmx8G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+PrintGCDetails -XX:+PrintGCTimeStamps}" |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 8 | |
JunHuy Lam | 39eb429 | 2015-06-26 17:24:23 +0900 | [diff] [blame] | 9 | # 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 Lantz | 5e4d49d | 2016-02-25 02:26:45 -0800 | [diff] [blame] | 13 | set -e # exit on error |
| 14 | set -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'Connor | a57c221 | 2016-05-06 18:04:15 -0700 | [diff] [blame] | 19 | ONOS_HOME=${ONOS_HOME:-$(cd $(dirname $0)/.. >/dev/null 2>&1 && pwd)} |
David Bainbridge | ff4fb04 | 2015-08-17 12:53:29 -0700 | [diff] [blame] | 20 | KARAF_ARGS= |
| 21 | SYS_APPS=drivers |
Bob Lantz | 5e4d49d | 2016-02-25 02:26:45 -0800 | [diff] [blame] | 22 | ONOS_APPS=${ONOS_APPS:-} # Empty means don't activate any new apps |
Jian Li | 7343bfa | 2016-01-27 15:42:05 -0800 | [diff] [blame] | 23 | |
Bob Lantz | 5e4d49d | 2016-02-25 02:26:45 -0800 | [diff] [blame] | 24 | cd $ONOS_HOME |
David Bainbridge | ff4fb04 | 2015-08-17 12:53:29 -0700 | [diff] [blame] | 25 | |
| 26 | # Parse out arguments destinted for karaf invocation v. arguments that |
| 27 | # will be processed in line |
| 28 | while [ $# -gt 0 ]; do |
| 29 | case $1 in |
| 30 | apps-clean) |
| 31 | # Deactivate all applications |
| 32 | find ${ONOS_HOME}/apps -name "active" -exec rm \{\} \; |
| 33 | ;; |
| 34 | *) |
| 35 | KARAF_ARGS+=" $1" |
| 36 | ;; |
| 37 | esac |
| 38 | shift |
| 39 | done |
| 40 | |
| 41 | # Activate the system required applications (SYS_APPS) as well as any |
| 42 | # specified applications in the var ONOS_APPS |
| 43 | for app in ${SYS_APPS//,/ } ${ONOS_APPS//,/ }; do |
| 44 | if [[ "$app" =~ \. ]]; then |
| 45 | touch ${ONOS_HOME}/apps/$app/active |
| 46 | else |
| 47 | touch ${ONOS_HOME}/apps/org.onosproject.$app/active |
| 48 | fi |
| 49 | done |
| 50 | |
Bob Lantz | 641d545 | 2016-03-04 19:39:17 -0800 | [diff] [blame] | 51 | exec ${ONOS_HOME}/apache-karaf-$KARAF_VERSION/bin/karaf $KARAF_ARGS |