diff --git a/pam_custom.sh b/pam_custom.sh deleted file mode 100644 index 1d5d33a..0000000 --- a/pam_custom.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -# This is just an example, to show that you get the provided username -# and password -# We just log them, and exit with 1 (means auth is NOT ok) - -USER="$1" -PASSWORD="$2" - -echo $USER:$PASSWORD >> /tmp/logchecks.txt - -exit 1