diff options
-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 |