forked from crowbar/crowbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_crowbar.sh
executable file
·581 lines (519 loc) · 22.4 KB
/
build_crowbar.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
#!/bin/bash
# Copyright 2011, Dell
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Author: VictorLowther
#
# This script expects to be able to run certian commands as root.
# Either run it as a user who can sudo to root, or give the user
# you are running it as the following sudo rights:
# crowbar-tester ALL = NOPASSWD: /bin/mount, /bin/umount, /usr/sbin/debootstrap, /bin/cp, /usr/sbin/chroot
# When running this script for the first time, it will automatically create a
# cache directory and try to populate it with all the build dependencies.
# After that, if you need to pull in new dependencies, you will need to
# call the script with the --update-cache parameter. If you are going to
# develop on Crowbar, it is a good idea to put the build cache in its own git
# repository, and create a branching structure for the packages that mirrors
# the branching structure in the crowbar repository -- if you do that, then
# this build script can be smarter about what packages it should pull in
# whenever you invoke it to build an iso.
# We always use the C language and locale
export LANG="C"
export LC_ALL="C"
GEM_RE='([^0-9].*)-([0-9].*)'
readonly currdir="$PWD"
export PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin"
# Source our config file if we have one
[[ -f $HOME/.build-crowbar.conf ]] && \
. "$HOME/.build-crowbar.conf"
# Look for a local one.
[[ -f build-crowbar.conf ]] && \
. "build-crowbar.conf"
# Set up our proxies if we were asked to.
if [[ $USE_PROXY = "1" && $PROXY_HOST ]]; then
proxy_str="http://"
if [[ $PROXY_PASSWORD && $PROXY_USER ]]; then
proxy_str+="$PROXY_USER:$PROXY_PASSWORD@"
elif [[ $PROXY_USER ]]; then
proxy_str+="$PROXY_USER@"
fi
proxy_str+="$PROXY_HOST"
[[ $PROXY_PORT ]] && proxy_str+=":$PROXY_PORT"
[[ $no_proxy ]] || no_proxy="localhost,localhost.localdomain,127.0.0.0/8,$PROXY_HOST"
[[ $http_proxy ]] || http_proxy="$proxy_str/"
[[ $https_proxy ]] || https_proxy="$http_proxy"
export no_proxy http_proxy https_proxy
else
unset no_proxy http_proxy https_proxy
fi
# Next, some configuration variables that can be used to tune how the
# build process works.
# Barclamps to include. By default, start with jsut crowbar and let
# the dependency machinery and the command line pull in the rest.
# Note that BARCLAMPS is an array, not a string!
[[ $BARCLAMPS ]] || BARCLAMPS=()
[[ $ALLOW_CACHE_UPDATE ]] || ALLOW_CACHE_UPDATE=true
# Location for caches that should not be erased between runs
[[ $CACHE_DIR ]] || CACHE_DIR="$HOME/.crowbar-build-cache"
# Location to store .iso images that we use in the build process.
# These are usually OS install DVDs that we will stage Crowbar on to.
[[ $ISO_LIBRARY ]] || ISO_LIBRARY="$CACHE_DIR/iso"
# This is the location that we will save the generated .iso to.
[[ $ISO_DEST ]] || ISO_DEST="$PWD"
# Directory that holds our Sledgehammer PXE tree.
[[ $SLEDGEHAMMER_PXE_DIR ]] || SLEDGEHAMMER_PXE_DIR="$CACHE_DIR/tftpboot"
# Location of the Crowbar checkout we are building from.
[[ $CROWBAR_DIR ]] || CROWBAR_DIR="${0%/*}"
[[ $CROWBAR_DIR = /* ]] || CROWBAR_DIR="$currdir/$CROWBAR_DIR"
[[ -f $CROWBAR_DIR/build_crowbar.sh && -d $CROWBAR_DIR/.git ]] || \
die "$CROWBAR_DIR is not a git checkout of Crowbar!"
export CROWBAR_DIR
# Location of the Sledgehammer source tree. Only used if we cannot
# find Sledgehammer in $SLEDGEHAMMER_PXE_DIR above.
[[ $SLEDGEHAMMER_DIR ]] || SLEDGEHAMMER_DIR="${CROWBAR_DIR}/../crowbar-sledgehammer"
# Command to run to clean out the tree before starting the build.
# By default we want to be relatively pristine.
[[ $VCS_CLEAN_CMD ]] || VCS_CLEAN_CMD='git clean -f -d'
# Arrays holding the additional pkgs and gems populate Crowbar with.
REPOS=()
declare -A CD_POOL STAGED_POOL INSTALLED_PKGS FORCE_BARCLAMP_UPDATE
# Get the OS we were asked to stage Crowbar on to. Assume it is Ubuntu 10.10
# unless we specify otherwise.
OS_TO_STAGE="${1-ubuntu-10.10}"
shift
# Source our common build functions
. "$CROWBAR_DIR/build_lib.sh" || exit 1
. "$CROWBAR_DIR/test_lib.sh" || exit 1
# Make sure that we actually know how to build the ISO we were asked to
# build. If we do not, print a helpful error message.
if ! [[ $OS_TO_STAGE && -d $CROWBAR_DIR/$OS_TO_STAGE-extra && \
-f $CROWBAR_DIR/$OS_TO_STAGE-extra/build_lib.sh ]]; then
cat <<EOF
You must pass the name of the operating system you want to stage Crowbar
on to. Valid choices are:
EOF
cd "$CROWBAR_DIR"
for d in *-extra; do
[[ -d $d && -f $d/build_lib.sh ]] || continue
echo " ${d%-extra}"
done
exit 1
fi
# Source OS specific build knowledge. This includes:
# Parameters that build_crowbar.sh needs to know:
# OS = the distribution we are staging on to, such as redhat or ubuntu.
# OS_VERSION = the version of the distribution we are staging on to.
# For redhat, it would be somethibng like 5.6
# OS_TOKEN = Defaults to "$OS-$OS_VERSION"
# ISO = the name of the install ISO image we are going to stage Crowbar on to.
# PKG_TYPE = The package type we should look for in crowbar.yml for OS
# specific packages.
# PKG_ALLOWED_ARCHES = The allowed package arches we will look to stage.
# These are usually whatever the OS equivalent of
# amd64 and all are.
# CHROOT_GEMDIR = The location that the OS keeps its gem cache in.
# CHROOT_PKGDIR = The location that the OS keeps its package cache in.
# Functions that build_crowbar needs to call:
# find_cd_pool(): This function should echo the current location of the
# package pool on $ISO when it is mounted on $IMAGE_DIR.
# fetch_os_iso(): This function should try to fetch the OS iso from
# a well-known location on the Internet, and die if it cannot.
# chroot_update(): This function should ask the chroot to update its
# package metadata.
# chroot_install(): This function should try to install the packages passed
# to it as args.
# chroot_fetch(): This function should ask to download (but not install)
# the packages passed to it as arguments and all their dependencies.
# add_repos(): This function should try to add repositories passed to it
# as args to the chroot environment.
# is_pkg(): This function should check to see if the string passed to it
# is a valid package filename. The file need not actually exist.
# pkg_name(): This function should extract the package name and arch as the
# package management system will see them from the file passed as an argument,
# and echo that information in $name-$arch format.
# __make_chroot(): This function should handle all of the OS-specific actions
# needed to set up the package-fetching chroot environment.
# pkg_cmp(): This function should check to see that both of the files passed to
# it refer to the same package name. If it does, this function should return
# 0 if the first package is a higher revision than the second one, and 1 if
# the first package is the same or lower revision. It should die if the
# package names are not the same.
# final_build_fixups(): This function should take wahtever steps are needed
# to make the default OS install process also ensure that the Crowbar bits
# are properly staged and to completly automate the admin node install
# process, either as an install from CD or an install via PXE. This
# usually entails modifying initrd files, adding kickstarts/install seeds,
# modifying boot config files, and so on.
. "$CROWBAR_DIR/$OS_TO_STAGE-extra/build_lib.sh"
# Build OS dependent query strings
# These have to be created after we know what OS we are building on.
BC_QUERY_STRINGS["pkgs"]="$PKG_TYPE pkgs"
BC_QUERY_STRINGS["repos"]="$PKG_TYPE repos"
BC_QUERY_STRINGS["ppas"]="$PKG_TYPE ppas"
BC_QUERY_STRINGS["build_pkgs"]="$PKG_TYPE build_pkgs"
BC_QUERY_STRINGS["raw_pkgs"]="$PKG_TYPE raw_pkgs"
BC_QUERY_STRINGS["os_pkgs"]="$PKG_TYPE $OS_TOKEN pkgs"
BC_QUERY_STRINGS["os_repos"]="$PKG_TYPE $OS_TOKEN repos"
BC_QUERY_STRINGS["os_ppas"]="$PKG_TYPE $OS_TOKEN ppas"
BC_QUERY_STRINGS["os_build_pkgs"]="$PKG_TYPE $OS_TOKEN build_pkgs"
BC_QUERY_STRINGS["os_raw_pkgs"]="$PKG_TYPE $OS_TOKEN raw_pkgs"
{
# Check to make sure our required commands are installed.
for cmd in sudo chroot mkisofs ruby; do
which "$cmd" &>/dev/null || \
die 1 "Please install $cmd before trying to build Crowbar."
done
# Make sure only one instance of the ISO build runs at a time.
# Otherwise you can easily end up with a corrupted image.
debug "Acquiring the build lock."
flock 65
# Figure out what our current branch is, in case we need to merge
# other branches in to the iso to create our build.
CURRENT_BRANCH="$(in_repo git symbolic-ref HEAD)" || \
die "Not on a branch we can build from!"
CURRENT_BRANCH=${CURRENT_BRANCH##*/}
[[ $CURRENT_BRANCH ]] || die "Not on a branch we can merge from!"
# Check and see if our local build repository is a git repo. If it is,
# we may need to do the same sort of merging in it that we might do in the
# Crowbar repository.
if [[ -d $CACHE_DIR/.git ]] && \
(cd "$CACHE_DIR"; branch_exists master) then
CURRENT_CACHE_BRANCH=master
fi
# Parse our options.
while [[ $1 ]]; do
case $1 in
# Merge a list of branches into a throwaway branch with the
# current branch as a baseline before starting the rest of the
# build process. This makes it easier to spin up iso images
# with local changes without having to manually merge those
# changes in with any other branches of interest first.
# This code takes heavy advantage of the lightweight nature of
# git branches and takes care to leave uncomitted changes in place.
-m|--merge)
shift
# Loop through the rest of the arguments, as long as they
# do not start with a -.
while [[ $1 && ! ( $1 = -* ) ]]; do
# Check to make sure that this argument refers to a branch
# in the crowbar git tree. Die if it does not.
in_repo branch_exists "$1" || die "$1 is not a git branch!"
# If we have not already created a throwaway branch to
# merge these branches into, do so now. If we have
# uncomitted changes that need to be stashed, do so here.
if [[ ! $THROWAWAY_BRANCH ]]; then
THROWAWAY_BRANCH="build-throwaway-$$-$RANDOM"
REPO_PWD="$PWD"
if [[ ! $(in_repo git status) =~ working\ directory\ clean ]]; then
THROWAWAY_STASH=$(in_repo git stash create)
in_repo git checkout -f .
fi
in_repo git checkout -b "$THROWAWAY_BRANCH"
fi
# Merge the requested branch into the throwaway branch.
# Die if the merge failed -- there must have been a
# conflict, and the user needs to fix it up.
in_repo git merge "$1" || \
die "Merge of $1 failed, fix things up and continue"
shift
done
;;
# Force an update of the cache
update-cache|--update-cache) shift;
need_update=true
while [[ $1 && $1 != -* ]]; do
is_barclamp "$1" || \
die "Cannot update non-barclamp $1."
FORCE_BARCLAMP_UPDATE["$1"]=true
unset need_update || : &>/dev/null
shift
done;;
# Pull in additional barclamps.
--barclamps)
shift
while [[ $1 && $1 != -* ]]; do
BARCLAMPS+=("$1")
shift
done;;
--test)
NEED_TEST=true
test_params=()
shift
while [[ $1 && $1 != -* ]]; do
test_params+=("$1")
shift
done;;
--ci)
[[ $CI_BARCLAMP ]] && die "Already asked to perform CI on $CI_BARCLAMP, and we can only do one at a time."
shift
is_barclamp "$1" || \
die "$1 is not a barclamp, cannot perform CI testing on it."
CI_BARCLAMP="$1"
shift
if [[ $1 && $1 != -* ]]; then
in_ci_barclamp branch_exists "$1" || \
die "$1 is not a branch in $CI_BARCLAMP, cannot perform integration testing!"
CI_BRANCH="$1"
shift
else
CI_BRANCH="master"
fi;;
--shrink)
type shrink_iso >&/dev/null || \
die "The build system does not know how to shrink $OS_TO_STAGE"
SHRINK_ISO=true
shift;;
--generate-minimal-install)
type generate_minimal_install &>/dev/null || \
die "The build system does not know how to generate a minimal install list for $OS_TO_STAGE!"
GENERATE_MINIMAL_INSTALL=true
shift;;
--no-cache-update) shift; ALLOW_CACHE_UPDATE=false;;
--no-iso) shift; NO_GENERATE_ISO=true;;
*) die "Unknown command line parameter $1";;
esac
done
# If we stached changes to the crowbar repo, apply them now.
[[ $THROWAWAY_STASH ]] && in_repo git stash apply "$THROWAWAY_STASH"
# Finalize where we expect to find our caches and out chroot.
# If they were set in one of the conf files, don't touch them.
# The directory we perform a minimal install into if we need
# to refresh our gem or pkg caches
[[ $CHROOT ]] || CHROOT="$CACHE_DIR/$OS_TOKEN/chroot"
# Make sure that the $OS_TOKEN directory exist.
mkdir -p "$CACHE_DIR/$OS_TOKEN"
# The directory we will stage the build into.
[[ $BUILD_DIR ]] || \
BUILD_DIR="$CACHE_DIR/$OS_TOKEN/build"
# The directory that we will mount the OS .ISO on .
[[ $IMAGE_DIR ]] || \
IMAGE_DIR="$CACHE_DIR/$OS_TOKEN/image"
# Directory where we will look for our package lists
[[ $PACKAGE_LISTS ]] || PACKAGE_LISTS="$BUILD_DIR/extra/packages"
# Proxy Variables
[[ $USE_PROXY ]] || USE_PROXY=0
[[ $PROXY_HOST ]] || PROXY_HOST=""
[[ $PROXY_PORT ]] || PROXY_PORT=""
[[ $PROXY_USER ]] || PROXY_USER=""
[[ $PROXY_ESC_USER ]] || PROXY_ESC_USER=""
[[ $PROXY_PASSWORD ]] || PROXY_PASSWORD=""
# Version for ISO
[[ $VERSION ]] || VERSION="$(cd "$CROWBAR_DIR"; git describe --long --tags)-dev"
# Name of the built iso we will build
[[ $BUILT_ISO ]] || BUILT_ISO="crowbar-${VERSION}.iso"
if [[ $CI_BARCLAMP ]]; then
in_ci_barclamp git checkout -b ci-throwaway-branch || \
die "Could not check out throwaway branch for CI testing on $CI_BARCLAMP"
in_ci_barclamp git merge "$CI_BRANCH" || \
die "$CI_BRANCH does not merge cleanly in $CI_BARCLAMP. Please fix this before continuing"
if [[ $CI_BRANCH != master ]]; then
in_ci_barclamp git merge master || \
die "$CI_BRANCH does not merge cleanly into master on $CI_BARCLAMP. Please fix."
fi
NEED_TEST=true
test_params=("$CI_BARCLAMP")
fi
# If we were not passed a list of barclamps to include,
# pull in all of the ones declared as submodules.
[[ $BARCLAMPS ]] || BARCLAMPS=($(cd "$CROWBAR_DIR"
while read sha submod branch; do
[[ $submod = barclamps/* ]] || continue
[[ -f $submod/crowbar.yml ]] || \
echo "Cannot find crowbar.yml for $submod, exiting."
echo "${submod##*/}"
done < <(git submodule status))
)
if [[ $CI_BARCLAMP ]]; then
is_in "$CI_BARCLAMP" "${BARCLAMPS[@]}" || BARCLAMPS+=("$CI_BARCLAMP")
fi
# Pull in barclamp information
get_barclamp_info
# Make any directories we don't already have
for d in "$ISO_LIBRARY" "$ISO_DEST" "$IMAGE_DIR" "$BUILD_DIR" \
"$SLEDGEHAMMER_PXE_DIR" "$CHROOT"; do
mkdir -p "$d"
done
debug "Checking for Sledgehammer."
# Make sure Sledgehammer has already been built and pre-staged.
if ! [[ -f $SLEDGEHAMMER_DIR/bin/sledgehammer-tftpboot.tar.gz || \
-f $SLEDGEHAMMER_PXE_DIR/initrd0.img ]]; then
echo "Slegehammer TFTP image missing!"
echo "Please build Sledgehammer from $SLEDGEHAMMER_DIR before building Crowbar."
exit 1
fi
# Fetch the OS ISO if we need to.
[[ -f $ISO_LIBRARY/$ISO ]] || fetch_os_iso
# Start with a clean slate.
clean_dirs "$IMAGE_DIR" "$BUILD_DIR" "$CHROOT"
debug "Cleaning up any VCS cruft."
# Clean up any cruft that the editor may have left behind.
(for d in "$CROWBAR_DIR" "$CROWBAR_DIR/barclamps/"*; do
cd "$d"; $VCS_CLEAN_CMD
done)
# Make additional directories we will need.
for d in discovery extra/pkgs extra/files; do
mkdir -p "$BUILD_DIR/$d"
done
# Mount our ISO for the build process.
debug "Mounting $ISO"
sudo mount -t iso9660 -o loop "$ISO_LIBRARY/$ISO" "$IMAGE_DIR" || \
die "Could not mount $ISO"
debug "Indexing CD package pool."
index_cd_pool
# Copy over the Crowbar bits and their prerequisites
cp -r "$CROWBAR_DIR/extra"/* "$BUILD_DIR/extra"
cp -r "$CROWBAR_DIR/$OS_TOKEN-extra"/* "$BUILD_DIR/extra"
cp -r "$CROWBAR_DIR/change-image"/* "$BUILD_DIR"
# Add critical build meta information to build-info
echo "build-timestamp: $(date '+%F %T %z')" > "$BUILD_DIR/build-info"
echo "build-os: $OS_TOKEN" >>"$BUILD_DIR/build-info"
echo "build-os-iso: $ISO" >>"$BUILD_DIR/build-info"
echo "crowbar: $(get_rev "$CROWBAR_DIR")" >>"$BUILD_DIR/build-info"
# Make sure that all our barclamps are properly staged.
for bc in "${BARCLAMPS[@]}"; do
is_barclamp "$bc" || die "Cannot find barclamp $bc!"
debug "Staging $bc barclamp."
for cache in pkg gem raw_pkg file; do
checker="barclamp_${cache}_cache_needs_update"
updater="update_barclamp_${cache}_cache"
[[ $(type $checker) = "$checker is a function"* ]] || \
die "Asked to check $cache cache, but no checker function!"
[[ $(type $updater) = "$updater is a function"* ]] || \
die "Might need to update $cache cache, but no updater!"
if $checker "$bc"; then
[[ $ALLOW_CACHE_UPDATE = true ]] || \
die "Need up update $cache cache for $bc, but updates are disabled."
debug "Updating $cache cache for $bc"
[[ $cache =~ ^(pkg|gem)$ ]] && make_chroot
$updater "$bc"
fi
done
echo "barclamps/$bc: $(get_rev "$CROWBAR_DIR/barclamps/$bc")" >> "$BUILD_DIR/build-info"
done
# Once all our barclamps have had their packages staged, create tarballs of them.
mkdir -p "$BUILD_DIR/dell/barclamps"
"$CROWBAR_DIR/package_barclamp.sh" --destdir "$BUILD_DIR/dell/barclamps" \
--os "$OS_TOKEN" "${BARCLAMPS[@]}"
if [[ $ALLOW_CACHE_UPDATE != true && $CURRENT_CACHE_BRANCH ]]; then
echo "build-cache: $(get_rev "$CACHE_DIR")" >> "$BUILD_DIR/build-info"
fi
(cd "$BUILD_DIR"
find extra dell -type f -print | \
sort >> "build-info")
# Make sure we still provide the legacy ami location
(cd "$BUILD_DIR"; ln -sf extra/files/ami)
# Store off the version
echo "$VERSION" >> "$BUILD_DIR/dell/Version"
# Custom start-up in place
for f in "$CROWBAR_DIR"/*.json ; do
[[ -f $f ]] || continue
mkdir -p "$BUILD_DIR/extra/config"
cp "$f" "$BUILD_DIR/extra/config"
done
final_build_fixups
# Copy over the bits that Sledgehammer will look for.
debug "Copying over Sledgehammer bits"
# If we need to copy over a new Sledgehammer image, do so.
if [[ $SLEDGEHAMMER_DIR/bin/sledgehammer-tftpboot.tar.gz -nt \
$SLEDGEHAMMER_PXE_DIR/initrd0.img ]]; then
( cd $SLEDGEHAMMER_PXE_DIR
debug "Extracting new Sledgehammer TFTP boot image"
rm -rf .
cd ..
tar xzf "$SLEDGEHAMMER_DIR/bin/sledgehammer-tftpboot.tar.gz"
rm -f "$SLEDGEHAMMER_DIR/bin/sledgehammer-tftpboot.tar.gz"
)
fi
cp -a "$SLEDGEHAMMER_PXE_DIR"/* "$BUILD_DIR/discovery"
# Make our image
debug "Creating new ISO"
# Find files and directories that mkisofs will complain about.
# Do just top-level overlapping directories for now.
for d in $(cat <(cd "$BUILD_DIR"; find -maxdepth 1 -type d) \
<(cd "$IMAGE_DIR"; find -maxdepth 1 -type d) | \
sort |uniq -d); do
[[ $d = . ]] && continue
d=${d#./}
# Copy contents of the found directories into $BUILD_DIR, taking care
# to not clobber existing files.
mkdir -p "$BUILD_DIR/$d"
chmod u+wr "$BUILD_DIR/$d"
# We could also use cp -n, but rhel5 and centos5 do not understand it.
rsync -rl --ignore-existing --inplace "$IMAGE_DIR/$d/." "$BUILD_DIR/$d/."
chmod -R u+wr "$BUILD_DIR/$d"
# Bind mount an empty directory on the $IMAGE_DIR instance.
sudo mount -t tmpfs -o size=1K tmpfs "$IMAGE_DIR/$d"
done
mkdir -p "$BUILD_DIR/isolinux"
chmod u+wr "$BUILD_DIR/isolinux"
rsync -rl --ignore-existing --inplace \
"$IMAGE_DIR/isolinux/." "$BUILD_DIR/isolinux/."
chmod -R u+wr "$BUILD_DIR/isolinux"
sudo mount -t tmpfs -o size=1K tmpfs "$IMAGE_DIR/isolinux"
[[ $SHRINK_ISO && ! $GENERATE_MINIMAL_ISO ]] && shrink_iso
# Make a file list and a link list.
( cd $BUILD_DIR
find . -type f | \
sort > crowbar_files.list
find . -type l | \
xargs ls -ld | \
awk '{ print $8 " " $10 }' | \
sort > crowbar_links.list
)
( cd $IMAGE_DIR
find . -type f | \
sort >> $BUILD_DIR/crowbar_files.list
find . -type l | \
xargs ls -ld | \
awk '{ print $8 " " $10 }' | \
sort >> $BUILD_DIR/crowbar_links.list
)
# Make an ISO
build_iso || die "There was a problem building our ISO."
if [[ $GENERATE_MINIMAL_INSTALL = true ]]; then
if [[ ! -f "$CROWBAR_DIR/$OS_TOKEN-extra/minimal-install" ]]; then
if [[ ! -f "$HOME/admin-installed.list" ]]; then
SMOKETEST_ISO="$ISO_DEST/$BUILT_ISO"
test_iso admin-only
fi
[[ -f "$HOME/admin-installed.list" ]] || \
die "Could not generate minimal install list!"
mv "$HOME/admin-installed.list" \
"$CROWBAR_DIR/$OS_TOKEN-extra/minimal-install"
debug "Minimal install generated and saved to $CROWBAR_DIR/$OS_TOKEN-extra/minimal-install."
debug "Please commit it and rerun the build with --shrink."
fi
fi
echo "$(date '+%F %T %z'): Image at $ISO_DEST/$BUILT_ISO"
if [[ $NEED_TEST = true ]]; then
echo "$(date '+%F %T %z'): Testing new iso"
SMOKETEST_ISO="$ISO_DEST/$BUILT_ISO"
if test_iso "${test_params[@]}"; then
echo "$(date '+%F %T %z'): Test passed"
if [[ $CI_BARCLAMP ]]; then
in_ci_barclamp git checkout master && \
in_ci_barclamp git merge ci-throwaway-branch || \
die "Could not merge $CI_BRANCH into master for $CI_BARCLAMP"
in_repo git add "barclamps/$CI_BARCLAMP" && \
in_repo git commit -m "Jenkins tested branch $CI_BRANCH of $CI_BARCLAMP on $(date '+%F %T %z'), and found it good." || \
die "Could not update submodule reference for $CI_BARCLAMP"
fi
else
[[ $CI_BARCLAMP ]] && \
echo "$(date '+%F %T %z'): Continuous integration test on $CI_BARCLAMP failed."
die "Test failed."
fi
fi
echo "$(date '+%F %T %z'): Finished."
} 65> /tmp/.build_crowbar.lock