Add map_nbd function
This commit is contained in:
parent
2567c81b27
commit
dccd6b923e
3 changed files with 93 additions and 58 deletions
|
@ -239,26 +239,35 @@ rm -f $VM_DIR/disk
|
||||||
# Create our instance fs
|
# Create our instance fs
|
||||||
qemu-img create -f qcow2 -b $VM_IMAGE disk
|
qemu-img create -f qcow2 -b $VM_IMAGE disk
|
||||||
|
|
||||||
# Make sure we have nbd-ness
|
# Finds the next available NBD device
|
||||||
modprobe nbd max_part=63
|
# Exits script if error connecting or none free
|
||||||
|
# map_nbd image
|
||||||
# Set up nbd
|
# returns full nbd device path
|
||||||
for i in `seq 0 15`; do
|
function map_nbd {
|
||||||
|
for i in `seq 0 15`; do
|
||||||
if [ ! -e /sys/block/nbd$i/pid ]; then
|
if [ ! -e /sys/block/nbd$i/pid ]; then
|
||||||
NBD=/dev/nbd$i
|
NBD=/dev/nbd$i
|
||||||
# Connect to nbd and wait till it is ready
|
# Connect to nbd and wait till it is ready
|
||||||
qemu-nbd -c $NBD disk
|
qemu-nbd -c $NBD $1
|
||||||
if ! timeout 60 sh -c "while ! [ -e ${NBD}p1 ]; do sleep 1; done"; then
|
if ! timeout 60 sh -c "while ! [ -e ${NBD}p1 ]; do sleep 1; done"; then
|
||||||
echo "Couldn't connect $NBD"
|
echo "Couldn't connect $NBD"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
if [ -z "$NBD" ]; then
|
if [ -z "$NBD" ]; then
|
||||||
echo "No free NBD slots"
|
echo "No free NBD slots"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
echo $NBD
|
||||||
|
}
|
||||||
|
|
||||||
|
# Make sure we have nbd-ness
|
||||||
|
modprobe nbd max_part=63
|
||||||
|
|
||||||
|
# Set up nbd
|
||||||
|
NBD=`map_nbd disk`
|
||||||
NBD_DEV=`basename $NBD`
|
NBD_DEV=`basename $NBD`
|
||||||
|
|
||||||
# Mount the instance
|
# Mount the instance
|
||||||
|
|
|
@ -10,6 +10,9 @@ if [ ! "$#" -eq "1" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Set up nbd
|
||||||
|
modprobe nbd max_part=63
|
||||||
|
|
||||||
# Echo commands
|
# Echo commands
|
||||||
set -o xtrace
|
set -o xtrace
|
||||||
|
|
||||||
|
@ -43,30 +46,42 @@ STACKSH_PARAMS=${STACKSH_PARAMS:-}
|
||||||
# Option to use the version of devstack on which we are currently working
|
# Option to use the version of devstack on which we are currently working
|
||||||
USE_CURRENT_DEVSTACK=${USE_CURRENT_DEVSTACK:-1}
|
USE_CURRENT_DEVSTACK=${USE_CURRENT_DEVSTACK:-1}
|
||||||
|
|
||||||
# Set up nbd
|
|
||||||
modprobe nbd max_part=63
|
|
||||||
NBD=${NBD:-/dev/nbd9}
|
|
||||||
NBD_DEV=`basename $NBD`
|
|
||||||
|
|
||||||
# clean install
|
# clean install
|
||||||
if [ ! -r $CACHEDIR/$DIST_NAME-base.img ]; then
|
if [ ! -r $CACHEDIR/$DIST_NAME-base.img ]; then
|
||||||
$TOOLS_DIR/get_uec_image.sh $DIST_NAME $CACHEDIR/$DIST_NAME-base.img
|
$TOOLS_DIR/get_uec_image.sh $DIST_NAME $CACHEDIR/$DIST_NAME-base.img
|
||||||
# # copy kernel modules...
|
|
||||||
# # NOTE(ja): is there a better way to do this?
|
|
||||||
# cp -pr /lib/modules/`uname -r` $CACHEDIR/$DIST_NAME-base/lib/modules
|
|
||||||
# # a simple password - pass
|
|
||||||
# echo root:pass | chroot $CACHEDIR/$DIST_NAME-base chpasswd
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# prime image with as many apt/pips as we can
|
# Finds the next available NBD device
|
||||||
if [ ! -r $CACHEDIR/$DIST_NAME-dev.img ]; then
|
# Exits script if error connecting or none free
|
||||||
cp -p $CACHEDIR/$DIST_NAME-base.img $CACHEDIR/$DIST_NAME-dev.img
|
# map_nbd image
|
||||||
|
# returns full nbd device path
|
||||||
qemu-nbd -c $NBD $CACHEDIR/$DIST_NAME-dev.img
|
function map_nbd {
|
||||||
if ! timeout 60 sh -c "while ! [ -e /sys/block/$NBD_DEV/pid ]; do sleep 1; done"; then
|
for i in `seq 0 15`; do
|
||||||
|
if [ ! -e /sys/block/nbd$i/pid ]; then
|
||||||
|
NBD=/dev/nbd$i
|
||||||
|
# Connect to nbd and wait till it is ready
|
||||||
|
qemu-nbd -c $NBD $1
|
||||||
|
if ! timeout 60 sh -c "while ! [ -e ${NBD}p1 ]; do sleep 1; done"; then
|
||||||
echo "Couldn't connect $NBD"
|
echo "Couldn't connect $NBD"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if [ -z "$NBD" ]; then
|
||||||
|
echo "No free NBD slots"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo $NBD
|
||||||
|
}
|
||||||
|
|
||||||
|
# prime image with as many apt/pips as we can
|
||||||
|
DEV_FILE=$CACHEDIR/$DIST_NAME-dev.img
|
||||||
|
DEV_FILE_TMP=`mktemp $DEV_FILE.XXXXXX`
|
||||||
|
if [ ! -r $DEV_FILE ]; then
|
||||||
|
cp -p $CACHEDIR/$DIST_NAME-base.img $DEV_FILE_TMP
|
||||||
|
|
||||||
|
NBD=`map_nbd $DEV_FILE_TMP`
|
||||||
MNTDIR=`mktemp -d --tmpdir mntXXXXXXXX`
|
MNTDIR=`mktemp -d --tmpdir mntXXXXXXXX`
|
||||||
mount -t ext4 ${NBD}p1 $MNTDIR
|
mount -t ext4 ${NBD}p1 $MNTDIR
|
||||||
cp -p /etc/resolv.conf $MNTDIR/etc/resolv.conf
|
cp -p /etc/resolv.conf $MNTDIR/etc/resolv.conf
|
||||||
|
@ -82,7 +97,8 @@ if [ ! -r $CACHEDIR/$DIST_NAME-dev.img ]; then
|
||||||
chroot $MNTDIR chown stack $DEST
|
chroot $MNTDIR chown stack $DEST
|
||||||
|
|
||||||
# a simple password - pass
|
# a simple password - pass
|
||||||
echo stack:$ROOT_PASSWORD | chroot $MNTDIR chpasswd
|
echo stack:pass | chroot $MNTDIR chpasswd
|
||||||
|
echo root:$ROOT_PASSWORD | chroot $MNTDIR chpasswd
|
||||||
|
|
||||||
# and has sudo ability (in the future this should be limited to only what
|
# and has sudo ability (in the future this should be limited to only what
|
||||||
# stack requires)
|
# stack requires)
|
||||||
|
@ -91,27 +107,29 @@ if [ ! -r $CACHEDIR/$DIST_NAME-dev.img ]; then
|
||||||
umount $MNTDIR
|
umount $MNTDIR
|
||||||
rmdir $MNTDIR
|
rmdir $MNTDIR
|
||||||
qemu-nbd -d $NBD
|
qemu-nbd -d $NBD
|
||||||
|
mv $DEV_FILE_TMP $DEV_FILE
|
||||||
fi
|
fi
|
||||||
|
rm -f $DEV_FILE_TMP
|
||||||
|
|
||||||
# clone git repositories onto the system
|
# clone git repositories onto the system
|
||||||
# ======================================
|
# ======================================
|
||||||
|
|
||||||
|
IMG_FILE_TMP=`mktemp $IMG_FILE.XXXXXX`
|
||||||
|
|
||||||
if [ ! -r $IMG_FILE ]; then
|
if [ ! -r $IMG_FILE ]; then
|
||||||
qemu-nbd -c $NBD $CACHEDIR/$DIST_NAME-dev.img
|
NBD=`map_nbd $DEV_FILE`
|
||||||
if ! timeout 60 sh -c "while ! [ -e ${NBD}p1 ]; do sleep 1; done"; then
|
|
||||||
echo "Couldn't connect $NBD"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Pre-create the image file
|
# Pre-create the image file
|
||||||
# FIXME(dt): This should really get the partition size to
|
# FIXME(dt): This should really get the partition size to
|
||||||
# pre-create the image file
|
# pre-create the image file
|
||||||
dd if=/dev/zero of=$IMG_FILE bs=1 count=1 seek=$((2*1024*1024*1024))
|
dd if=/dev/zero of=$IMG_FILE_TMP bs=1 count=1 seek=$((2*1024*1024*1024))
|
||||||
# Create filesystem image for RAM disk
|
# Create filesystem image for RAM disk
|
||||||
dd if=${NBD}p1 of=$IMG_FILE bs=1M
|
dd if=${NBD}p1 of=$IMG_FILE_TMP bs=1M
|
||||||
|
|
||||||
qemu-nbd -d $NBD
|
qemu-nbd -d $NBD
|
||||||
|
mv $IMG_FILE_TMP $IMG_FILE
|
||||||
fi
|
fi
|
||||||
|
rm -f $IMG_FILE_TMP
|
||||||
|
|
||||||
MNTDIR=`mktemp -d --tmpdir mntXXXXXXXX`
|
MNTDIR=`mktemp -d --tmpdir mntXXXXXXXX`
|
||||||
mount -t ext4 -o loop $IMG_FILE $MNTDIR
|
mount -t ext4 -o loop $IMG_FILE $MNTDIR
|
||||||
|
|
|
@ -111,25 +111,33 @@ if [ $ROOTSIZE -gt 2000 ]; then
|
||||||
qemu-img resize $IMG_FILE_TMP +$((ROOTSIZE - 2000))M
|
qemu-img resize $IMG_FILE_TMP +$((ROOTSIZE - 2000))M
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set up nbd
|
# Finds the next available NBD device
|
||||||
modprobe nbd max_part=63
|
# Exits script if error connecting or none free
|
||||||
for i in `seq 1 15`; do
|
# map_nbd image
|
||||||
|
# returns full nbd device path
|
||||||
|
function map_nbd {
|
||||||
|
for i in `seq 0 15`; do
|
||||||
if [ ! -e /sys/block/nbd$i/pid ]; then
|
if [ ! -e /sys/block/nbd$i/pid ]; then
|
||||||
NBD=/dev/nbd$i
|
NBD=/dev/nbd$i
|
||||||
# Connect to nbd and wait till it is ready
|
# Connect to nbd and wait till it is ready
|
||||||
qemu-nbd -c $NBD $IMG_FILE_TMP
|
qemu-nbd -c $NBD $1
|
||||||
if ! timeout 60 sh -c "while ! [ -e ${NBD}p1 ]; do sleep 1; done"; then
|
if ! timeout 60 sh -c "while ! [ -e ${NBD}p1 ]; do sleep 1; done"; then
|
||||||
echo "Couldn't connect $NBD"
|
echo "Couldn't connect $NBD"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
if [ -z "$NBD" ]; then
|
if [ -z "$NBD" ]; then
|
||||||
echo "No free NBD slots"
|
echo "No free NBD slots"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
NBD_DEV=`basename $NBD`
|
echo $NBD
|
||||||
|
}
|
||||||
|
|
||||||
|
# Set up nbd
|
||||||
|
modprobe nbd max_part=63
|
||||||
|
NBD=`map_nbd $IMG_FILE_TMP`
|
||||||
|
|
||||||
# Resize partition 1 to full size of the disk image
|
# Resize partition 1 to full size of the disk image
|
||||||
echo "d
|
echo "d
|
||||||
|
|
Loading…
Reference in a new issue