| Current Path : /proc/self/root/proc/8644/root/etc/cron.daily/ | 
| Current File : //proc/self/root/proc/8644/root/etc/cron.daily/cracklib-runtime | 
#!/bin/sh
set -e
if [ -x /usr/sbin/update-cracklib -a -r /etc/cracklib/cracklib.conf ]
then
    status="$(/usr/sbin/update-cracklib)"
    if [ -n "${status}" ]
    then
        /usr/bin/logger -p cron.info -t cracklib "updated dictionary (read/written words: ${status})."
    else
        /usr/bin/logger -p cron.info -t cracklib "no dictionary update necessary."
    fi
fi
exit 0