From 90a65dbacebdef2d3e882cc18bcd906ced12cc76 Mon Sep 17 00:00:00 2001 From: TrainDoctor <11465594+TrainDoctor@users.noreply.github.com> Date: Mon, 6 Jun 2022 13:34:58 -0700 Subject: Removed a line that would exclude passwords with non-alnum characters. --- contrib/deck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/deck.sh b/contrib/deck.sh index ea27e310..5866795c 100755 --- a/contrib/deck.sh +++ b/contrib/deck.sh @@ -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 -- cgit v1.2.3