Invalid password message should also mention that dollar signs are not allowed

This commit is contained in:
Jason Ertel
2021-09-02 07:07:36 -04:00
parent c3454c9e8a
commit 0ad3d826eb
5 changed files with 5 additions and 5 deletions

View File

@@ -52,7 +52,7 @@ fi
read -rs FLEET_PASS
if ! check_password "$FLEET_PASS"; then
echo "Password is invalid. Please exclude single quotes, double quotes and backslashes from the password."
echo "Password is invalid. Please exclude single quotes, double quotes, dollar signs, and backslashes from the password."
exit 2
fi