summaryrefslogtreecommitdiffstats
path: root/pym/portage/emaint/modules/logs/__init__.py
blob: e68c4bc6c3e8e5b1baf2e60e862ac2f9644c4d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 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'
					}
				}
			}
		}
	}