IBM / StorageScaleVagrant

Example scripts and configuration files to install and configure IBM Storage Scale in a Vagrant environment
Apache License 2.0
16 stars 19 forks source link

Minor typo in usage() in install/common-preamble.sh #30

Closed dannyk96 closed 2 years ago

dannyk96 commented 2 years ago

install/common-preamble.sh says

  echo "Usage: $0 <provider> <spectrumscale-version>"
  echo "Supported <provider>:"
  echo "  AWS"
  echo "  Virtualbox"
  echo "  libvirt"
  echo "<spectrumscale-version> is the full version number like 5.1.5.0"
}

However putting "Virtualbox" as an argument fails as the test is:

  'AWS'|'VirtualBox'|'libvirt' )
    PROVIDER=$1
    ;;

ie a capital letter B

dannyk96 commented 2 years ago

error also acccurs in demo/script.sh