From 90970bd13d41b6043dc7fe7ca9cd790b05f73d66 Mon Sep 17 00:00:00 2001 From: Jon West Date: Wed, 17 Jul 2024 17:59:36 -0400 Subject: [PATCH] Update admin-restriction.md with logic correction --- features/admin-restriction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/admin-restriction.md b/features/admin-restriction.md index c151e2b8..2e86578d 100644 --- a/features/admin-restriction.md +++ b/features/admin-restriction.md @@ -29,7 +29,7 @@ In order to confirm that a set password is working, you can run a check on the h ``` -$ BLISSMODE_PASSWORD="your_companies_complex_password_schema1234"; if [ "$(echo -n "$BLISSBOOTMODE_PASSWORD" | sha256sum)" != "$(cat blissmode_password)" ]; then echo "its a match"; else echo "password does not match"; fi +$ BLISSMODE_PASSWORD="your_companies_complex_password_schema1234"; if [ "$(echo -n "$BLISSBOOTMODE_PASSWORD" | sha256sum)" != "$(cat blissmode_password)" ]; then echo "password does not match"; else echo "its a match"; fi its a match ```