From: Josef 'Jeff' Sipek Date: Fri, 29 Jun 2007 07:06:43 +0000 (-0400) Subject: Allow the FS to be set via environment var X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=37b08c91847e7bc847ec77ca77aaf4c52cc6d015;p=unionfs-regression-odf.git Allow the FS to be set via environment var Signed-off-by: Josef 'Jeff' Sipek --- diff --git a/thor.conf b/thor.conf index fdae596..4086b13 100644 --- a/thor.conf +++ b/thor.conf @@ -43,10 +43,11 @@ DEV2=/dev/.static/dev/loop2 DEV3=/dev/.static/dev/loop3 # Name of file systems to format your device. Supported file systems # include: ext2, ext3, xfs, reiserfs, nfs, nfs2, nfs3, nfs4, and jffs2. -FS0=ext2 -FS1=ext2 -FS2=ext2 -FS3=ext2 +myfs=${MYFS:-ext2} +FS0=$myfs +FS1=$myfs +FS2=$myfs +FS3=$myfs # delay between each test (in seconds, optional) DELAY=0.125