2014-10-14 16:02:12 +00:00
|
|
|
#!/bin/bash -x
|
2014-04-24 13:42:18 +00:00
|
|
|
# vim: set ts=4 sw=4 sts=4 et :
|
|
|
|
|
2014-10-14 16:02:12 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Configurations
|
|
|
|
# ------------------------------------------------------------------------------
|
2014-10-14 21:04:42 +00:00
|
|
|
. ./umount_kill.sh >/dev/null
|
2014-10-14 16:02:12 +00:00
|
|
|
|
2014-10-14 20:30:12 +00:00
|
|
|
INSTALLDIR="$(readlink -m mnt)"
|
2014-10-14 21:04:42 +00:00
|
|
|
umount_kill "$INSTALLDIR" || :
|
2014-10-14 16:02:12 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Set debug display
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
if [ "$VERBOSE" -ge 2 -o "$DEBUG" == "1" ]; then
|
|
|
|
set -x
|
|
|
|
else
|
|
|
|
set -e
|
|
|
|
fi
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Execute any custom pre configuration scripts
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
customStep "$0" "pre"
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Force overwrite of an existing image for now if debootstrap did not seem to complete...
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
if [ -f "$IMG" ]; then
|
|
|
|
mount -o loop "$IMG" "$INSTALLDIR" || exit 1
|
|
|
|
|
|
|
|
# Assume a failed debootstrap installation if .prepare_debootstrap does not exist
|
|
|
|
if ! [ -f "$INSTALLDIR/tmp/.prepared_debootstrap" ]; then
|
|
|
|
echo "-> Failed Image file $IMG already exists, deleting..."
|
|
|
|
rm -f "$IMG"
|
|
|
|
# Allow qubes to be updated
|
|
|
|
elif [ -f "$INSTALLDIR/tmp/.prepared_qubes" ]; then
|
|
|
|
rm "$INSTALLDIR/tmp/.prepared_qubes"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Umount image; don't fail if its already umounted
|
2014-10-14 21:04:42 +00:00
|
|
|
umount_kill "$INSTALLDIR" || :
|
2014-10-14 16:02:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Execute any custom post configuration scripts
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
customStep "$0" "post"
|
2014-04-24 13:42:18 +00:00
|
|
|
|