summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rc b/common/rc
index 50dde313..26212b15 100644
--- a/common/rc
+++ b/common/rc
@@ -1834,7 +1834,7 @@ _require_scratch_size()
_require_scratch
local devsize=`_get_device_size $SCRATCH_DEV`
- [ $devsize -lt $1 ] && _notrun "scratch dev too small"
+ [ $devsize -lt $1 ] && _notrun "scratch device too small, $devsize < $1"
}
# require a scratch dev of a minimum size (in kb) and should not be checked
@@ -1845,7 +1845,7 @@ _require_scratch_size_nocheck()
_require_scratch_nocheck
local devsize=`_get_device_size $SCRATCH_DEV`
- [ $devsize -lt $1 ] && _notrun "scratch dev too small"
+ [ $devsize -lt $1 ] && _notrun "scratch device size too small, $devsize < $1"
}
# Require scratch fs which supports >16T of filesystem size.