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 | # ----------------------------------------------------------------------------- |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 3 | # Packages ONOS distributable into onos.tar.gz, onos.zip or a deb file |
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 | f5d9363 | 2015-09-04 20:18:31 -0700 | [diff] [blame] | 6 | set -e |
| 7 | |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 8 | # Build the staging directory used to produce the packages |
| 9 | function build_stage_dir() { |
| 10 | # Make sure we have the original apache karaf bits first |
| 11 | [ ! -d $M2_REPO ] && echo "M2 repository $M2_REPO not found" && exit 1 |
| 12 | [ -d $ONOS_STAGE ] && echo "ONOS stage $ONOS_STAGE already exists" && exit 1 |
| 13 | |
| 14 | # Create the stage directory and warp into it |
| 15 | mkdir -p $ONOS_STAGE |
| 16 | cd $ONOS_STAGE |
| 17 | |
| 18 | # Check if Apache Karaf bits are available and if not, fetch them. |
| 19 | if [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ]; then |
| 20 | echo "Downloading $KARAF_TAR..." |
| 21 | curl -sL http://downloads.onosproject.org/third-party/apache-karaf-$KARAF_VERSION.tar.gz > $KARAF_TAR |
| 22 | fi |
| 23 | [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ] && \ |
| 24 | echo "Apache Karaf bits $KARAF_ZIP or $KARAF_TAR not found" && exit 1 |
| 25 | |
| 26 | # Unroll the Apache Karaf bits, prune them and make ONOS top-level directories. |
| 27 | [ -f $KARAF_ZIP ] && unzip -q $KARAF_ZIP && rm -rf $ONOS_STAGE/$KARAF_DIST/demos |
| 28 | [ -f $KARAF_TAR ] && tar zxf $KARAF_TAR && rm -rf $ONOS_STAGE/$KARAF_DIST/demos |
| 29 | mkdir bin |
| 30 | |
Thomas Vachuska | 08ab6a6 | 2015-09-23 16:55:45 -0700 | [diff] [blame] | 31 | # Patch the log-file size in place to increase it to 10 MB |
| 32 | perl -pi.old -e "s/maxFileSize=1MB/maxFileSize=10MB/g" \ |
| 33 | $ONOS_STAGE/$KARAF_DIST/etc/org.ops4j.pax.logging.cfg |
| 34 | |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 35 | # Stage the ONOS admin scripts and patch in Karaf service wrapper extras |
| 36 | cp -r $ONOS_ROOT/tools/package/bin . |
Brian O'Connor | 0eed29e | 2015-09-16 11:38:33 -0700 | [diff] [blame] | 37 | cp -r $ONOS_ROOT/tools/package/init $ONOS_STAGE/init |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 38 | cp -r $ONOS_ROOT/tools/package/etc/* $ONOS_STAGE/$KARAF_DIST/etc |
| 39 | |
| 40 | # Stage all builtin ONOS apps for factory install |
| 41 | onos-stage-apps $ONOS_STAGE/apps $ONOS_STAGE/$KARAF_DIST/system |
| 42 | |
| 43 | # Mark the org.onosproject.drivers app active by default |
| 44 | touch $ONOS_STAGE/apps/org.onosproject.drivers/active |
| 45 | |
| 46 | # Patch-in proper Karaf version into the startup script |
| 47 | sed "s/\$KARAF_VERSION/$KARAF_VERSION/g" \ |
| 48 | $ONOS_ROOT/tools/package/bin/onos-service > bin/onos-service |
| 49 | sed "s/\$KARAF_VERSION/$KARAF_VERSION/g" \ |
| 50 | $ONOS_ROOT/tools/package/bin/onos-client > bin/onos |
| 51 | chmod a+x bin/onos-service bin/onos |
| 52 | |
| 53 | # Stage the ONOS bundles, but only those that match the version |
| 54 | mkdir -p $ONOS_STAGE/$KARAF_DIST/system/org/onosproject |
| 55 | find $M2_REPO/org/onosproject -type f -path "*/$ONOS_POM_VERSION/*" \ |
Jonathan Hart | 588fde3 | 2015-09-16 13:48:48 -0700 | [diff] [blame] | 56 | \( -name '*.jar' -o -name '*.pom' -o -name '*-features.xml' \) \ |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 57 | | grep -v -Ee '-tests.jar|-[0-9]{8}.[0-9]{6}-' \ |
| 58 | | while read src; do |
| 59 | dst=$ONOS_STAGE/$KARAF_DIST/system/${src#$M2_REPO/*} |
| 60 | mkdir -p $(dirname $dst) |
| 61 | cp $src $dst |
| 62 | done |
| 63 | |
| 64 | # ONOS Patching ---------------------------------------------------------------- |
| 65 | |
| 66 | # Patch the Apache Karaf distribution file to add ONOS features repository |
| 67 | perl -pi.old -e "s|^(featuresRepositories=.*)|\1,mvn:org.onosproject/onos-features/$ONOS_POM_VERSION/xml/features|" \ |
| 68 | $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg |
| 69 | |
| 70 | # Patch the Apache Karaf distribution file to load default ONOS boot features |
| 71 | export BOOT_FEATURES="webconsole,onos-api,onos-core,onos-incubator,onos-cli,onos-rest,onos-gui" |
| 72 | perl -pi.old -e "s|^(featuresBoot=.*)|\1,$BOOT_FEATURES|" \ |
| 73 | $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg |
| 74 | |
| 75 | # Patch the Apache Karaf distribution with ONOS branding bundle |
| 76 | cp $M2_REPO/org/onosproject/onos-branding/$ONOS_POM_VERSION/onos-branding-*.jar \ |
| 77 | $ONOS_STAGE/$KARAF_DIST/lib |
| 78 | |
| 79 | # Patch in the ONOS version file |
| 80 | echo $ONOS_VERSION > $ONOS_STAGE/VERSION |
| 81 | } |
| 82 | |
| 83 | function build_compressed_package() { |
| 84 | # Package up the ONOS tar file |
| 85 | cd $ONOS_STAGE_ROOT |
| 86 | rm -f $ONOS_TAR $ONOS_ZIP |
| 87 | COPYFILE_DISABLE=1 tar zcf $ONOS_TAR $ONOS_BITS |
| 88 | |
| 89 | # Figure out whether we should build ONOS zip file and if so, build it. |
| 90 | which zip >/dev/null && [ -z "$ONOS_TAR_ONLY" ] && buildZip=true || unset buildZip |
| 91 | [ -n "$buildZip" ] && zip -rq $ONOS_ZIP $ONOS_BITS |
| 92 | |
| 93 | # Report on the archives that were built and clean-up |
| 94 | [ -n "$buildZip" ] && ls -lh $ONOS_TAR $ONOS_ZIP || ls -lh $ONOS_TAR |
| 95 | rm -r $ONOS_STAGE |
| 96 | } |
| 97 | |
| 98 | # Build a DEB package |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 99 | function build_deb() { |
Brian O'Connor | 8a0c20e | 2015-09-16 22:54:24 -0700 | [diff] [blame] | 100 | echo "This command may ask for your password to run commands as sudo," |
| 101 | echo " because you need to be root in order to generate a proper DEB package." |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 102 | |
| 103 | sudo rm -fr $ONOS_DEB_ROOT |
| 104 | |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 105 | mkdir -p $ONOS_DEB_ROOT/{DEBIAN,opt,etc/init} |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 106 | |
Brian O'Connor | 8a0c20e | 2015-09-16 22:54:24 -0700 | [diff] [blame] | 107 | # Copy the debian directory and fill in version |
| 108 | cp -r $ONOS_ROOT/tools/package/deb/* $ONOS_DEB_ROOT/DEBIAN/ |
| 109 | sed -i'' -E "s/@ONOS_POM_VERSION/$ONOS_POM_VERSION/" $ONOS_DEB_ROOT/DEBIAN/control |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 110 | |
| 111 | cp -r $ONOS_STAGE $ONOS_DEB_ROOT/opt/onos |
Brian O'Connor | 0eed29e | 2015-09-16 11:38:33 -0700 | [diff] [blame] | 112 | cp $ONOS_ROOT/tools/package/init/onos.conf $ONOS_DEB_ROOT/etc/init/ |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 113 | |
| 114 | mkdir -p $ONOS_DEB_ROOT/opt/onos/var/ |
| 115 | |
| 116 | sudo chown -R root:root $ONOS_DEB_ROOT |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 117 | |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 118 | sudo dpkg-deb --build $ONOS_DEB_ROOT > /dev/null && |
| 119 | sudo mv $ONOS_STAGE_ROOT/deb.deb $ONOS_DEB && ls -l $ONOS_DEB |
Brian O'Connor | 8a0c20e | 2015-09-16 22:54:24 -0700 | [diff] [blame] | 120 | |
| 121 | #TODO run lintian on .deb |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 124 | # Build an RPM package |
| 125 | function build_rpm() { |
| 126 | read -r -p "WARN: rpm-build utility and root priviledges are need to build the package. Do you want to continue? [Y/n] " response |
Brian O'Connor | ac32244 | 2015-09-17 23:49:17 -0700 | [diff] [blame] | 127 | [[ "$response" =~ ^[Nn] ]] && exit 0 |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 128 | |
Brian O'Connor | ac32244 | 2015-09-17 23:49:17 -0700 | [diff] [blame] | 129 | sudo rm -fr $ONOS_RPM_ROOT |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 130 | |
Brian O'Connor | ac32244 | 2015-09-17 23:49:17 -0700 | [diff] [blame] | 131 | sudo yum -y install rpm-build |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 132 | |
Brian O'Connor | ac32244 | 2015-09-17 23:49:17 -0700 | [diff] [blame] | 133 | mkdir -p $ONOS_RPM_ROOT/{BUILD,RPMS,SOURCES/onos-$ONOS_RPM_VERSION/{etc/init,opt},SPECS,SRPMS} |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 134 | |
Brian O'Connor | ac32244 | 2015-09-17 23:49:17 -0700 | [diff] [blame] | 135 | cp -r $ONOS_STAGE $ONOS_RPM_ROOT/SOURCES/onos-$ONOS_RPM_VERSION/opt/onos |
| 136 | cp $ONOS_ROOT/tools/package/init/onos.conf $ONOS_RPM_ROOT/SOURCES/onos-$ONOS_RPM_VERSION/etc/init/ |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 137 | |
Brian O'Connor | ac32244 | 2015-09-17 23:49:17 -0700 | [diff] [blame] | 138 | cd $ONOS_RPM_ROOT/SOURCES |
| 139 | COPYFILE_DISABLE=1 tar zcf onos-$ONOS_RPM_VERSION.tar.gz onos-$ONOS_RPM_VERSION |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 140 | |
Brian O'Connor | ac32244 | 2015-09-17 23:49:17 -0700 | [diff] [blame] | 141 | cp $ONOS_ROOT/tools/package/rpm/onos.spec $ONOS_RPM_ROOT/SPECS/ |
| 142 | sed -i'' -E "s/@ONOS_RPM_VERSION/$ONOS_RPM_VERSION/g" $ONOS_RPM_ROOT/SPECS/onos.spec |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 143 | |
Brian O'Connor | ac32244 | 2015-09-17 23:49:17 -0700 | [diff] [blame] | 144 | rpmbuild --define "_topdir $ONOS_RPM_ROOT" -bb $ONOS_RPM_ROOT/SPECS/onos.spec |
| 145 | |
| 146 | cp $ONOS_RPM_ROOT/RPMS/noarch/onos-$ONOS_RPM_VERSION-1.noarch.rpm $ONOS_STAGE_ROOT && ls -l $ONOS_STAGE_ROOT/onos-$ONOS_RPM_VERSION-1.noarch.rpm |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 149 | # Script entry point |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 150 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| 151 | . $ONOS_ROOT/tools/build/envDefaults |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 152 | |
| 153 | # Bail on any errors |
| 154 | set -e |
| 155 | |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 156 | # Before starting make sure the environment is clan - delete onos staging folder |
| 157 | rm -fr $ONOS_STAGE |
tom | 4d0c663 | 2014-09-15 23:27:01 -0700 | [diff] [blame] | 158 | |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 159 | # If there are parameters check if we want to build a deb - otherwise build tar.gz |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 160 | case ${1:---tar} in |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 161 | "--tar" | "-T") build_stage_dir |
| 162 | build_compressed_package |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 163 | ;; |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 164 | "--deb" | "-D") build_stage_dir |
| 165 | build_deb |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 166 | ;; |
Luca Prete | f2049d1 | 2015-08-01 14:48:01 -0700 | [diff] [blame] | 167 | "--rpm" | "-R") build_stage_dir |
| 168 | build_rpm |
| 169 | ;; |
| 170 | *) echo "usage: $(basename $0) [--tar|--deb|--rpm]" >&2 && exit 1 |
Luca Prete | e618375 | 2015-07-29 01:55:50 -0700 | [diff] [blame] | 171 | ;; |
| 172 | esac |