Perhaps someone more knowlegable than me can close this bug...

If I'm reading the script correctly then these lines in
/sbin/discover-modprobe  (from discover 2.0.7-2.1 [ in sarge]) fix
this issue:

---8<---
# Poor man's uniq.
module_details_uniq=""
for module_info in ${module_details}; do
    echo ${module_details_uniq} | grep ${module_info} > /dev/null 2>&1
    if [ $? -eq 1 ]; then
        module_details_uniq="${module_details_uniq} ${module_info}"
    fi
done
module_details=${module_details_uniq}
---8<---

Regards
Alex Owen

Reply via email to