diff options
author | Bjoern Tropf <asym@gentoo.org> | 2009-11-20 10:52:20 +0100 |
---|---|---|
committer | Bjoern Tropf <asym@gentoo.org> | 2009-11-20 10:52:20 +0100 |
commit | 3975d30985322f6f8decb086e8b6c0a2700f8fff (patch) | |
tree | e8659cb8093ec3fa37ca267c57015953902870f1 | |
parent | Implement pending cve in cron.py (diff) | |
download | kernel-check-3975d30985322f6f8decb086e8b6c0a2700f8fff.tar.gz kernel-check-3975d30985322f6f8decb086e8b6c0a2700f8fff.tar.bz2 kernel-check-3975d30985322f6f8decb086e8b6c0a2700f8fff.zip |
Undo two changes from previous commit
-rwxr-xr-x | tools/cron.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/cron.py b/tools/cron.py index 2287922..181246b 100755 --- a/tools/cron.py +++ b/tools/cron.py @@ -62,8 +62,8 @@ NOMATCH = { PARAM = { 'delay' : 0.2, - 'skip' : True, - 'logfile' : False, #os.path.join(CONST['filepath'], 'cron.log'), + 'skip' : False, + 'logfile' : 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'), |