15 lines
290 B
Plaintext
15 lines
290 B
Plaintext
|
|
#bin/bash
|
||
|
|
|
||
|
|
function usage() {
|
||
|
|
echo "Usage: ssh_locker_helper <user> <action>"
|
||
|
|
echo "Actions:"
|
||
|
|
echo " lock - Lock the SSH locker"
|
||
|
|
echo " unlock - Unlock the SSH locker"
|
||
|
|
}
|
||
|
|
|
||
|
|
if [ -z "$1" ] || [ -z "$2" ]; then
|
||
|
|
usage
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
sectool exec bash -c "bin/ssh_locker_helper $1 $2"
|