We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'Logout' action (choice 0) loop when user is connected to console (It work as expected when using SSH).
The text was updated successfully, but these errors were encountered:
'Logout' action was only killing ssh connexion.
Line 45 should be: 0) clear; SSHPID=``ps aux | egrep "sshd: [a-zA-Z]+@" | awk {' print $2 '}``; kill $SSHPID; CONSPID=``ps aux | egrep "tty1.*/bin/login" | grep -v egrep | awk {' print $2 '}``; kill $CONSPID ;; to handle SSH and console session
0) clear; SSHPID=``ps aux | egrep "sshd: [a-zA-Z]+@" | awk {' print $2 '}``; kill $SSHPID; CONSPID=``ps aux | egrep "tty1.*/bin/login" | grep -v egrep | awk {' print $2 '}``; kill $CONSPID ;;
Sorry, something went wrong.
It will be resolved in the next release
d1bfdf8
not a big deal but it kills root ssh connexions too now
vmdude
No branches or pull requests
'Logout' action (choice 0) loop when user is connected to console (It work as expected when using SSH).
The text was updated successfully, but these errors were encountered: