aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rcS.d/120-loaddmmod.sh
blob: 4696af976ad45acd19bb362dec7c4f3bec12fd37 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
[[ $(type -t strstr) = "function" ]] || . /etc/init.d/functions

# Device mapper & related initialization
if ! __fgrep "device-mapper" /proc/devices >/dev/null 2>&1 ; then
       modprobe dm-mod >/dev/null 2>&1
fi
: