# Check
if [ -e "$image" ]; then
- echo "error: $image already exists."
- exit 1
+ kvm_user_config overwrite n "WARNING: $image already exists. Overwrite the installation? (y/n)"
+
+ if [ "$overwrite" != "y" ]; then
+ exit 1
+ fi
fi
# Ensure base folder exists
kvmx_install_package $req
done
- echo "Creating image..."
- #kvmx_sudo_run dd if=/dev/zero of=$image bs=$size count=1
- kvmx_sudo_run qemu-img create -f raw $image $size
- device="`sudo losetup --find --show $image`"
+ if [ ! -z "$image_type" ] || [ "$image_type" == "file" ]; then
+ echo "Creating image file..."
+ #kvmx_sudo_run dd if=/dev/zero of=$image bs=$size count=1
+ kvmx_sudo_run qemu-img create -f raw $image $size
+ device="`sudo losetup --find --show $image`"
+ else if [ -e "$image" ]; then
+ device="$image"
+ else
+ echo "$BASENAME: image device $image does not exist"
+ fi
echo "Partitioning image at $device..."
kvmx_sudo_run parted -s -- $device mklabel gpt
# Where datafiles are stored: just set this if you know what you're doing
#datadir="$HOME/.local/share/kvmx/$VM"
+# Image type: file or device (kvmx-create only)
+image_type="file"
+
# Image size
size="10G"