qubes-linux-template-builder/cleanup_image
Marek Marczykowski 7054456eb7 Create template with plain root.img without partitions (#118)
Additionaly provide clean-volatile.img
2011-03-24 13:04:43 +01:00

27 lines
396 B
Bash
Executable File

#!/bin/sh
IMG=$1
if ! [ $# -eq 1 ]; then
echo "usage $0 <img_file_name>"
exit 1
fi
if ! [ -f $IMG ]; then
echo $IMG does not exist
exit 1
fi
ls -als $IMG
mount -o loop $IMG mnt || exit 1
INSTALLDIR=`pwd`/mnt/
yum clean packages --installroot=$INSTALLDIR
dd if=/dev/zero of=mnt/fillme bs=1M
sync
rm mnt/fillme
umount mnt
cp --sparse=always $IMG $IMG.new
mv $IMG.new $IMG
ls -als $IMG