summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/init.d/lvm2
blob: 475225e5823776b4e7aaaa879825addafa1370ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
#
# Setting up Logical Volume Management
#
case "$1" in
	start)
		echo "Setting up LVM2..."
		if /usr/sbin/lvm vgscan > /dev/null 2>&1; then
			/usr/sbin/lvm vgchange -a y
			echo "done"
		else
			echo "failed"
			exit 1
		fi
		;;
	stop)
		echo "Stopping LVM2"
		/usr/sbin/lvm vgchange -a n
		;;
	*)
		echo "usage: $0 [start|stop]"
		exit 1
		;;
esac