From 37b08c91847e7bc847ec77ca77aaf4c52cc6d015 Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Fri, 29 Jun 2007 03:06:43 -0400 Subject: [PATCH] Allow the FS to be set via environment var Signed-off-by: Josef 'Jeff' Sipek --- thor.conf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 -- 2.43.0