Removed a line that would exclude passwords with non-alnum characters.

This commit is contained in:
TrainDoctor
2022-06-06 13:34:58 -07:00
parent f828480715
commit 90a65dbace

View File

@@ -96,7 +96,7 @@ checksshkey() {
checkpassword() {
### check to make sure a password for 'deck' was specified
if [[ "$1" == "" ]] || ! [[ "$1" =~ ^[[:alnum:]]+$ ]]; then
if [[ "$1" == "" ]]; then
printf "Remote deck user password was not provided, exiting.\n"
exit 1
fi