What does insmod_ksymoops_clean do? It looks like this: firewall:# cat /sbin/insmod_ksymoops_clean #!/bin/sh # Delete saved ksyms and modules not accessed in 2 days if [ -d /var/log/ksymoops -a -r /proc/ksyms ] then set -e # Make sure there is always at least one version d=`date +%Y%m%d%H%M%S` cp -a /proc/ksyms /var/log/ksymoops/${d}.ksyms cp -a /proc/modules /var/log/ksymoops/${d}.modules find /var/log/ksymoops -type f -atime +2 -exec rm {} \; fi
>From all I can tell, it simply makes a snapshot of the modules and symbols that are active. Does it purge not-recently-used modules from the kernel? Elizabeth -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]