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

style: Quote variables (#323)

parent 0f94f9dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,4 +11,4 @@ jobs:
      - name: Run ShellCheck
        uses: ludeeus/action-shellcheck@master
env:
        SHELLCHECK_OPTS: -x --source-path=src -e SC2001 -e SC2223 -e SC2034 -e SC2064 -e SC2317 -e SC2153
        SHELLCHECK_OPTS: -x --source-path=src -e SC2001 -e SC2034 -e SC2064 -e SC2317 -e SC2153
+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)
+12 −12
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'}

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

: ${DNSMASQ_OPTS:=''}
: ${DNSMASQ:='/usr/sbin/dnsmasq'}
: ${DNSMASQ_CONF_DIR:='/etc/dnsmasq.d'}
: "${DHCP:='N'}"
: "${HOST_PORTS:=''}"
: "${MAC:='82:cf:d0:5e:57:66'}"

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

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

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

Loading