Set sudo max tries to 10, binary for easy lockout reset (#686)

* set sudo max fail count to 10, bin for easy reset

* Slim down

Let the failure just fail in the shell

* Rename to be more descriptive

* No need for the 00- prefix

* Add migration to raise sudo try limit

---------

Co-authored-by: Manuel <manuel.ramsaier@gmail.com>
Co-authored-by: David Heinemeier Hansson <david@hey.com>
This commit is contained in:
Manuel
2025-08-12 13:31:48 +02:00
committed by GitHub
parent f8482fdad7
commit 6634e28540
4 changed files with 10 additions and 0 deletions

4
bin/omarchy-reset-sudo Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
echo "Resetting sudo lockout for user: $USER"
su -c "faillock --reset --user $USER"