Skip to content

Commit

Permalink
Shellcheck fixes for environment folder
Browse files Browse the repository at this point in the history
Signed-off-by: Judy Ng <[email protected]>
  • Loading branch information
judysng committed Jan 17, 2024
1 parent e5b38eb commit e323a7a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ function info() {
}

function help() {
local -- cmd=$(basename "$0")
local -- cmd
cmd=$(basename "$0")
cat <<EOF
Usage: ${cmd} [OPTION]...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ function info() {
}

function help() {
local -- cmd=$(basename "$0")
local -- cmd
cmd=$(basename "$0")
cat <<EOF
Usage: ${cmd} [OPTION]...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ LVM_PATH="/dev/${LVM_VG_NAME}/${LVM_NAME}"
LVM_ACTIVE_STATE="a"
FS_TYPE="ext4"
MOUNT_OPTIONS="noatime,nodiratime"
# cfn_ephemeral_dir is set in the environment by cfnconfig sourcing
# shellcheck disable=SC2154 # cfn_ephemeral_dir is set in the environment by cfnconfig sourcing
INPUT_MOUNTPOINT="${cfn_ephemeral_dir}"

function log {
SCRIPT=$(basename "$0")
MESSAGE="$1"
echo "ParallelCluster - ${MESSAGE}"
}
Expand Down Expand Up @@ -73,7 +72,7 @@ function print_block_device_mapping {
function check_instance_store {
if ls /dev/nvme* >& /dev/null; then
IS_NVME=1
MAPPINGS=$(realpath --relative-to=/dev/ -P /dev/disk/by-id/nvme*Instance_Storage* | grep -v "*Instance_Storage*" | uniq)
MAPPINGS=$(realpath --relative-to=/dev/ -P /dev/disk/by-id/nvme*Instance_Storage* | grep -v "Instance_Storage" | uniq)
else
IS_NVME=0
set_imds_token
Expand Down

0 comments on commit e323a7a

Please sign in to comment.