From 31e43b57feb77855d99651a9402e0c14ec147f9b Mon Sep 17 00:00:00 2001 From: Erez Zadok Date: Mon, 1 Oct 2007 01:07:22 -0400 Subject: [PATCH] Allow users to override delay using $MYDELAY env var. --- brm.conf | 2 +- default.conf | 2 +- thor.conf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/brm.conf b/brm.conf index b3e36ba..45f0b79 100644 --- a/brm.conf +++ b/brm.conf @@ -73,7 +73,7 @@ case ${MYFS} in esac # delay between each test (in seconds, optional) -DELAY=0.1 +DELAY=${MYDELAY:-0.1} # Echo the command being executed to a file/device (optional) This is useful # when unionfs printk's some debugging output which may go to a log file, diff --git a/default.conf b/default.conf index 7f0eb5c..90e6f25 100644 --- a/default.conf +++ b/default.conf @@ -78,7 +78,7 @@ case ${MYFS} in esac # delay between each test (in seconds or fractions thereof, optional) -DELAY=0.1 +DELAY=${MYDELAY:-0.1} # Echo the command being executed to a file/device (optional) This is useful # when unionfs printk's some debugging output which may go to a log file, diff --git a/thor.conf b/thor.conf index 258a948..8362170 100644 --- a/thor.conf +++ b/thor.conf @@ -74,7 +74,7 @@ case ${MYFS} in esac # delay between each test (in seconds, optional) -DELAY=0.1 +DELAY=${MYDELAY:-0.1} # Echo the command being executed to a file/device (optional) This is useful # when unionfs printk's some debugging output which may go to a log file, -- 2.43.0