File: md0-raid10.sh

package info (click to toggle)
zfs-linux 0.6.5.9-5~bpo8%2B1
  • links: PTS, VCS
  • area: contrib
  • in suites: jessie-backports
  • size: 15,468 kB
  • sloc: ansic: 182,812; sh: 11,864; python: 1,683; makefile: 1,586; asm: 1,302; perl: 679; sed: 13; awk: 5
file content (38 lines) | stat: -rw-r--r-- 930 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
#
# Four disk Raid-10 in a single Raid-0 Configuration
#

MDADM=${MDADM:-/sbin/mdadm}
MDDEVICES=${MDDEVICES:-"/dev/sd[abcd]"}
MDCOUNT=${MDCOUNT:-4}
MDRAID=${MDRAID:-10}

DEVICES="/dev/md0"

zpool_md_destroy() {
	msg ${MDADM} --manage --stop ${DEVICES}
	${MDADM} --manage --stop ${DEVICES} &>/dev/null

	msg ${MDADM} --zero-superblock ${MDDEVICES}
	${MDADM} --zero-superblock ${MDDEVICES} >/dev/null
}

zpool_create() {
	msg ${MDADM} --create ${DEVICES} --level=${MDRAID} \
		--raid-devices=${MDCOUNT} ${MDDEVICES}
	${MDADM} --create ${DEVICES} --level=${MDRAID} \
		--raid-devices=${MDCOUNT} ${MDDEVICES} \
		&>/dev/null || (zpool_md_destroy && exit 1)

	msg ${ZPOOL} create ${ZPOOL_FLAGS} ${ZPOOL_NAME} ${DEVICES}
	${ZPOOL} create ${ZPOOL_FLAGS} ${ZPOOL_NAME} \
		${DEVICES} || (zpool_md_destroy && exit 2)
}

zpool_destroy() {
	msg ${ZPOOL} destroy ${ZPOOL_NAME}
	${ZPOOL} destroy ${ZPOOL_NAME}

	zpool_md_destroy
}