blob: 5ecb3ab39911bde52645af0037348cc02b0563e9 [file] [log] [blame]
tom4d0c6632014-09-15 23:27:01 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
Thomas Vachuska734b7492015-03-11 20:42:07 -07003# Packages ONOS distributable into onos.tar.gz and onos.zip
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom4d0c6632014-09-15 23:27:01 -07005
tom5c255702014-09-18 06:57:39 -07006[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
tom4d0c6632014-09-15 23:27:01 -07008
9# Bail on any errors
10set -e
11
12rm -fr $ONOS_STAGE # Remove this when package script is completed
13
14# Make sure we have the original apache karaf bits first
15[ ! -d $M2_REPO ] && echo "M2 repository $M2_REPO not found" && exit 1
tom4d0c6632014-09-15 23:27:01 -070016[ -d $ONOS_STAGE ] && echo "ONOS stage $ONOS_STAGE already exists" && exit 1
17
18# Create the stage directory and warp into it
19mkdir -p $ONOS_STAGE
20cd $ONOS_STAGE
21
Thomas Vachuskab105fd42014-10-20 09:02:27 -070022# Check if Apache Karaf bits are available and if not, fetch them.
23if [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ]; then
24 echo "Downloading $KARAF_TAR..."
Thomas Vachuska84ca6e72015-03-18 14:31:29 -070025 curl -sL http://downloads.onosproject.org/third-party/apache-karaf-$KARAF_VERSION.tar.gz > $KARAF_TAR
Thomas Vachuskab105fd42014-10-20 09:02:27 -070026fi
27[ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ] && \
28 echo "Apache Karaf bits $KARAF_ZIP or $KARAF_TAR not found" && exit 1
29
tom5c255702014-09-18 06:57:39 -070030# Unroll the Apache Karaf bits, prune them and make ONOS top-level directories.
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070031[ -f $KARAF_ZIP ] && unzip -q $KARAF_ZIP && rm -rf $ONOS_STAGE/$KARAF_DIST/demos
32[ -f $KARAF_TAR ] && tar zxf $KARAF_TAR && rm -rf $ONOS_STAGE/$KARAF_DIST/demos
tom4d0c6632014-09-15 23:27:01 -070033mkdir bin
tom4d0c6632014-09-15 23:27:01 -070034
tom5c255702014-09-18 06:57:39 -070035# Stage the ONOS admin scripts and patch in Karaf service wrapper extras
tom4d0c6632014-09-15 23:27:01 -070036cp -r $ONOS_ROOT/tools/package/bin .
tom0eaa97f2014-09-22 16:13:06 -070037cp -r $ONOS_ROOT/tools/package/debian $ONOS_STAGE/debian
Thomas Vachuskab105fd42014-10-20 09:02:27 -070038cp -r $ONOS_ROOT/tools/package/etc/* $ONOS_STAGE/$KARAF_DIST/etc
39
Thomas Vachuska785f5812015-03-19 01:11:00 -070040# Stage all builtin ONOS apps for factory install
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070041onos-stage-apps $ONOS_STAGE/apps $ONOS_STAGE/$KARAF_DIST/system
Thomas Vachuska785f5812015-03-19 01:11:00 -070042
43# Patch-in proper Karaf version into the startup script
Thomas Vachuskab105fd42014-10-20 09:02:27 -070044sed "s/\$KARAF_VERSION/$KARAF_VERSION/g" \
45 $ONOS_ROOT/tools/package/bin/onos-service > bin/onos-service
46sed "s/\$KARAF_VERSION/$KARAF_VERSION/g" \
47 $ONOS_ROOT/tools/package/bin/onos > bin/onos
tom4d0c6632014-09-15 23:27:01 -070048
Thomas Vachuskaebf5e542015-02-03 19:38:13 -080049# Stage the ONOS bundles, but only those that match the version
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070050mkdir -p $ONOS_STAGE/$KARAF_DIST/system/org/onosproject
Thomas Vachuskaebf5e542015-02-03 19:38:13 -080051find $M2_REPO/org/onosproject/ -type d -name $ONOS_POM_VERSION | while read line; do
52 path=${line#*/onosproject/}
53 artifact=${path%/$ONOS_POM_VERSION}
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070054 mkdir -p $ONOS_STAGE/$KARAF_DIST/system/org/onosproject/$artifact
Thomas Vachuskaebf5e542015-02-03 19:38:13 -080055 cp -r $M2_REPO/org/onosproject/$artifact/$ONOS_POM_VERSION \
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070056 $ONOS_STAGE/$KARAF_DIST/system/org/onosproject/$artifact/$ONOS_POM_VERSION
Thomas Vachuskaebf5e542015-02-03 19:38:13 -080057done
tom4d0c6632014-09-15 23:27:01 -070058
tom7e02cda2014-09-18 12:05:46 -070059# ONOS Patching ----------------------------------------------------------------
60
tom4d0c6632014-09-15 23:27:01 -070061# Patch the Apache Karaf distribution file to add ONOS features repository
Brian O'Connorabafb502014-12-02 22:26:20 -080062perl -pi.old -e "s|^(featuresRepositories=.*)|\1,mvn:org.onosproject/onos-features/$ONOS_POM_VERSION/xml/features|" \
tom4d0c6632014-09-15 23:27:01 -070063 $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg
64
Thomas Vachuska785f5812015-03-19 01:11:00 -070065# Patch the Apache Karaf distribution file to load default ONOS boot features
66export BOOT_FEATURES="webconsole,onos-api,onos-core,onos-cli,onos-rest,onos-gui"
67perl -pi.old -e "s|^(featuresBoot=.*)|\1,$BOOT_FEATURES|" \
tome4729872014-09-23 00:37:37 -070068 $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg
69
tom4d0c6632014-09-15 23:27:01 -070070# Patch the Apache Karaf distribution with ONOS branding bundle
Brian O'Connorabafb502014-12-02 22:26:20 -080071cp $M2_REPO/org/onosproject/onos-branding/$ONOS_POM_VERSION/onos-branding-*.jar \
tom73d6d1e2014-09-17 20:08:01 -070072 $ONOS_STAGE/$KARAF_DIST/lib
tom4d0c6632014-09-15 23:27:01 -070073
tom61e317d2014-10-08 11:18:02 -070074# Patch in the ONOS version file
75echo $ONOS_VERSION > $ONOS_STAGE/VERSION
tom53efab52014-10-07 17:43:48 -070076
tom4d0c6632014-09-15 23:27:01 -070077# Now package up the ONOS tar file
78cd $ONOS_STAGE_ROOT
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070079rm -f $ONOS_TAR $ONOS_ZIP
tom5c255702014-09-18 06:57:39 -070080COPYFILE_DISABLE=1 tar zcf $ONOS_TAR $ONOS_BITS
Thomas Vachuskafc7f22d2014-12-04 11:07:01 -080081which zip >/dev/null && zip -rq $ONOS_ZIP $ONOS_BITS
Thomas Vachuska84ca6e72015-03-18 14:31:29 -070082ls -l $ONOS_TAR $ONOS_ZIP 2>/dev/null
tom61e317d2014-10-08 11:18:02 -070083rm -r $ONOS_STAGE