Fix shellcheck warnings

This commit is contained in:
Ayaz Salikhov
2021-05-20 15:38:03 +03:00
parent b80d53f652
commit 3734d39090
9 changed files with 49 additions and 44 deletions

View File

@@ -3,13 +3,13 @@
# Distributed under the terms of the Modified BSD License.
# Set default SoftLayer VM settings
: ${SOFTLAYER_CPU:=4}
: "${SOFTLAYER_CPU:=4}"
export SOFTLAYER_CPU
: ${SOFTLAYER_DISK_SIZE:=100}
: "${SOFTLAYER_DISK_SIZE:=100}"
export SOFTLAYER_DISK_SIZE
: ${SOFTLAYER_MEMORY:=4096}
: "${SOFTLAYER_MEMORY:=4096}"
export SOFTLAYER_MEMORY
: ${SOFTLAYER_REGION:=wdc01}
: "${SOFTLAYER_REGION:=wdc01}"
export SOFTLAYER_REGION
docker-machine create --driver softlayer "$@"