003 File Manager
Current Path:
/usr/src/tools/regression/zfs/zpool/replace
usr
/
src
/
tools
/
regression
/
zfs
/
zpool
/
replace
/
📁
..
📄
cache.t
(1.08 KB)
📄
disk.t
(1.42 KB)
📄
log.t
(5.43 KB)
📄
mirror.t
(4.71 KB)
📄
raidz1.t
(5.14 KB)
📄
raidz2.t
(24.26 KB)
📄
spare.t
(1.05 KB)
Editing: spare.t
#!/bin/sh # $FreeBSD$ dir=`dirname $0` . ${dir}/../../misc.sh echo "1..6" disks_create 4 names_create 1 expect_ok ${ZPOOL} create ${name0} ${disk0} spare ${disk1} exp=`( echo " pool: ${name0}" echo " state: ONLINE" echo " scrub: none requested" echo "config:" echo " NAME STATE READ WRITE CKSUM" echo " ${name0} ONLINE 0 0 0" echo " ${disk0} ONLINE 0 0 0" echo " spares" echo " ${disk1} AVAIL" echo "errors: No known data errors" )` expect "${exp}" ${ZPOOL} status ${name0} expect_fl ${ZPOOL} replace ${name0} ${disk1} ${disk2} exp=`( echo " pool: ${name0}" echo " state: ONLINE" echo " scrub: none requested" echo "config:" echo " NAME STATE READ WRITE CKSUM" echo " ${name0} ONLINE 0 0 0" echo " ${disk0} ONLINE 0 0 0" echo " spares" echo " ${disk1} AVAIL" echo "errors: No known data errors" )` expect "${exp}" ${ZPOOL} status ${name0} expect_ok ${ZPOOL} destroy ${name0} expect_fl ${ZPOOL} status -x ${name0} disks_destroy
Upload File
Create Folder