From a32a10388228cfc57266d77a5c430f28dd960752 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Thu, 25 May 2017 20:52:22 -0600 Subject: [PATCH] Delete 'pam_custom.sh' --- pam_custom.sh | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 pam_custom.sh 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