diff options
author | Daniel NĂ©ri <dne+github@mayonnaise.net> | 2017-02-12 01:21:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-12 01:21:06 +0100 |
commit | af8113785f717f7f6ecb57b18904b98845aa0a21 (patch) | |
tree | 78363946a51b56bd3af86b433cac0ba56abbfd04 /core-services | |
parent | fd2a983c3e466a408d68169812fe388f8a3927ce (diff) | |
download | runit-void-af8113785f717f7f6ecb57b18904b98845aa0a21.tar.gz runit-void-af8113785f717f7f6ecb57b18904b98845aa0a21.tar.xz runit-void-af8113785f717f7f6ecb57b18904b98845aa0a21.zip |
core-services/01-static-devnodes.sh: Honour modprobe blacklists
Diffstat (limited to 'core-services')
-rw-r--r-- | core-services/01-static-devnodes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core-services/01-static-devnodes.sh b/core-services/01-static-devnodes.sh index b059177..2bf15c8 100644 --- a/core-services/01-static-devnodes.sh +++ b/core-services/01-static-devnodes.sh @@ -2,5 +2,5 @@ # Load them by looking at the output of `kmod static-nodes`. for f in $(kmod static-nodes 2>/dev/null|awk '/Module/ {print $2}'); do - modprobe -q $f 2>/dev/null + modprobe -bq $f 2>/dev/null done |