summaryrefslogtreecommitdiff
path: root/run-bootstrap-in-chroot
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-01-26 10:04:24 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-01-26 10:04:24 +0000
commitc4054a92be8bfd84de3140520f55ec87237db1b4 (patch)
tree5a034cc36e79a2bb733075eabfbba401ff34627d /run-bootstrap-in-chroot
parent12d11775351e5b07dddeae4220712d2e8d137568 (diff)
downloadmorph-c4054a92be8bfd84de3140520f55ec87237db1b4.tar.gz
scripts: use true/false instead of yes/no
Diffstat (limited to 'run-bootstrap-in-chroot')
-rwxr-xr-xrun-bootstrap-in-chroot16
1 files changed, 8 insertions, 8 deletions
diff --git a/run-bootstrap-in-chroot b/run-bootstrap-in-chroot
index 2cd74cea..7e6f0616 100755
--- a/run-bootstrap-in-chroot
+++ b/run-bootstrap-in-chroot
@@ -19,11 +19,11 @@ export LC_ALL=C
if [ "x$1" = x ]
then
dir="squeeze-chroot"
- snapshot=no
+ snapshot=false
else
mkdir -p "$1"
dir="$1/squeeze-chroot"
- snapshot=yes
+ snapshot=true
snapshotdir="$1"
fi
mirror="http://192.168.1.185/debian"
@@ -33,7 +33,7 @@ unmount_virtual "$dir"
rm -rf "$dir"
mkdir "$dir"
-if [ "$snapshot" = yes ] && [ -e "$snapshotdir/squeeze.tar" ]
+if "$snapshot" && [ -e "$snapshotdir/squeeze.tar" ]
then
tar -C "$dir" -xf "$snapshotdir/squeeze.tar"
else
@@ -43,7 +43,7 @@ gawk,bison,python,autoconf,autopoint,automake,gettext,libtool,\
help2man,texinfo,sudo,qemu-utils,parted,kpartx,mbr,extlinux \
squeeze "$dir" "$mirror"
- if [ "$snapshot" = yes ]
+ if "$snapshot"
then
tar -caf "$snapshotdir/squeeze.tar" -C "$dir" .
fi
@@ -56,12 +56,12 @@ cat <<EOF > "$dir/etc/hosts"
EOF
# Unpack existing snapshot, or run pass1 of bootstrap and then make snapshot.
-if [ "$snapshot" = yes ] && [ -e "$snapshotdir/pass1-snapshot.tar" ]
+if "$snapshot" && [ -e "$snapshotdir/pass1-snapshot.tar" ]
then
tar -C "$dir" -xf "$snapshotdir/pass1-snapshot.tar"
else
if mount_virtual "$dir" &&
- chroot "$dir" bash -x baserock-bootstrap yes &&
+ chroot "$dir" bash -x baserock-bootstrap true &&
unmount_virtual "$dir"
then
:
@@ -70,7 +70,7 @@ else
exit 1
fi
- if [ "$snapshot" = yes ]
+ if "$snapshot"
then
tar -C "$dir" -caf "$snapshotdir/pass1-snapshot.tar" .
fi
@@ -86,7 +86,7 @@ cp -rl "$HOME/baserock/gits" "$dir/tree/baserock/gits"
cp baserock-bootstrap "$dir/."
sed 's,^.*/,http://192.168.1.185/lfs/,' wget-list > "$dir/wget-list"
if mount_virtual "$dir" &&
- chroot "$dir" bash -x baserock-bootstrap no &&
+ chroot "$dir" bash -x baserock-bootstrap false &&
unmount_virtual "$dir"
then
: