mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Catch missing disk configuration early
This commit is contained in:
parent
31c02550d3
commit
d48dc74e95
1 changed files with 5 additions and 6 deletions
11
quickemu
11
quickemu
|
@ -54,12 +54,7 @@ function vm_boot() {
|
|||
echo "Starting ${VM}"
|
||||
echo " - QEMU: ${QEMU} v${QEMU_VER}"
|
||||
|
||||
if [ -z "${disk_img}" ]; then
|
||||
echo "ERROR! No disk_img defined."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
readonly disk_min_size=395264
|
||||
readonly disk_min_size=$((197632 * 8))
|
||||
if [ -z "${disk}" ]; then
|
||||
disk="64G"
|
||||
fi
|
||||
|
@ -240,6 +235,10 @@ fi
|
|||
|
||||
if [ -n "${VM}" ] || [ -e "${VM}" ]; then
|
||||
source "${VM}"
|
||||
if [ -z "${disk_img}" ]; then
|
||||
echo "ERROR! No disk_img defined."
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "ERROR! Virtual machine configuration not found."
|
||||
usage
|
||||
|
|
Loading…
Reference in a new issue