Update pam_script_ses_close

This commit is contained in:
Emre Akkaya 2016-06-27 12:37:12 +03:00 committed by GitHub
parent 4f3168c092
commit f52275cf78
1 changed files with 26 additions and 2 deletions

View File

@ -1,6 +1,30 @@
#!/bin/bash
if [ -n $PAM_USER ]; then
if [ $PAM_USER != "root" ]; then
function error_exit() {
log "$1:$2 failed, exit status $?"
exit 1
}
trap 'error_exit "${BASH_SOURCE}" "${LINENO}"' ERR
LOG=/var/log/pam_script.log
function log() {
logger --priority auth.info --tag "$0" "$@"
echo "$(date) $0: $@" >> $LOG
}
if [ -n $PAM_USER ] && [ $PAM_USER != "root" ]; then
if ([ -n $PAM_SERVICE ] && [[ $PAM_SERVICE == *"dm" ]]) || ([ -n $PAM_TTY ] && [[ $PAM_TTY == ":"* ]]); then
SERVICE="none"
if [ -n $PAM_SERVICE ]; then
SERVICE="$PAM_SERVICE"
fi
TTY_DISPLAY="none"
if [ -n $PAM_TTY ]; then
TTY_DISPLAY="$PAM_TTY"
fi
log "logout: $PAM_USER service: $SERVICE tty: $TTY_DISPLAY"
sudo python3 /opt/ahenk/ahenkd.py logout $PAM_USER
fi
fi