Unverified Commit bbd683b8 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

style: Quote variables (#325)

parent 52654864
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ set -Eeuo pipefail

# Docker environment variables

: "${BOOT_MODE:='legacy'}"  # Boot mode
: "${BOOT_MODE:="legacy"}"  # Boot mode

SECURE=""
BOOT_OPTS=""
+13 −13
Original line number Diff line number Diff line
@@ -3,12 +3,12 @@ set -Eeuo pipefail

# Docker environment variables

: "${DISK_IO:='native'}"          # I/O Mode, can be set to 'native', 'threads' or 'io_turing'
: "${DISK_FMT:=''}"            # Disk file format, can be set to "raw" or "qcow2" (default)
: "${DISK_FLAGS:=''}"             # Specifies the options for use with the qcow2 disk format
: "${DISK_CACHE:='none'}"         # Caching mode, can be set to 'writeback' for better performance
: "${DISK_DISCARD:='on'}"         # Controls whether unmap (TRIM) commands are passed to the host.
: "${DISK_ROTATION:='1'}"         # Rotation rate, set to 1 for SSD storage and increase for HDD
: "${DISK_IO:="native"}"          # I/O Mode, can be set to 'native', 'threads' or 'io_turing'
: "${DISK_FMT:=""}"            # Disk file format, can be set to "raw" or "qcow2" (default)
: "${DISK_FLAGS:=""}"             # Specifies the options for use with the qcow2 disk format
: "${DISK_CACHE:="none"}"         # Caching mode, can be set to 'writeback' for better performance
: "${DISK_DISCARD:="on"}"         # Controls whether unmap (TRIM) commands are passed to the host.
: "${DISK_ROTATION:="1"}"         # Rotation rate, set to 1 for SSD storage and increase for HDD

BOOT="$STORAGE/$BASE"
DRIVERS="$STORAGE/drivers.img"
@@ -449,14 +449,14 @@ else
  DISK_ALLOC="preallocation=falloc"
fi

: "${DISK2_SIZE:=''}"
: "${DISK3_SIZE:=''}"
: "${DISK4_SIZE:=''}"
: "${DISK2_SIZE:=""}"
: "${DISK3_SIZE:=""}"
: "${DISK4_SIZE:=""}"

: "${DEVICE:=''}"        # Docker variables to passthrough a block device, like /dev/vdc1.
: "${DEVICE2:=''}"
: "${DEVICE3:=''}"
: "${DEVICE4:=''}"
: "${DEVICE:=""}"        # Docker variables to passthrough a block device, like /dev/vdc1.
: "${DEVICE2:=""}"
: "${DEVICE3:=""}"
: "${DEVICE4:=""}"

if [ -n "$DEVICE" ]; then
  addDevice "userdata" "$DEVICE" "device" "1" "0xa" || exit $?
+2 −2
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@ set -Eeuo pipefail

# Docker environment variables

: "${GPU:='N'}"           # GPU passthrough
: "${DISPLAY:='none'}"  # Display type
: "${GPU:="N"}"           # GPU passthrough
: "${DISPLAY:="none"}"  # Display type

case "${DISPLAY,,}" in
  vnc)
+9 −9
Original line number Diff line number Diff line
@@ -3,18 +3,18 @@ set -Eeuo pipefail

# Docker environment variables

: "${DHCP:='N'}"
: "${HOST_PORTS:=''}"
: "${MAC:='82:cf:d0:5e:57:66'}"
: "${DHCP:="N"}"
: "${HOST_PORTS:=""}"
: "${MAC:="82:cf:d0:5e:57:66"}"

: "${VM_NET_DEV:=''}"
: "${VM_NET_TAP:='qemu'}"
: "${VM_NET_DEV:=""}"
: "${VM_NET_TAP:="qemu"}"
: "${VM_NET_MAC:="$MAC"}"
: "${VM_NET_HOST:='QEMU'}"
: "${VM_NET_HOST:="QEMU"}"

: "${DNSMASQ_OPTS:=''}"
: "${DNSMASQ:='/usr/sbin/dnsmasq'}"
: "${DNSMASQ_CONF_DIR:='/etc/dnsmasq.d'}"
: "${DNSMASQ_OPTS:=""}"
: "${DNSMASQ:="/usr/sbin/dnsmasq"}"
: "${DNSMASQ_CONF_DIR:="/etc/dnsmasq.d"}"

ADD_ERR="Please add the following setting to your container:"

+3 −3
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@ set -Eeuo pipefail

# Docker environment variables

: "${KVM:='Y'}"
: "${CPU_MODEL:='host'}"
: "${CPU_FEATURES:='+ssse3,+sse4.1,+sse4.2'}"
: "${KVM:="Y"}"
: "${CPU_MODEL:="host"}"
: "${CPU_FEATURES:="+ssse3,+sse4.1,+sse4.2"}"

[ "$ARCH" != "amd64" ] && KVM="N"

Loading