Skip to content

Commit

Permalink
Update admin-restriction.md with logic correction
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikjesus authored Jul 17, 2024
1 parent f22081b commit 90970bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/admin-restriction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 90970bd

Please sign in to comment.