Merge remote-tracking branch 'origin/github/pr/145'
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 39-modprobe
1 #!/bin/bash
2 # Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/39-modprobe
3 # Purpose:       adjust modprobe configuration
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 set -u
10 set -e
11
12 # Make sure all modprobe configuration files use .conf as filename suffix.
13 # See http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=module-init-tools;dist=unstable
14 # and http://blog.bofh.it/debian/id_236
15 find $target/etc/modprobe.d -maxdepth 1 -type f ! -name \*\.conf -exec mv {} {}.conf \;
16
17 # Install all present modprobe.d configuration files
18 fcopy -v -i -r /etc/modprobe.d
19
20 if [ -f "${target}/lib/modprobe.d/50-nfs.conf" ] ; then  # nfs-kernel-server >=1:2.6.2-1
21   echo "Clearing /lib/modprobe.d/50-nfs.conf to avoid automatic kmod/busybox issues"
22   echo '# this file was generated by grml-live script GRMLBASE/39-modprobe' > "${target}/lib/modprobe.d/50-nfs.conf"
23 fi
24
25 ## END OF FILE #################################################################
26 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2