#!/bin/sh # # $Id$ # # Clear failed login counts for pam_tally, log results to syslog. Only # tested on RedHat Linux. RESULTS=`/sbin/pam_tally --reset` if [ ! -z "$RESULTS" ]; then /usr/bin/logger -i -p authpriv.info -t pam_tally -- "$RESULTS" fi