blob: e7f2cbe3b321891994347f105b5473a3b912fa6f [file] [log] [blame]
tom4d0c6632014-09-15 23:27:01 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
Luca Pretee6183752015-07-29 01:55:50 -07003# Packages ONOS distributable into onos.tar.gz, onos.zip or a deb file
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom4d0c6632014-09-15 23:27:01 -07005
Brian O'Connorf5d93632015-09-04 20:18:31 -07006set -e
7
Luca Pretee6183752015-07-29 01:55:50 -07008# Build the staging directory used to produce the packages
9function 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 Vachuska08ab6a62015-09-23 16:55:45 -070031 # 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 Pretee6183752015-07-29 01:55:50 -070035 # Stage the ONOS admin scripts and patch in Karaf service wrapper extras
36 cp -r $ONOS_ROOT/tools/package/bin .
Brian O'Connor0eed29e2015-09-16 11:38:33 -070037 cp -r $ONOS_ROOT/tools/package/init $ONOS_STAGE/init
Luca Pretee6183752015-07-29 01:55:50 -070038 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
Thomas Vachuska8c9ee812015-11-24 17:29:37 -080053 if [ -d $ONOS_ROOT/tools/package/karaf-assembly/target/repo ]; then
54 cp -r $ONOS_ROOT/tools/package/karaf-assembly/target/repo/* $ONOS_STAGE/$KARAF_DIST/system
Brian O'Connoreca5bbc2015-12-05 00:55:58 -080055 #FIXME we need to add onos-features manually
56 mkdir -p $ONOS_STAGE/$KARAF_DIST/system/org/onosproject/onos-features/$ONOS_POM_VERSION
57 cp $M2_REPO/org/onosproject/onos-features/$ONOS_POM_VERSION/onos-features* \
58 $ONOS_STAGE/$KARAF_DIST/system/org/onosproject/onos-features/$ONOS_POM_VERSION
Thomas Vachuska8c9ee812015-11-24 17:29:37 -080059 else
60 # TODO: Deprecated so remove when confident staging works.
61 # Stage the ONOS bundles, but only those that match the version
62 mkdir -p $ONOS_STAGE/$KARAF_DIST/system/org/onosproject
63 find $M2_REPO/org/onosproject -type f -path "*/$ONOS_POM_VERSION/*" \
64 \( -name '*.jar' -o -name '*.pom' -o -name '*-features.xml' \) \
65 | grep -v -Ee '-tests.jar|-[0-9]{8}.[0-9]{6}-' \
66 | while read src; do
67 dst=$ONOS_STAGE/$KARAF_DIST/system/${src#$M2_REPO/*}
68 mkdir -p $(dirname $dst)
69 cp $src $dst
70 done
71 fi
Luca Pretee6183752015-07-29 01:55:50 -070072
73 # ONOS Patching ----------------------------------------------------------------
74
75 # Patch the Apache Karaf distribution file to add ONOS features repository
76 perl -pi.old -e "s|^(featuresRepositories=.*)|\1,mvn:org.onosproject/onos-features/$ONOS_POM_VERSION/xml/features|" \
77 $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg
78
79 # Patch the Apache Karaf distribution file to load default ONOS boot features
80 export BOOT_FEATURES="webconsole,onos-api,onos-core,onos-incubator,onos-cli,onos-rest,onos-gui"
81 perl -pi.old -e "s|^(featuresBoot=.*)|\1,$BOOT_FEATURES|" \
82 $ONOS_STAGE/$KARAF_DIST/etc/org.apache.karaf.features.cfg
83
84 # Patch the Apache Karaf distribution with ONOS branding bundle
85 cp $M2_REPO/org/onosproject/onos-branding/$ONOS_POM_VERSION/onos-branding-*.jar \
86 $ONOS_STAGE/$KARAF_DIST/lib
87
88 # Patch in the ONOS version file
89 echo $ONOS_VERSION > $ONOS_STAGE/VERSION
90}
91
92function build_compressed_package() {
93 # Package up the ONOS tar file
94 cd $ONOS_STAGE_ROOT
95 rm -f $ONOS_TAR $ONOS_ZIP
96 COPYFILE_DISABLE=1 tar zcf $ONOS_TAR $ONOS_BITS
97
98 # Figure out whether we should build ONOS zip file and if so, build it.
99 which zip >/dev/null && [ -z "$ONOS_TAR_ONLY" ] && buildZip=true || unset buildZip
100 [ -n "$buildZip" ] && zip -rq $ONOS_ZIP $ONOS_BITS
101
102 # Report on the archives that were built and clean-up
103 [ -n "$buildZip" ] && ls -lh $ONOS_TAR $ONOS_ZIP || ls -lh $ONOS_TAR
104 rm -r $ONOS_STAGE
105}
106
107# Build a DEB package
Luca Pretef2049d12015-08-01 14:48:01 -0700108function build_deb() {
Brian O'Connor8a0c20e2015-09-16 22:54:24 -0700109 echo "This command may ask for your password to run commands as sudo,"
110 echo " because you need to be root in order to generate a proper DEB package."
Luca Pretee6183752015-07-29 01:55:50 -0700111
112 sudo rm -fr $ONOS_DEB_ROOT
113
Luca Pretef2049d12015-08-01 14:48:01 -0700114 mkdir -p $ONOS_DEB_ROOT/{DEBIAN,opt,etc/init}
Luca Pretee6183752015-07-29 01:55:50 -0700115
Brian O'Connor8a0c20e2015-09-16 22:54:24 -0700116 # Copy the debian directory and fill in version
117 cp -r $ONOS_ROOT/tools/package/deb/* $ONOS_DEB_ROOT/DEBIAN/
118 sed -i'' -E "s/@ONOS_POM_VERSION/$ONOS_POM_VERSION/" $ONOS_DEB_ROOT/DEBIAN/control
Luca Pretee6183752015-07-29 01:55:50 -0700119
120 cp -r $ONOS_STAGE $ONOS_DEB_ROOT/opt/onos
Brian O'Connor0eed29e2015-09-16 11:38:33 -0700121 cp $ONOS_ROOT/tools/package/init/onos.conf $ONOS_DEB_ROOT/etc/init/
Luca Pretee6183752015-07-29 01:55:50 -0700122
123 mkdir -p $ONOS_DEB_ROOT/opt/onos/var/
124
125 sudo chown -R root:root $ONOS_DEB_ROOT
Luca Pretef2049d12015-08-01 14:48:01 -0700126
Luca Pretee6183752015-07-29 01:55:50 -0700127 sudo dpkg-deb --build $ONOS_DEB_ROOT > /dev/null &&
128 sudo mv $ONOS_STAGE_ROOT/deb.deb $ONOS_DEB && ls -l $ONOS_DEB
Brian O'Connor8a0c20e2015-09-16 22:54:24 -0700129
130 #TODO run lintian on .deb
Luca Pretee6183752015-07-29 01:55:50 -0700131}
132
Luca Pretef2049d12015-08-01 14:48:01 -0700133# Build an RPM package
134function build_rpm() {
135 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'Connorac322442015-09-17 23:49:17 -0700136 [[ "$response" =~ ^[Nn] ]] && exit 0
Luca Pretef2049d12015-08-01 14:48:01 -0700137
Brian O'Connorac322442015-09-17 23:49:17 -0700138 sudo rm -fr $ONOS_RPM_ROOT
Luca Pretef2049d12015-08-01 14:48:01 -0700139
Brian O'Connorac322442015-09-17 23:49:17 -0700140 sudo yum -y install rpm-build
Luca Pretef2049d12015-08-01 14:48:01 -0700141
Brian O'Connorac322442015-09-17 23:49:17 -0700142 mkdir -p $ONOS_RPM_ROOT/{BUILD,RPMS,SOURCES/onos-$ONOS_RPM_VERSION/{etc/init,opt},SPECS,SRPMS}
Luca Pretef2049d12015-08-01 14:48:01 -0700143
Brian O'Connorac322442015-09-17 23:49:17 -0700144 cp -r $ONOS_STAGE $ONOS_RPM_ROOT/SOURCES/onos-$ONOS_RPM_VERSION/opt/onos
145 cp $ONOS_ROOT/tools/package/init/onos.conf $ONOS_RPM_ROOT/SOURCES/onos-$ONOS_RPM_VERSION/etc/init/
Luca Pretef2049d12015-08-01 14:48:01 -0700146
Brian O'Connorac322442015-09-17 23:49:17 -0700147 cd $ONOS_RPM_ROOT/SOURCES
148 COPYFILE_DISABLE=1 tar zcf onos-$ONOS_RPM_VERSION.tar.gz onos-$ONOS_RPM_VERSION
Luca Pretef2049d12015-08-01 14:48:01 -0700149
Brian O'Connorac322442015-09-17 23:49:17 -0700150 cp $ONOS_ROOT/tools/package/rpm/onos.spec $ONOS_RPM_ROOT/SPECS/
151 sed -i'' -E "s/@ONOS_RPM_VERSION/$ONOS_RPM_VERSION/g" $ONOS_RPM_ROOT/SPECS/onos.spec
Luca Pretef2049d12015-08-01 14:48:01 -0700152
Brian O'Connorac322442015-09-17 23:49:17 -0700153 rpmbuild --define "_topdir $ONOS_RPM_ROOT" -bb $ONOS_RPM_ROOT/SPECS/onos.spec
154
155 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 Pretef2049d12015-08-01 14:48:01 -0700156}
157
Luca Pretee6183752015-07-29 01:55:50 -0700158# Script entry point
tom5c255702014-09-18 06:57:39 -0700159[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
160. $ONOS_ROOT/tools/build/envDefaults
tom4d0c6632014-09-15 23:27:01 -0700161
162# Bail on any errors
163set -e
164
Thomas Vachuska82082052015-12-04 16:12:45 -0800165# Run karaf assembly to collect artifacts for off-line installations.
166aux=/tmp/assembly-$$.log
167trap "rm -f $aux 2>/dev/null" EXIT
168cd $ONOS_ROOT/tools/package/karaf-assembly && mvn clean install > $aux 2>&1
169
Luca Pretee6183752015-07-29 01:55:50 -0700170# Before starting make sure the environment is clan - delete onos staging folder
171rm -fr $ONOS_STAGE
tom4d0c6632014-09-15 23:27:01 -0700172
Luca Pretef2049d12015-08-01 14:48:01 -0700173# If there are parameters check if we want to build a deb - otherwise build tar.gz
Luca Pretee6183752015-07-29 01:55:50 -0700174case ${1:---tar} in
Luca Pretef2049d12015-08-01 14:48:01 -0700175 "--tar" | "-T") build_stage_dir
176 build_compressed_package
Luca Pretee6183752015-07-29 01:55:50 -0700177 ;;
Luca Pretef2049d12015-08-01 14:48:01 -0700178 "--deb" | "-D") build_stage_dir
179 build_deb
Luca Pretee6183752015-07-29 01:55:50 -0700180 ;;
Luca Pretef2049d12015-08-01 14:48:01 -0700181 "--rpm" | "-R") build_stage_dir
182 build_rpm
183 ;;
184 *) echo "usage: $(basename $0) [--tar|--deb|--rpm]" >&2 && exit 1
Luca Pretee6183752015-07-29 01:55:50 -0700185 ;;
186esac