2 ##############################################################################
3 # Copyright (c) 2015 Ericsson AB and others.
4 # stefan.k.berg@ericsson.com
5 # jonas.bjurel@ericsson.com
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
18 if [ -n "$TMP_HOSTMOUNT" ]; then
19 if [ -d "$TMP_HOSTMOUNT" ]; then
20 fusermount -u $TMP_HOSTMOUNT
25 if [ -d "$TMP_OLDISO" ]; then
26 fusermount -u $TMP_OLDISO
30 if [ -f "$CONF" ]; then
34 if [ -d "$TMP_ISOPUPPET" ]; then
40 ar p $1 control.tar.gz | tar xzO ./control | grep "^Package:.* " | sed 's/.* //'
41 if [ $PIPESTATUS -ne 0 ]; then
42 echo "Error in get_deb_name($1)"
48 ar p $1 control.tar.gz | tar xzO ./control | grep "^Version:.* " | sed 's/.* //'
49 if [ $PIPESTATUS -ne 0 ]; then
50 echo "Error in get_deb_rev($1)"
56 # Added logic for ".orig" files:
57 # 1. Is there an .orig file for the new file?
58 # 2. If the file is not present in base ISO -> Error!
59 # 3. If the file is changed i base ISO -> Error! (need manual rebase)
60 # 4. If there is no .orig file, but file is present in base ISO: Error!
65 pushd $NEWDIR >/dev/null
66 for f in $(find * -type f -name '*.orig')
69 oldfile=$OLDDIR/$(echo $f | sed 's/.orig$//')
70 newfile=$NEWDIR/$(echo $f | sed 's/.orig$//')
72 origfile=${newfile}.orig
73 # If no corresponding base file, error
74 if [ ! -f $oldfile ]; then
76 echo "Error: found ${newfile} but no"
77 echo "Error: ${oldfile}"
78 echo "Error: Manual rebase is needed!"
83 # If orig file differs from base file, error
84 if ! diff -q $origfile $oldfile > /dev/null; then
86 echo "Error: $origfile differs from"
87 echo "Error: $oldfile!"
88 echo "Error: Manual rebase is needed!"
96 # Check that there we're not overwriting oldfiles without having a ".orig" copy
97 for f in $(find * -type f ! -name '*.orig')
99 newfile=$NEWDIR/$(echo $f | sed 's/.orig$//')
100 origfile=${newfile}.orig
102 if [ -f $oldfile ]; then
103 if [ ! -f $origfile ]; then
105 echo "Error: Will overwrite $oldfile, but there is no"
106 echo "Error: $origfile!"
107 echo "Error: You need to create the `basename $origfile`!"
120 REPO=$DEST/var/www/nailgun/ubuntu/fuelweb/x86_64
122 ssh-copy-id root@$FUELHOST
123 sshfs root@1${FUELHOST}:/ $TMP_HOSTMOUNT
125 if [ -f $REPO/dists/precise/main/binary-amd64/Packages.backup ]; then
126 echo "Error - found backup file for Packages!"
130 if [ -f $REPO/dists/precise/main/binary-amd64/Packages.gz.backup ]; then
131 echo "Error - found backup file for Packages.gz!"
135 if [ -f $REPO/dists/precise/Release.backup ]; then
136 echo "Error - found backup file for Release!"
140 if [ -d $DEST/etc/puppet.backup ]; then
141 echo "Error - found backup file for Puppet!"
145 cp $REPO/dists/precise/main/binary-amd64/Packages $REPO/dists/precise/main/binary-amd64/Packages.backup
146 cp $REPO/dists/precise/main/binary-amd64/Packages.gz $REPO/dists/precise/main/binary-amd64/Packages.gz.backup
147 cp $REPO/dists/precise/Release $REPO/dists/precise/Release.backup
148 cp -Rvp $DEST/etc/puppet $DEST/etc/puppet.backup
152 echo "Installing into Puppet:"
153 cd $TOP/release/puppet/modules
157 cp -Rp $dir $DEST/etc/puppet/modules
172 echo "Unpack of old ISO..."
173 if [ -d newiso ]; then
178 fusermount -u $TMP_OLDISO 2>/dev/null || cat /dev/null
179 fuseiso -p $ORIGISO $TMP_OLDISO
182 find . | cpio -pd $TOP/newiso
184 fusermount -u $TMP_OLDISO
186 chmod -R 755 $TOP/newiso
192 find . -name TRANS.TBL -exec rm {} \;
195 mkisofs --quiet -r -V "$VOLUMEID" -publisher "$PUBLISHER" \
196 -p `git rev-parse --verify HEAD` -J -R -b isolinux/isolinux.bin \
198 -boot-load-size 4 -boot-info-table \
200 -x "lost+found" -o $NEWISO .
202 isoinfo -d -i $NEWISO
205 # iso_copy_puppet: Create a new puppet-slave.tgz for the iso
207 echo "Installing into Puppet..."
208 mkdir -p $TMP_ISOPUPPET/release/puppet
209 cd $TMP_ISOPUPPET/release/puppet
210 tar xzf $DEST/puppet-slave.tgz
211 cd $TOP/release/puppet/modules
213 verify_orig_files $TMP_ISOPUPPET/release/puppet $TOP/release/puppet/modules
214 # Remove all .orig files before copying as they now have been verfied
215 find $TOP/release/puppet/modules -type f -name '*.orig' -exec rm {} \;
217 for dir in $TOP/release/puppet/modules/*
220 cp -Rp $dir $TMP_ISOPUPPET/release/puppet
222 cd $TMP_ISOPUPPET/release/puppet
225 tar czf $DEST/puppet-slave.tgz .
227 rm -Rf $TMP_ISOPUPPET
230 # iso_modify_image: Add/patch files in the ISO root
231 iso_modify_image () {
232 # TODO: Add logic for ".orig" files (hey! make a function!), which would look
234 # 1. Is there an .orig file?
235 # 2. If the file is not present in origiso -> Error exit
236 # 3. If the file is changed in origiso -> Error exit (need manual rebase)
237 # 4. Otherwise continue, but don't copy orig file (or maybe we should?)
238 # ... and corresponding reverse logic:
239 # 1. If there is no .orig file, but file is present in origiso -> Error exit
240 echo "Modify ISO files (wild copy)..."
242 verify_orig_files $DEST $TOP/release/isoroot
243 # Remove all .orig files before copying as they now have been verfied
244 find $TOP/release/isoroot -type f -name '*.orig' -exec rm {} \;
246 cd $TOP/release/isoroot
259 echo "Copying Debian packages..."
260 cd $TOP/release/packages/ubuntu/pool/main
261 for deb in `ls -1 | grep '\.deb$'`
264 cp $deb $REPO/pool/main
267 echo "Running Fuel package patch file"
268 pushd $REPO/pool/main > /dev/null
270 for line in `cat $TOP/apply_patches | grep -v "^#" | grep -v "^$"`; do
272 ref=`echo $line | cut -d '>' -f 1`
273 origpkg=`echo $line| cut -d '>' -f 2`
274 url=`echo $line | cut -d '>' -f 3`
276 if [ -z "$origpkg" ]; then
277 echo "Error: No origpkg for patching"
281 if [ -z "$url" ]; then
282 echo "Error: No url for patching"
286 if [ -z "$ref" ]; then
287 echo "Error: No reference text for patching"
291 echo "CM: Patching Fuel package for $ref" | tee -a $REPORTFILE
292 echo "CM: Replacing package $origpkg with $url" | tee -a $REPORTFILE
293 oldrev=`get_deb_rev $origpkg`
296 topkg=`basename $url`
297 echo "CM: MD5 of new package:" | tee -a $REPORTFILE
298 md5sum $topkg | tee -a $REPORTFILE
300 patchname=`get_deb_name $topkg`
301 patchrev=`get_deb_rev $topkg`
302 echo "Correcting dependencies towards $patchname rev $patchrev - old rev $oldrev" | tee -a $REPORTFILE
303 $TOP/patch-packages/tools/correct_deps $patchname $oldrev $patchrev | tee -a $REPORTFILE
304 if [ $PIPESTATUS -ne 0 ]; then
309 printf "Done running Fuel patch file\n\n"
311 echo "Running add packages file"
312 for line in `cat $TOP/add_opnfv_packages | grep -v "^#" | grep -v "^$"`; do
314 ref=`echo $line | cut -d '>' -f 1`
315 origpkg=`echo $line| cut -d '>' -f 2`
316 url=`echo $line | cut -d '>' -f 3`
318 if [ -z "$origpkg" ]; then
319 echo "Error: No origpkg for patching"
323 if [ -z "$url" ]; then
324 echo "Error: No url for patching"
328 if [ -z "$ref" ]; then
329 echo "Error: No reference text for patching"
333 if [ "$origpkg" != "NONE" ]; then
334 echo "CM: Patching added package for $ref" | tee -a $REPORTFILE
335 echo "CM: Replacing package $origpkg with $url" | tee -a $REPORTFILE
336 oldrev=`get_deb_rev $origpkg`
339 echo "CM: Adding previoulsy uninstalled package for $ref" tee -a $REPORTFILE
342 topkg=`basename $url`
343 echo "CM: MD5 of new package:" | tee -a $REPORTFILE
344 md5sum $topkg | tee -a $REPORTFILE
345 if [ "$origpkg" != "NONE" ]; then
346 patchname=`get_deb_name $topkg`
347 patchrev=`get_deb_rev $topkg`
348 echo "Correcting dependencies towards $patchname rev $patchrev - old rev $oldrev" | tee -a $REPORTFILE
349 $TOP/patch-packages/tools/correct_deps $patchname $oldrev $patchrev | tee -a $REPORTFILE
350 if [ $PIPESTATUS -ne 0 ]; then
355 printf "Done running add packages file\n\n"
359 if [ -f $TOP/patch-packages/release/patch-replacements ]; then
360 echo "Applying package patches" | tee -a $REPORTFILE
361 pushd $REPO/pool/main > /dev/null
362 printf "\n\n" | tee -a $REPORTFILE
363 for line in `cat $TOP/patch-packages/release/patch-replacements`
365 frompkg=`echo $line | cut -d ">" -f 1`
366 topkg=`echo $line | cut -d ">" -f 2`
367 echo "CM: Applying patch to $frompkg" | tee -a $REPORTFILE
368 echo "CM: New package rev after patch: $topkg" | tee -a $REPORTFILE
370 if [ ! -f $frompkg ]; then
371 echo "Error: Can't find $frompkg in repo"
374 oldrev=`get_deb_rev $frompkg`
375 echo "Removing $frompkg from repo"
379 if [ ! -f $TOP/patch-packages/release/packages/$topkg ]; then
380 echo "Error: Can't find $topkg in patch release"
383 echo "Adding $topkg to repo"
384 cp $TOP/patch-packages/release/packages/$topkg .
387 patchname=`get_deb_name $topkg`
388 patchrev=`get_deb_rev $topkg`
389 echo "Correcting dependencies towards $patchname rev $patchrev - old rev $oldrev" | tee -a $REPORTFILE
390 $TOP/patch-packages/tools/correct_deps $patchname $oldrev $patchrev | tee -a $REPORTFILE
391 if [ $PIPESTATUS -ne 0 ]; then
398 echo "Generating metadata..."
399 pushd $REPO > /dev/null
401 # The below methods are from 15B
402 APT_REL_CONF="$TOP/install/apt-ftparchive-release.conf"
403 APT_DEB_CONF="$TOP/install/apt-ftparchive-deb.conf"
405 apt-ftparchive -c "${APT_REL_CONF}" generate "${APT_DEB_CONF}"
407 # Fuel also needs this index file
408 cat dists/precise/main/binary-amd64/Packages | \
409 awk '/^Package:/{pkg=$2}
410 /^Version:/{print pkg ": \"" $2 "\""}' > ubuntu-versions.yaml
411 cp ubuntu-versions.yaml $DEST
413 apt-ftparchive -c "${APT_REL_CONF}" release dists/precise/ > dists/precise/Release
414 gzip -9cf dists/precise/Release > dists/precise/Release.gz
421 #############################################################################
425 CONF=`mktemp /tmp/XXXXXXX`
429 if [ $MODE = "iso" ]; then
431 TMP_OLDISO=`mktemp -d /tmp/XXXXXXX`
432 TMP_ISOPUPPET=`mktemp -d /tmp/XXXXXXX`
436 REPORTFILE="${NEWISO}.txt"
437 if [ ! -f $ORIGISO ]; then
438 echo "Can't find original MOS 5.1 iso at $ORIGISO"
445 echo "Unknown mode: $MODE"