devstack_custom/tools/get_uec_image.sh

103 lines
2.3 KiB
Bash
Raw Normal View History

2011-10-25 20:45:26 +00:00
#!/bin/bash
# get_uec_image.sh - Prepare Ubuntu UEC images
CACHEDIR=${CACHEDIR:-/opt/stack/cache}
2011-10-25 20:45:26 +00:00
ROOTSIZE=${ROOTSIZE:-2000}
2011-10-31 18:59:55 +00:00
# Keep track of the current directory
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
TOP_DIR=`cd $TOOLS_DIR/..; pwd`
2011-11-05 21:55:15 +00:00
# exit on error to stop unexpected errors
set -o errexit
2011-10-25 20:45:26 +00:00
usage() {
echo "Usage: $0 - Fetch and prepare Ubuntu images"
2011-10-25 20:45:26 +00:00
echo ""
echo "$0 [-r rootsize] release imagefile [kernel]"
2011-10-25 20:45:26 +00:00
echo ""
echo "-r size - root fs size (min 2000MB)"
2011-10-25 20:45:26 +00:00
echo "release - Ubuntu release: jaunty - oneric"
2011-10-25 21:28:49 +00:00
echo "imagefile - output image file"
echo "kernel - output kernel"
2011-10-25 20:45:26 +00:00
exit 1
}
# Clean up any resources that may be in use
cleanup() {
set +o errexit
# Mop up temporary files
if [ -n "$IMG_FILE_TMP" -a -e "$IMG_FILE_TMP" ]; then
rm -f $IMG_FILE_TMP
fi
# Kill ourselves to signal any calling process
trap 2; kill -2 $$
}
while getopts hr: c; do
2011-10-25 20:45:26 +00:00
case $c in
h) usage
;;
r) ROOTSIZE=$OPTARG
;;
esac
done
shift `expr $OPTIND - 1`
if [[ ! "$#" -eq "2" && ! "$#" -eq "3" ]]; then
2011-10-25 20:45:26 +00:00
usage
fi
# Default args
DIST_NAME=$1
IMG_FILE=$2
2011-10-31 21:59:02 +00:00
IMG_FILE_TMP=`mktemp $IMG_FILE.XXXXXX`
KERNEL=$3
2011-10-25 20:45:26 +00:00
case $DIST_NAME in
oneiric) ;;
natty) ;;
maverick) ;;
lucid) ;;
*) echo "Unknown release: $DIST_NAME"
usage
;;
esac
trap cleanup SIGHUP SIGINT SIGTERM SIGQUIT EXIT
2011-11-05 21:55:15 +00:00
# Check dependencies
if [ ! -x "`which qemu-img`" -o -z "`dpkg -l | grep cloud-utils`" ]; then
2011-11-05 21:55:15 +00:00
# Missing KVM?
apt_get install qemu-kvm cloud-utils
2011-11-05 21:55:15 +00:00
fi
# Find resize script
RESIZE=`which resize-part-image || which uec-resize-image`
if [ -z "$RESIZE" ]; then
echo "resize tool from cloud-utils not found"
exit 1
fi
2011-10-25 20:45:26 +00:00
# Get the UEC image
UEC_NAME=$DIST_NAME-server-cloudimg-amd64
if [ ! -d $CACHEDIR ]; then
mkdir -p $CACHEDIR/$DIST_NAME
2011-10-25 20:45:26 +00:00
fi
if [ ! -e $CACHEDIR/$DIST_NAME/$UEC_NAME.tar.gz ]; then
(cd $CACHEDIR/$DIST_NAME && wget -N http://uec-images.ubuntu.com/$DIST_NAME/current/$UEC_NAME.tar.gz)
(cd $CACHEDIR/$DIST_NAME && tar Sxvzf $UEC_NAME.tar.gz)
2011-10-25 20:45:26 +00:00
fi
$RESIZE $CACHEDIR/$DIST_NAME/$UEC_NAME.img ${ROOTSIZE} $IMG_FILE_TMP
mv $IMG_FILE_TMP $IMG_FILE
2011-11-01 20:46:14 +00:00
# Copy kernel to destination
if [ -n "$KERNEL" ]; then
cp -p $CACHEDIR/$DIST_NAME/*-vmlinuz-virtual $KERNEL
fi
2011-10-31 21:59:02 +00:00
trap - SIGHUP SIGINT SIGTERM SIGQUIT EXIT