From b7a00ba5ddc5c41bf3745bec6549463d8fd43b10 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 50f1c97..93fc1c5 100644 --- a/default.conf +++ b/default.conf @@ -75,7 +75,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