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 | # Packages ONOS distributable into onos.tar.gz |
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 | |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 6 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| 7 | . $ONOS_ROOT/tools/build/envDefaults |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 8 | |
| 9 | # Bail on any errors |
| 10 | set -e |
| 11 | |
| 12 | rm -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 |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 16 | [ -d $ONOS_STAGE ] && echo "ONOS stage $ONOS_STAGE already exists" && exit 1 |
| 17 | |
| 18 | # Create the stage directory and warp into it |
| 19 | mkdir -p $ONOS_STAGE |
| 20 | cd $ONOS_STAGE |
| 21 | |
Thomas Vachuska | b105fd4 | 2014-10-20 09:02:27 -0700 | [diff] [blame] | 22 | # Check if Apache Karaf bits are available and if not, fetch them. |
| 23 | if [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ]; then |
| 24 | echo "Downloading $KARAF_TAR..." |
| 25 | karafURL=$(curl -s http://www.apache.org/dyn/closer.cgi/karaf/$KARAF_VERSION/apache-karaf-$KARAF_VERSION.tar.gz | |
| 26 | grep "<a href=\".*apache-karaf-$KARAF_VERSION.tar.gz\"" | |
| 27 | head -n 1 | sed 's/.*<a href="//g;s/".*//g') |
| 28 | curl -s $karafURL > $KARAF_TAR |
| 29 | fi |
| 30 | [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ] && \ |
| 31 | echo "Apache Karaf bits $KARAF_ZIP or $KARAF_TAR not found" && exit 1 |
| 32 | |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 33 | # Unroll the Apache Karaf bits, prune them and make ONOS top-level directories. |
tom | 2d7acb7 | 2014-09-22 22:13:00 -0700 | [diff] [blame] | 34 | [ -f $KARAF_ZIP ] && unzip -q $KARAF_ZIP && rm -rf $KARAF_DIST/demos |
| 35 | [ -f $KARAF_TAR ] && tar zxf $KARAF_TAR && rm -rf $KARAF_DIST/demos |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 36 | mkdir bin |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 37 | |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 38 | # Stage the ONOS admin scripts and patch in Karaf service wrapper extras |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 39 | cp -r $ONOS_ROOT/tools/package/bin . |
tom | 0eaa97f | 2014-09-22 16:13:06 -0700 | [diff] [blame] | 40 | cp -r $ONOS_ROOT/tools/package/debian $ONOS_STAGE/debian |
Thomas Vachuska | b105fd4 | 2014-10-20 09:02:27 -0700 | [diff] [blame] | 41 | cp -r $ONOS_ROOT/tools/package/etc/* $ONOS_STAGE/$KARAF_DIST/etc |
| 42 | |
| 43 | # Patch-in proper Karaf version into the startup script. |
| 44 | sed "s/\$KARAF_VERSION/$KARAF_VERSION/g" \ |
| 45 | $ONOS_ROOT/tools/package/bin/onos-service > bin/onos-service |
| 46 | sed "s/\$KARAF_VERSION/$KARAF_VERSION/g" \ |
| 47 | $ONOS_ROOT/tools/package/bin/onos > bin/onos |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 48 | |
| 49 | # Stage the ONOS bundles |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 50 | mkdir -p $KARAF_DIST/system/org/onlab |
| 51 | cp -r $M2_REPO/org/onlab $KARAF_DIST/system/org/ |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 52 | |
tom | e797a5d | 2014-09-30 11:57:50 -0700 | [diff] [blame] | 53 | export ONOS_FEATURES="${ONOS_FEATURES:-webconsole,onos-api,onos-core,onos-cli,onos-rest,onos-gui,onos-openflow,onos-app-fwd,onos-app-foo}" |
| 54 | |
tom | 7e02cda | 2014-09-18 12:05:46 -0700 | [diff] [blame] | 55 | # ONOS Patching ---------------------------------------------------------------- |
| 56 | |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 57 | # Patch the Apache Karaf distribution file to add ONOS features repository |
tom | 61e317d | 2014-10-08 11:18:02 -0700 | [diff] [blame] | 58 | perl -pi.old -e "s|^(featuresRepositories=.*)|\1,mvn:org.onlab.onos/onos-features/$ONOS_POM_VERSION/xml/features|" \ |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 59 | $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg |
| 60 | |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 61 | # Patch the Apache Karaf distribution file to load ONOS features |
tom | e797a5d | 2014-09-30 11:57:50 -0700 | [diff] [blame] | 62 | perl -pi.old -e "s|^(featuresBoot=.*)|\1,$ONOS_FEATURES|" \ |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 63 | $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg |
| 64 | |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 65 | # Patch the Apache Karaf distribution with ONOS branding bundle |
tom | 61e317d | 2014-10-08 11:18:02 -0700 | [diff] [blame] | 66 | cp $M2_REPO/org/onlab/onos/onos-branding/$ONOS_POM_VERSION/onos-branding-*.jar \ |
tom | 73d6d1e | 2014-09-17 20:08:01 -0700 | [diff] [blame] | 67 | $ONOS_STAGE/$KARAF_DIST/lib |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 68 | |
tom | 61e317d | 2014-10-08 11:18:02 -0700 | [diff] [blame] | 69 | # Patch in the ONOS version file |
| 70 | echo $ONOS_VERSION > $ONOS_STAGE/VERSION |
tom | 53efab5 | 2014-10-07 17:43:48 -0700 | [diff] [blame] | 71 | |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 72 | # Now package up the ONOS tar file |
| 73 | cd $ONOS_STAGE_ROOT |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 74 | COPYFILE_DISABLE=1 tar zcf $ONOS_TAR $ONOS_BITS |
| 75 | ls -l $ONOS_TAR >&2 |
tom | 61e317d | 2014-10-08 11:18:02 -0700 | [diff] [blame] | 76 | rm -r $ONOS_STAGE |