updated login-notify.sh
This commit is contained in:
parent
8729431f90
commit
af9cf6cd9a
1 changed files with 2 additions and 3 deletions
|
@ -9,10 +9,9 @@ subject="SSH Login: $PAM_USER from $PAM_RHOST on $HOST"
|
||||||
message="User $PAM_USER logged in on $HOST from $PAM_RHOST at $(date)."
|
message="User $PAM_USER logged in on $HOST from $PAM_RHOST at $(date)."
|
||||||
|
|
||||||
if [ "$PAM_TYPE" == "open_session" ]; then
|
if [ "$PAM_TYPE" == "open_session" ]; then
|
||||||
if [ "$PAM_USER" != "root" ]; then
|
|
||||||
echo "$message" | mailx -a "From: $sender" -s "$subject" "$recipient"
|
|
||||||
fi
|
|
||||||
if [ -n "$GOTIFY_TOKEN" ]; then
|
if [ -n "$GOTIFY_TOKEN" ]; then
|
||||||
curl -F "title=$subject" -F "message=$message" -F "priority=5" "https://push.sp-codes.de/message?token=$GOTIFY_TOKEN"
|
curl -F "title=$subject" -F "message=$message" -F "priority=5" "https://push.sp-codes.de/message?token=$GOTIFY_TOKEN"
|
||||||
|
elif [ "$PAM_USER" != "root" ]; then
|
||||||
|
echo "$message" | mailx -a "From: $sender" -s "$subject" "$recipient"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Reference in a new issue