style: Quote variables (#565)

This commit is contained in:
Kroese
2024-01-14 16:01:15 +01:00
committed by GitHub
parent 893a013ae9
commit 1fc9c56c8f
8 changed files with 43 additions and 43 deletions

View File

@@ -11,15 +11,15 @@ trap 'error "Status $? while: $BASH_COMMAND (line $LINENO/$BASH_LINENO)"' ERR
# Docker environment variables
: "${TZ:=''}" # System local timezone
: "${DEBUG:='N'}" # Disable debugging mode
: "${COUNTRY:=''}" # Country code for mirror
: "${CONSOLE:='N'}" # Disable console mode
: "${ALLOCATE:=''}" # Preallocate diskspace
: "${ARGUMENTS:=''}" # Extra QEMU parameters
: "${CPU_CORES:='1'}" # Amount of CPU cores
: "${RAM_SIZE:='1G'}" # Maximum RAM amount
: "${DISK_SIZE:='16G'}" # Initial data disk size
: "${TZ:=""}" # System local timezone
: "${DEBUG:="N"}" # Disable debugging mode
: "${COUNTRY:=""}" # Country code for mirror
: "${CONSOLE:="N"}" # Disable console mode
: "${ALLOCATE:=""}" # Preallocate diskspace
: "${ARGUMENTS:=""}" # Extra QEMU parameters
: "${CPU_CORES:="1"}" # Amount of CPU cores
: "${RAM_SIZE:="1G"}" # Maximum RAM amount
: "${DISK_SIZE:="16G"}" # Initial data disk size
# Helper variables