diff options
author | Bjoern Tropf <asym@gentoo.org> | 2009-11-21 15:49:02 +0100 |
---|---|---|
committer | Bjoern Tropf <asym@gentoo.org> | 2009-11-21 15:49:02 +0100 |
commit | 1318958dfbe3d98b7eb4c7e34279778d11d134f7 (patch) | |
tree | 622069994b374b681c46209d5340acb0aee2cc2b /tools | |
parent | Fix a typo (diff) | |
download | kernel-check-1318958dfbe3d98b7eb4c7e34279778d11d134f7.tar.gz kernel-check-1318958dfbe3d98b7eb4c7e34279778d11d134f7.tar.bz2 kernel-check-1318958dfbe3d98b7eb4c7e34279778d11d134f7.zip |
Output design idea
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/cron.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/cron.py b/tools/cron.py index 4e37327..062da17 100755 --- a/tools/cron.py +++ b/tools/cron.py @@ -39,7 +39,10 @@ CONST = { PENDING = { 'published' : '0000-00-00', - 'desc' : 'Pending', #TODO + 'desc' : 'This PENDING identifier specifies all vulnerabilities ' \ + 'which are not approved yet. PENDING is used by products, ' \ + 'databases, and services to specify when a particular ' \ + 'vulnerability element has been proposed as CVE entry.', 'severity' : 'Low', 'vector' : '()', 'score' : '0.0', @@ -62,8 +65,8 @@ NOMATCH = { PARAM = { 'delay' : 0.2, - 'skip' : False, - 'logfile' : os.path.join(CONST['filepath'], 'cron.log'), + 'skip' : True, + 'logfile' : False, #os.path.join(CONST['filepath'], 'cron.log'), 'tmpdir' : os.path.join(CONST['filepath'], 'tmp'), 'bugdir' : os.path.join(CONST['filepath'], 'tmp', 'bug'), 'nvddir' : os.path.join(CONST['filepath'], 'tmp', 'nvd'), |