Do not restrict VMs to a single config

Also "allows" full-system build without install.
This commit is contained in:
Geoffrey Frogeye 2023-11-30 18:59:50 +01:00
parent 3806e023f6
commit 224f769324
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
8 changed files with 80 additions and 17 deletions

View file

@ -7,10 +7,10 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
# Parse arguments
function help {
echo "Usage: $0 [-e] [-h] profile"
echo "Usage: $0 [-h|-e] profile"
echo
echo "Arguments:"
echo " file: OS/disk profile to use"
echo " profile: OS/disk profile to use"
echo
echo "Options:"
echo " -h: Display this help message."
@ -18,7 +18,7 @@ function help {
}
disko_mode=mount
while getopts "e" OPTION
while getopts "he" OPTION
do
case "$OPTION" in
h)