From: Philip A. P. <phi...@re...> - 2009-05-11 03:38:44
|
I'm looking at build_tools/genmodconf: if [ -d ${2}/etc/modprobe.d ]; then target=${2}/etc/modprobe.d/modprobe.rhino elif [ -d ${2}/etc/modules.d ]; then target=${2}/etc/modules.d/modprobe.rhino elif [ -f ${2}/etc/modprobe.conf ]; then target=${2}/etc/modprobe.conf combined=1 elif [ -f ${2}/etc/conf.modules ]; then target=${2}/etc/conf.modules combined=1 else echo No suitable location for module rules can be found... exiting. exit 0 fi and wondering who we need to ask to change that to "/etc/modprobe.d/rhino.conf" instead of /etc/modprobe.d/modprobe.rhino so we can stop seeing the message: modprobe ipt_policy: WARNING: All config files need .conf: /etc/modprobe.d/modprobe.rhino, it will be ignored in a future release. modprobe iptable_nat: WARNING: All config files need .conf: /etc/modprobe.d/modprobe.rhino, it will be ignored in a future release. Thanks, -Philip |