6 lines
124 B
Bash
6 lines
124 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Reset the sudo lockout/faillock for the current user.
|
||
|
|
|
||
|
|
su -c "faillock --reset --user $USER"
|