All but two calls to modprobe in alsaconf call it with the full path. For
consistency the remaining two calls should also use the full path.
if $lsmod | grep -q -E '^(snd-|snd_)'$1' '; then
: ;
else
- modprobe -r snd-$1 >/dev/null 2>&1
+ /sbin/modprobe -r snd-$1 >/dev/null 2>&1
return 1
fi
if $lsmod | grep -q -E '^(snd-|snd_)'$1' '; then
: ;
else
- modprobe -r snd-$1 >/dev/null 2>&1
+ /sbin/modprobe -r snd-$1 >/dev/null 2>&1
return 1
fi