blob: 4eb72c0891bc9b33d0242e14c545913acb806e39 [file] [log] [blame]
Brian O'Connor9e1352f2016-04-29 17:13:33 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Packages ONOS distributable into onos.tar.gz, onos.zip or a deb file
4# -----------------------------------------------------------------------------
5
6set -e
7
8OUT=$1
9KARAF_TAR=$2
10ONOS_VERSION=$3
11BRANDING=$4
Brian O'Connor92ec2132016-05-03 17:30:25 -070012#FIXME karaf version
13KARAF_VERSION="3.0.5"
14
Brian O'Connor35007342016-09-13 17:41:16 -070015PREFIX="onos-$ONOS_VERSION"
Brian O'Connor9e1352f2016-04-29 17:13:33 -070016
17# Unroll the Apache Karaf bits, prune them and make ONOS top-level directories.
18tar xf $KARAF_TAR
19
20# Unroll the Apache Karaf bits, prune them and make ONOS top-level directories.
21KARAF_DIR=$(ls -d apache*)
22rm -rf $KARAF_DIR/demos
23
24# Patch the log-file size in place to increase it to 10 MB
25perl -pi.old -e "s/maxFileSize=1MB/maxFileSize=10MB/g" \
26 $KARAF_DIR/etc/org.ops4j.pax.logging.cfg
27
28# Patch-in proper Karaf version into the startup script
Brian O'Connor9a17c1a2016-05-05 16:37:21 -070029sed -i.bk "s/apache-karaf-\$KARAF_VERSION/$KARAF_DIR/g" bin/onos-service
30sed -i.bk "s/apache-karaf-\$KARAF_VERSION/$KARAF_DIR/g" bin/onos-client
Brian O'Connora5704f32016-05-05 17:00:44 -070031rm -f bin/*.bk
Brian O'Connor9e1352f2016-04-29 17:13:33 -070032mv bin/onos-client bin/onos
33chmod a+x bin/onos-service bin/onos
34
Brian O'Connor92ec2132016-05-03 17:30:25 -070035export BOOT_FEATURES="standard,ssh,scr,war,webconsole,onos-api,onos-core,onos-incubator,onos-cli,onos-rest,onos-gui"
Brian O'Connor9e1352f2016-04-29 17:13:33 -070036#FIXME
37#[ "$ONOS_SECURITY_MODE" = true ] && enable_security_mode
38
39# Patch the Apache Karaf distribution file to add ONOS features repository
Brian O'Connor92ec2132016-05-03 17:30:25 -070040perl -pi.old -e "s|^(featuresRepositories=).*|\1mvn:org.apache.karaf.features/standard/$KARAF_VERSION/xml/features,mvn:org.onosproject/onos-features/$ONOS_VERSION/xml/features|" \
Brian O'Connor9e1352f2016-04-29 17:13:33 -070041 $KARAF_DIR/etc/org.apache.karaf.features.cfg
42
43# Patch the Apache Karaf distribution file to load default ONOS boot features
Brian O'Connor92ec2132016-05-03 17:30:25 -070044perl -pi.old -e "s|^(featuresBoot=).*|\1$BOOT_FEATURES|" \
Brian O'Connor9e1352f2016-04-29 17:13:33 -070045 $KARAF_DIR/etc/org.apache.karaf.features.cfg
46
Brian O'Connor92ec2132016-05-03 17:30:25 -070047
Brian O'Connor9e1352f2016-04-29 17:13:33 -070048# Patch the Apache Karaf distribution with ONOS branding bundle
49cp $BRANDING $KARAF_DIR/lib
50
Brian O'Connor92ec2132016-05-03 17:30:25 -070051# **** Moving karaf to subdirectory ****
52mkdir $PREFIX
53mv $KARAF_DIR $PREFIX
54
55# Stage the ONOS admin scripts and patch in Karaf service wrapper extras
56cp -r bin $PREFIX
57cp -r init $PREFIX
Thomas Vachuska5f54c6f2016-05-04 19:19:51 -070058cp -r etc/* $PREFIX/$KARAF_DIR/etc/
Brian O'Connor92ec2132016-05-03 17:30:25 -070059
Brian O'Connor65c0bdf2016-05-03 18:40:17 -070060zip -q -0 -r $OUT $PREFIX
Brian O'Connor9e1352f2016-04-29 17:13:33 -070061
62#FIXME
63# Stage all builtin ONOS apps for factory install
64#onos-stage-apps $ONOS_STAGE/apps $ONOS_STAGE/$KARAF_DIST/system
65# Mark the org.onosproject.drivers app active by default
66#touch $ONOS_STAGE/apps/org.onosproject.drivers/active
67
68# copy in features and repos
69# Patch in the ONOS version file
70#echo $ONOS_VERSION > $ONOS_STAGE/VERSION
71
72
73#function enable_security_mode() {
74# echo "Enabling security mode ONOS..."
75#
76# # SM-ONOS step 1: downgrade felix config admin
77# FELIX_CFG_ADMIN=${FELIX_CFG_ADMIN:-~/Downloads/org.apache.felix.configadmin-1.6.0.jar}
78# if [ ! -f $FELIX_CFG_ADMIN ]; then
79# echo "Downloading $FELIX_CFG_ADMIN..."
80# curl -sL http://archive.apache.org/dist/felix/org.apache.felix.configadmin-1.6.0.jar > $FELIX_CFG_ADMIN
81# fi
82# [ ! -f $FELIX_CFG_ADMIN ] && \
83# echo "Felix config admin not found: $FELIX_CFG_ADMIN" && exit 1
84#
85# mkdir -p $ONOS_STAGE/$KARAF_DIST/system/org/apache/felix/org.apache.felix.configadmin/1.6.0
86# cp $FELIX_CFG_ADMIN $ONOS_STAGE/$KARAF_DIST/system/org/apache/felix/org.apache.felix.configadmin/1.6.0
87# perl -pi.old -e "s|org.apache.felix.configadmin/1.8.0|org.apache.felix.configadmin/1.6.0|g" \
88# $ONOS_STAGE/$KARAF_DIST/etc/startup.properties
89#
90# # SM-ONOS step 2: stage ONOS Felix framework security (this is already done by karaf assembly); end
91#
92# # SM-ONOS step 3.1: configure karaf
93# perl -pi.old -e "s|#java.security.policy|java.security.policy|" \
94# $ONOS_STAGE/$KARAF_DIST/etc/system.properties
95# perl -pi.old -e "s|#org.osgi.framework.security|org.osgi.framework.security|" \
96# $ONOS_STAGE/$KARAF_DIST/etc/system.properties
97#
98# # SM-ONOS step 3.2: update featuresBoot
99# export BOOT_FEATURES="onos-security,$BOOT_FEATURES"
100#}
101