aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/monitordisk.py
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2012-04-05 20:58:57 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-11 00:02:20 +0100
commit09592c119550550edcc59c871f754536d5b7bf65 (patch)
treec419cbc413798e0978a1c46a938c936bc9b47b20 /lib/bb/monitordisk.py
parentdd15a92a0932d3e177c0ca7b2923da1d72046e51 (diff)
downloadbitbake-09592c119550550edcc59c871f754536d5b7bf65.tar.gz
diskspace monitor: assign a default value when only of the interval is set
Assign a default value to the other one when either disk space interval or amount of inodes interval value is set for example: BB_DISKMON_WARNINTERVAL = "50M," or BB_DISKMON_WARNINTERVAL = ",5K" The diskspace monitor would not enable in the past, that seemed unreasonable, assign a default value to the other one currently, so the monitor will be enabled, and will warn both of diskspace and free amount of inode if they have been set in BB_DISKMON_DIRS. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/monitordisk.py')
-rw-r--r--lib/bb/monitordisk.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/bb/monitordisk.py b/lib/bb/monitordisk.py
index 9baba5e73..946919396 100644
--- a/lib/bb/monitordisk.py
+++ b/lib/bb/monitordisk.py
@@ -136,10 +136,13 @@ def getInterval(configuration):
""" Get the disk space interval """
+ # The default value is 50M and 5K.
+ spaceDefault = 50 * 1024 * 1024
+ inodeDefault = 5 * 1024
+
interval = configuration.getVar("BB_DISKMON_WARNINTERVAL", True)
if not interval:
- # The default value is 50M and 5K.
- return 50 * 1024 * 1024, 5 * 1024
+ return spaceDefault, inodeDefault
else:
# The disk space or inode interval is optional, but it should
# have a correct value once it is specified
@@ -151,12 +154,16 @@ def getInterval(configuration):
if not intervalSpace:
printErr("Invalid disk space interval value in BB_DISKMON_WARNINTERVAL: %s" % intervalRe.group(1))
return None, None
+ else:
+ intervalSpace = spaceDefault
intervalInode = intervalRe.group(2)
if intervalInode:
intervalInode = convertGMK(intervalInode)
if not intervalInode:
printErr("Invalid disk inode interval value in BB_DISKMON_WARNINTERVAL: %s" % intervalRe.group(2))
return None, None
+ else:
+ intervalInode = inodeDefault
return intervalSpace, intervalInode
else:
printErr("Invalid interval value in BB_DISKMON_WARNINTERVAL: %s" % interval)