summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server
Commit message (Collapse)AuthorAgeFilesLines
* DBStats: Pylint/PEP8 fixesSol Jerome2012-05-251-4/+6
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* DBStats: Set the initial version baed on updates instead of fixturesTim Laszlo2012-05-232-46/+4
|
* bcfg2-admin: Logging broken for reportsTim Laszlo2012-05-232-13/+3
|
* removed debug lineChris St. Pierre2012-05-231-1/+0
|
* fixed inotify handling of events in watched dirsChris St. Pierre2012-05-231-13/+21
|
* DBStats: Use more sensible column definitions for ReasonTim Laszlo2012-05-232-16/+56
|
* Pkgmgr: Fix broken altsrcTim Laszlo2012-05-222-4/+9
| | | | | | Use __contains__ instead of has_key in Pkgmgr. Gone in Py3k. Fallback on __getitem__ in PrioDir. Handles cased with an override for __getitem__ is used.
* Reports: Parse cfile from command line instead of using an env variableTim Laszlo2012-05-211-4/+10
|
* added option groupsChris St. Pierre2012-05-212-4/+1
|
* Fix PY3K syntax errorSol Jerome2012-05-211-1/+2
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Packages: Print more information when a source type fails to loadTim Laszlo2012-05-211-2/+2
| | | | | | | If a yum type is used on python 2.4 and simplejson is not installed, this message is the only error Packages: Unknown source type Yum
* Bundler: Fix genshi importSol Jerome2012-05-211-2/+2
| | | | | | | | | | | | | | Wasn't properly importing genshi previously. >>> import genshi.template.base.TemplateError Traceback (most recent call last): File "<input>", line 1, in <module> ImportError: No module named TemplateError >>> import genshi.template.base >>> genshi.template.base.TemplateError <class 'genshi.template.base.TemplateError'> Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Packages: Unicode-objects must be encoded before hashingSol Jerome2012-05-212-1/+6
| | | | | | Fixes a traceback in PY3K. Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* more fixes for missing genshiChris St. Pierre2012-05-212-20/+15
|
* fixes for missing genshiChris St. Pierre2012-05-212-4/+4
|
* fixed bug in pseudo fm, deduplicated codeChris St. Pierre2012-05-213-26/+16
|
* fixed tb when genshi is not installedChris St. Pierre2012-05-211-0/+1
|
* Reports: Use config file from the command lineTim Laszlo2012-05-181-1/+6
| | | | | If a config file is specified on the command line, use it in settings.py instead of the hardcoded ones.
* bcfg2-admin: reports command isn't printing all optionsTim Laszlo2012-05-181-2/+2
|
* fixed some stringification issuesChris St. Pierre2012-05-182-1/+4
|
* Added inotify filemonitor driverChris St. Pierre2012-05-189-355/+425
| | | | Moved list of files to ignore into config
* CfgLegacyInfo: Missing path attributeTim Laszlo2012-05-181-0/+4
|
* Allow Cfg loader to work with python 2.4Tim Laszlo2012-05-181-1/+13
|
* Adding DB2 support for StatisticsJohn 'Skip' Reddy2012-05-171-0/+3
| | | | | Adding DB2 support for Statistics, following guidance from http://code.google.com/p/ibm-db/wiki/ibm_db_django_README
* fixed encrypted genshi/cheetah generatorsChris St. Pierre2012-05-176-30/+29
|
* fixed merge error with Lint.DeltasChris St. Pierre2012-05-171-0/+25
|
* added Cfg drivers for encrypted genshi/cheetah templatesChris St. Pierre2012-05-163-17/+71
|
* add_option properly adds an option to OptionParser after initial parsingChris St. Pierre2012-05-161-1/+1
|
* Added ability to store Cfg files with AES encryptionChris St. Pierre2012-05-151-0/+54
|
* merged maintChris St. Pierre2012-05-1514-48/+68
|\
| * use XML parser that strips whitespace to avoid xml concatenation ↵Chris St. Pierre2012-05-151-20/+0
| | | | | | | | pretty_print issue
* | fixed bug in list_accept_choices in CfgChris St. Pierre2012-05-141-1/+1
| |
* | reports: Fix typoSol Jerome2012-05-131-1/+1
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | added ability to disable Cfg file validationChris St. Pierre2012-05-111-22/+32
| |
* | moved plugin-specific configs to main config file; propagate "setup" object ↵Chris St. Pierre2012-05-119-137/+62
| | | | | | | | to server Core
* | added short-lived caching of Packages Collection objectsChris St. Pierre2012-05-112-19/+54
| |
* | remove extraneous assignment of package versionChris St. Pierre2012-05-111-1/+0
| |
* | reports: Fix traceback reported by Rodney YoungSol Jerome2012-05-111-2/+12
| | | | | | | | | | | | | | Previously left out a check for whether the column exists when using MySQL. We will probably eventually need checks for other db types as well. Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | reports: Fix traceback when missing python db modulesSol Jerome2012-05-101-1/+10
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | set important on yum/apt config generated by PackagesChris St. Pierre2012-05-101-5/+6
| |
* | reports: Fix unpruned entries displaySol Jerome2012-05-092-2/+2
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | added support for validating Cfg file contents using external commandsChris St. Pierre2012-05-096-68/+158
| |
* | fixed return value check in diff filterChris St. Pierre2012-05-091-1/+1
| |
* | fixed MergeFiles bcfg2-lint pluginChris St. Pierre2012-05-091-1/+4
| |
* | fixed more bcfg2-lint plugins for Cfg modularizationChris St. Pierre2012-05-093-20/+26
| |
* | fixed bcfg2-lint Deltas pluginChris St. Pierre2012-05-093-9/+9
| |
* | modularized CfgChris St. Pierre2012-05-0811-307/+566
| |
* | reports: Fix bcfg2-admin reports initSol Jerome2012-05-061-1/+7
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | reports: Remove indexes for nonexistent tablesSol Jerome2012-05-061-3/+1
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | reports: Add fine-grained filter for 'bad' clientsSol Jerome2012-05-064-39/+74
| | | | | | | | | | | | | | | | This filter introduces percentages which should help administrators to quickly visually see where they should focus their time. The worse the percentage of bad/total entries, the darker the color of the client. Signed-off-by: Sol Jerome <sol.jerome@gmail.com>