9fffbfb678be43fc54fe23fa7a6fb0cbec120fc6
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 39-modprobe
1 #!/bin/bash
2 # Filename:      /etc/grml/fai/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 [ -r /etc/grml/grml-live.conf ]  && . /etc/grml/grml-live.conf
13 [ -r /etc/grml/grml-live.local ] && . /etc/grml/grml-live.local
14
15 # Make sure all modprobe configuration files use .conf as filename suffix.
16 # See http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=module-init-tools;dist=unstable
17 # and http://blog.bofh.it/debian/id_236
18 find $target/etc/modprobe.d -maxdepth 1 -type f ! -name \*\.conf -exec mv {} {}.conf \;
19
20 ## END OF FILE #################################################################
21 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3