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 | # ----------------------------------------------------------------------------- |
Thomas Vachuska | 734b749 | 2015-03-11 20:42:07 -0700 | [diff] [blame] | 3 | # Packages ONOS distributable into onos.tar.gz and onos.zip |
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..." |
Thomas Vachuska | 84ca6e7 | 2015-03-18 14:31:29 -0700 | [diff] [blame] | 25 | curl -sL http://downloads.onosproject.org/third-party/apache-karaf-$KARAF_VERSION.tar.gz > $KARAF_TAR |
Thomas Vachuska | b105fd4 | 2014-10-20 09:02:27 -0700 | [diff] [blame] | 26 | fi |
| 27 | [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ] && \ |
| 28 | echo "Apache Karaf bits $KARAF_ZIP or $KARAF_TAR not found" && exit 1 |
| 29 | |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 30 | # Unroll the Apache Karaf bits, prune them and make ONOS top-level directories. |
tom | 2d7acb7 | 2014-09-22 22:13:00 -0700 | [diff] [blame] | 31 | [ -f $KARAF_ZIP ] && unzip -q $KARAF_ZIP && rm -rf $KARAF_DIST/demos |
| 32 | [ -f $KARAF_TAR ] && tar zxf $KARAF_TAR && rm -rf $KARAF_DIST/demos |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 33 | mkdir bin |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 34 | |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 35 | # Stage the ONOS admin scripts and patch in Karaf service wrapper extras |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 36 | cp -r $ONOS_ROOT/tools/package/bin . |
tom | 0eaa97f | 2014-09-22 16:13:06 -0700 | [diff] [blame] | 37 | cp -r $ONOS_ROOT/tools/package/debian $ONOS_STAGE/debian |
Thomas Vachuska | b105fd4 | 2014-10-20 09:02:27 -0700 | [diff] [blame] | 38 | cp -r $ONOS_ROOT/tools/package/etc/* $ONOS_STAGE/$KARAF_DIST/etc |
| 39 | |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 40 | # Stage all builtin ONOS apps for factory install |
| 41 | mkdir $ONOS_STAGE/apps |
| 42 | find $ONOS_ROOT -name 'app.xml' | egrep -v '/src/test/|/target/|org\.foo\.' | \ |
| 43 | xargs grep 'name=' | sed 's/<app name="//g;s/".*//g' | while read line; do |
| 44 | appxml=${line%:*} |
| 45 | app=${line#*:} |
| 46 | mkdir $ONOS_STAGE/apps/$app |
| 47 | cp $appxml $ONOS_STAGE/apps/$app/app.xml |
| 48 | done |
| 49 | |
| 50 | # Patch-in proper Karaf version into the startup script |
Thomas Vachuska | b105fd4 | 2014-10-20 09:02:27 -0700 | [diff] [blame] | 51 | sed "s/\$KARAF_VERSION/$KARAF_VERSION/g" \ |
| 52 | $ONOS_ROOT/tools/package/bin/onos-service > bin/onos-service |
| 53 | sed "s/\$KARAF_VERSION/$KARAF_VERSION/g" \ |
| 54 | $ONOS_ROOT/tools/package/bin/onos > bin/onos |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 55 | |
Thomas Vachuska | ebf5e54 | 2015-02-03 19:38:13 -0800 | [diff] [blame] | 56 | # Stage the ONOS bundles, but only those that match the version |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 57 | mkdir -p $KARAF_DIST/system/org/onosproject |
Thomas Vachuska | ebf5e54 | 2015-02-03 19:38:13 -0800 | [diff] [blame] | 58 | # cp -r $M2_REPO/org/onosproject/ $KARAF_DIST/system/org/ |
| 59 | find $M2_REPO/org/onosproject/ -type d -name $ONOS_POM_VERSION | while read line; do |
| 60 | path=${line#*/onosproject/} |
| 61 | artifact=${path%/$ONOS_POM_VERSION} |
| 62 | mkdir -p $KARAF_DIST/system/org/onosproject/$artifact |
| 63 | cp -r $M2_REPO/org/onosproject/$artifact/$ONOS_POM_VERSION \ |
| 64 | $KARAF_DIST/system/org/onosproject/$artifact/$ONOS_POM_VERSION |
| 65 | done |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 66 | |
tom | 7e02cda | 2014-09-18 12:05:46 -0700 | [diff] [blame] | 67 | # ONOS Patching ---------------------------------------------------------------- |
| 68 | |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 69 | # Patch the Apache Karaf distribution file to add ONOS features repository |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 70 | perl -pi.old -e "s|^(featuresRepositories=.*)|\1,mvn:org.onosproject/onos-features/$ONOS_POM_VERSION/xml/features|" \ |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 71 | $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg |
| 72 | |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 73 | # Patch the Apache Karaf distribution file to load default ONOS boot features |
| 74 | export BOOT_FEATURES="webconsole,onos-api,onos-core,onos-cli,onos-rest,onos-gui" |
| 75 | perl -pi.old -e "s|^(featuresBoot=.*)|\1,$BOOT_FEATURES|" \ |
tom | e472987 | 2014-09-23 00:37:37 -0700 | [diff] [blame] | 76 | $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg |
| 77 | |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 78 | # Patch the Apache Karaf distribution with ONOS branding bundle |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 79 | cp $M2_REPO/org/onosproject/onos-branding/$ONOS_POM_VERSION/onos-branding-*.jar \ |
tom | 73d6d1e | 2014-09-17 20:08:01 -0700 | [diff] [blame] | 80 | $ONOS_STAGE/$KARAF_DIST/lib |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 81 | |
tom | 61e317d | 2014-10-08 11:18:02 -0700 | [diff] [blame] | 82 | # Patch in the ONOS version file |
| 83 | echo $ONOS_VERSION > $ONOS_STAGE/VERSION |
tom | 53efab5 | 2014-10-07 17:43:48 -0700 | [diff] [blame] | 84 | |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 85 | # Now package up the ONOS tar file |
| 86 | cd $ONOS_STAGE_ROOT |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 87 | COPYFILE_DISABLE=1 tar zcf $ONOS_TAR $ONOS_BITS |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 88 | which zip >/dev/null && zip -rq $ONOS_ZIP $ONOS_BITS |
Thomas Vachuska | 84ca6e7 | 2015-03-18 14:31:29 -0700 | [diff] [blame] | 89 | ls -l $ONOS_TAR $ONOS_ZIP 2>/dev/null |
tom | 61e317d | 2014-10-08 11:18:02 -0700 | [diff] [blame] | 90 | rm -r $ONOS_STAGE |