diff options
author | Enno Boland <g@s01.de> | 2018-06-13 16:07:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-13 16:07:28 +0200 |
commit | 8fe7df917d20e4bdad51fabcc3675e66fa50e330 (patch) | |
tree | 4e6133d12002853598d4d30e7ff3298734f49698 | |
parent | 22e26b776842e7eb7a231550bd5faf1aec04561b (diff) | |
parent | af8113785f717f7f6ecb57b18904b98845aa0a21 (diff) | |
download | runit-void-8fe7df917d20e4bdad51fabcc3675e66fa50e330.tar.gz runit-void-8fe7df917d20e4bdad51fabcc3675e66fa50e330.tar.xz runit-void-8fe7df917d20e4bdad51fabcc3675e66fa50e330.zip |
Merge pull request #64 from dne/patch-1
core-services/01-static-devnodes.sh: Honour modprobe blacklists
-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 |