aboutsummaryrefslogtreecommitdiffstats
path: root/pym/portage/emaint/modules/config/__init__.py
blob: 22abb07b1521930424d73fb172569cf604624f22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 emerge config tracker list
"""


module_spec = {
	'name': 'config',
	'description': "Provides functions to scan, check for and fix no " +\
		"longer installed config files in emerge's tracker file",
	'provides':{
		'module1': {
			'name': "cleanconfmem",
			'class': "CleanConfig",
			'description':  "Discard no longer installed config tracker entries",
			'functions': ['check', 'fix'],
			'func_desc': {}
			}
		}
	}