From 7894028bae5ab8fb9422f5b2274cc9fd2b748e31 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Tue, 24 Jul 2012 08:56:44 -0400 Subject: init_functions: use a consistent default rootdelay init defaults to a rootdelay of 10, but poll_device falls back on a default of 5 if rootdelay is somehow manage during the hook run. Keep this consistent and use 10 seconds in both places. Signed-off-by: Dave Reisner --- init_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init_functions b/init_functions index 1bebf45..c2223ff 100644 --- a/init_functions +++ b/init_functions @@ -10,7 +10,7 @@ err () { poll_device() { local device=$1 seconds=${2//[!0-9]} - [ -z "$seconds" ] && seconds=5 + [ -z "$seconds" ] && seconds=10 [ -b "$device" ] && return 0 -- cgit v1.2.3-24-g4f1b