#!/bin/sh
#
# tar the disk image
#
. ../config

rm -f kubuntu8.tar.gz
cd $DISK_IMAGE
# Update checksum
find . -type f -print0 | xargs -0 md5sum >md5sum.txt
tar cfz $CWD/kubuntu8.tar.gz .
cd $CWD
ls -l kubuntu8.tar.gz
