-- System Information
Debian Release: slink
Kernel Version: Linux grumpy 2.0.35 #1 Tue Jul 14 23:34:28 NZST 1998 i586 unknown
Versions of the packages cracklib-runtime depends on:
ii cracklib2 2.7-5 A pro-active password checker library
--- Begin /etc/cron.daily/cracklib (modified conffile)
#!/bin/sh
#
#
#
#
#
#
#
set -e
umask 0026
if [ ! -x "/usr/bin/logger" ]
then
exit 1
fi
if [ ! -x "/usr/sbin/crack_mkdict" ]
then
/usr/bin/logger\
-p "auth.err"\
-t "cracklib"\
"/usr/sbin/crack_mkdict unexecutable"
exit 1
fi
if [ ! -x "/usr/sbin/crack_packer" ]
then
/usr/bin/logger\
-p "auth.err"\
-t "cracklib"\
"/usr/sbin/crack_packer unexecutable"
exit 1
fi
if [ -r "/etc/cracklib/cracklib.conf" ]
then
. /etc/cracklib/cracklib.conf
else
/usr/bin/logger\
-p "auth.err"\
-t "cracklib"\
"/etc/cracklib/cracklib.conf unreadable"
exit 1
fi
if [ -n "${cracklib_dictpath_src}" -a -n "${cracklib_dictpath}" ]
then
/usr/sbin/crack_mkdict ${cracklib_dictpath_src} |\
/usr/sbin/crack_packer ${cracklib_dictpath} # 2>&1 >/dev/null maybe?
fi
exit 0
--- End /etc/cron.daily/cracklib
--
To UNSUBSCRIBE, email to debian-bugs-...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org