aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rcS.d/170-lvm.sh
blob: da4bd84d04384295b9d3beac76e9eaafa488db85 (plain)
1
2
3
4
5
6
7
#!/bin/sh
[[ $(type -t strstr) = "function" ]] || . /etc/init.d/functions
[[ $cmdline ]] || cmdline=$(cat /proc/cmdline)
if [ -x /sbin/lvm ]; then
	action $"Setting up Logical Volume Management:" /sbin/lvm vgchange -a y --sysinit
fi
: