Fix typo in install-node script's usage message (#20664)

* Fix typo in install-node script's usage message

* Update lib/web/scripts/node-join/install.sh

Co-authored-by: Łukasz Kozłowski <lukasz.kozlowski@goteleport.com>
This commit is contained in:
Marco André Dinis 2023-01-25 11:04:39 +00:00 committed by GitHub
parent f42e5966bd
commit 927f52164f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ DB_INSTALL_MODE='{{.databaseInstallMode}}'
# usage message
# shellcheck disable=SC2086
usage() { echo "Usage: $(basename $0) [-v teleport_version] [-h target_hostname] [-p target_port> [-j join_token ] [-c ca_pin_hash]... [-q] [-l log_filename] [-a app_name] [-u app_uri] " 1>&2; exit 1; }
usage() { echo "Usage: $(basename $0) [-v teleport_version] [-h target_hostname] [-p target_port] [-j join_token] [-c ca_pin_hash]... [-q] [-l log_filename] [-a app_name] [-u app_uri] " 1>&2; exit 1; }
while getopts ":v:h:p:j:c:f:ql:ika:u:" o; do
case "${o}" in
v) TELEPORT_VERSION=${OPTARG};;