mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
21 lines
605 B
Bash
Executable File
21 lines
605 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
# "modprobe" without modprobe
|
|
# https://twitter.com/lucabruno/status/902934379835662336
|
|
|
|
# this isn't 100% fool-proof, but it'll have a much higher success rate than simply using the "real" modprobe
|
|
|
|
# Docker often uses "modprobe -va foo bar baz"
|
|
# so we ignore modules that start with "-"
|
|
for module; do
|
|
if [ "${module#-}" = "$module" ]; then
|
|
ip link show "$module" || true
|
|
lsmod | grep "$module" || true
|
|
fi
|
|
done
|
|
|
|
# remove /usr/local/... from PATH so we can exec the real modprobe as a last resort
|
|
export PATH='/usr/sbin:/usr/bin:/sbin:/bin'
|
|
exec modprobe "$@"
|