about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel NĂ©ri <dne+github@mayonnaise.net>2017-02-12 01:21:06 +0100
committerGitHub <noreply@github.com>2017-02-12 01:21:06 +0100
commitaf8113785f717f7f6ecb57b18904b98845aa0a21 (patch)
tree78363946a51b56bd3af86b433cac0ba56abbfd04
parentfd2a983c3e466a408d68169812fe388f8a3927ce (diff)
downloadrunit-void-af8113785f717f7f6ecb57b18904b98845aa0a21.tar.gz
runit-void-af8113785f717f7f6ecb57b18904b98845aa0a21.tar.xz
runit-void-af8113785f717f7f6ecb57b18904b98845aa0a21.zip
core-services/01-static-devnodes.sh: Honour modprobe blacklists
-rw-r--r--core-services/01-static-devnodes.sh2
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