Allow the FS to be set via environment var
authorJosef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Fri, 29 Jun 2007 07:06:43 +0000 (03:06 -0400)
committerJosef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Fri, 29 Jun 2007 07:06:43 +0000 (03:06 -0400)
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
thor.conf

index fdae596c22db490ff2b666b478cfcc3e5772e84b..4086b138d210927fe4bd6e7e5a39410d8bc4b43e 100644 (file)
--- 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