blob: f455be891d44e090427413ef55068ee47f1e8c94 (
plain)
1
2
3
4
5
6
7
|
# Remove/move obsolete configuration:
if [ -L etc/modprobe.d/modprobe.conf ]; then
rm -f etc/modprobe.d/modprobe.conf
fi
if [ -e etc/modprobe.conf ]; then
mv etc/modprobe.conf etc/modprobe.conf.obsolete
fi
|