blob: e68c4bc6c3e8e5b1baf2e60e862ac2f9644c4d47 [file] [log] [blame]
# Copyright 2005-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
"""'This emaint module provides checks and maintenance for:
Cleaning the PORT_LOGDIR logs
"""
module_spec = {
'name': 'logs',
'description': "Provides functions to scan, check and clean old logs " +\
"in the PORT_LOGDIR",
'provides':{
'module1': {
'name': "logs",
'class': "CleanLogs",
'description': "Clean out old logs from the PORT_LOGDIR",
'functions': ['check','clean'],
'func_desc': {
'clean': {
"short": "-C", "long": "--clean",
"help": "Cleans out logs more than 7 days old (cleanlogs only)" + \
" module-options: -t, -p",
'status': "Cleaning %s",
'func': 'clean'
},
'time': {
"short": "-t", "long": "--time",
"help": "(cleanlogs only): -t, --time Delete logs older than NUM of days",
'status': "",
'action': 'store',
'type': 'int',
'dest': 'NUM',
'callback': None,
'callback_kwargs': None,
'func': 'clean'
},
'pretend': {
"short": "-p", "long": "--pretend",
"help": "(cleanlogs only): -p, --pretend Output logs that would be deleted",
'status': "",
'action': 'store_true',
'dest': 'pretend',
'callback': None,
'callback_kwargs': None,
'func': 'clean'
}
}
}
}
}