mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Vars refactor: Tidy up initial vars layout
This commit is contained in:
parent
eebd5f0605
commit
dbd0885f82
1 changed files with 5 additions and 2 deletions
7
quickemu
7
quickemu
|
@ -311,22 +311,25 @@ function usage() {
|
|||
exit 1
|
||||
}
|
||||
|
||||
# Lowercase variables are used in the VM config file only
|
||||
guest_os=""
|
||||
iso=""
|
||||
driver_iso=""
|
||||
disk_img=""
|
||||
disk=""
|
||||
|
||||
DELETE=0
|
||||
ENABLE_EFI=0
|
||||
SNAPSHOT_ACTION=""
|
||||
SNAPSHOT_TAG=""
|
||||
STATUS_QUO=""
|
||||
VM=""
|
||||
|
||||
readonly LAUNCHER=$(basename $0)
|
||||
readonly DISK_MIN_SIZE=$((197632 * 8))
|
||||
readonly QEMU="/snap/bin/qemu-virgil"
|
||||
readonly QEMU_IMG="/snap/bin/qemu-virgil.qemu-img"
|
||||
readonly LAUNCHER=$(basename $0)
|
||||
|
||||
readonly VIRGIL_PATH="/snap/qemu-virgil/current"
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "${1}" in
|
||||
|
|
Loading…
Reference in a new issue