summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Reporting.py
Commit message (Collapse)AuthorAgeFilesLines
* Reporting: Clear error message if django is missingAlexander Sulfrian2015-09-231-8/+7
|
* fix check for reporting in src/lib/Bcfg2/Server/Plugins/Reporting.pyJonas Jochmaring2015-09-231-7/+11
|
* Remove blanket excepts from plugins and lintChris St. Pierre2015-02-181-5/+4
| | | | | | | | | | This removes most blanket except: clauses from all plugins, including the base plugin libraries, and bcfg2-lint. The few that remain should all be necessary. Most of the changes were quite minor, but this did require some restructuring of the CfgPrivateKeyCreator; as a result, the tests for that module were rewritten.
* Setup reporting transport before starting threadsTim Laszlo2014-06-101-1/+5
|
* Plugins: refactored out unnecessary datastore constructor argumentChris St. Pierre2013-10-291-2/+2
|
* Options: migrated plugins to new options parserChris St. Pierre2013-06-271-16/+11
|
* PY3K: Fix client/server to work with python 3Sol Jerome2013-04-101-1/+1
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* testsuite: fixed issues found by latest version of pep8Chris St. Pierre2013-03-261-2/+3
|
* Debug improvements:Chris St. Pierre2013-03-191-1/+4
| | | | | | * Added (set|toggle)_core_debug RMI methods to set debugging in the core * Enable plugin debugging when run with -d * Allow enabling debugging on Reporting plugin before threads have started
* testsuite: test for exceptions raised without messagesChris St. Pierre2012-12-101-1/+2
|
* made Reporting plugin and transports debuggable, respond to ↵Chris St. Pierre2012-11-271-9/+13
| | | | set_debug/toggle_debug RMI
* Threaded plugin fixes:Chris St. Pierre2012-11-271-4/+8
| | | | | | | * Added "Threaded" plugin interface for any plugin that uses threads * Start plugin threads after daemonization * Update existing plugins that use threads (Reporting, Snapshots, ThreadedStatistics interface) * Update unit tests
* Reporting: remove experimentalTim Laszlo2012-10-291-1/+0
|
* Reporting: move pickling from base transport to LocalFilesystem transportChris St. Pierre2012-10-091-20/+11
|
* Reporting: made plugin produce errors if South is not installedChris St. Pierre2012-10-091-0/+12
|
* fixed more pylint checksChris St. Pierre2012-10-091-22/+22
|
* Remove debug messageTim Laszlo2012-10-081-1/+0
|
* Reporting: Merge new reporting dataTim Laszlo2012-10-081-0/+105
Move reporting data to a new schema Use south for django migrations Add bcfg2-report-collector daemon Conflicts: doc/development/index.txt doc/server/plugins/connectors/properties.txt doc/server/plugins/generators/packages.txt setup.py src/lib/Bcfg2/Client/Tools/SELinux.py src/lib/Bcfg2/Compat.py src/lib/Bcfg2/Encryption.py src/lib/Bcfg2/Options.py src/lib/Bcfg2/Server/Admin/Init.py src/lib/Bcfg2/Server/Admin/Reports.py src/lib/Bcfg2/Server/BuiltinCore.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/FileMonitor/Inotify.py src/lib/Bcfg2/Server/Plugin/base.py src/lib/Bcfg2/Server/Plugin/interfaces.py src/lib/Bcfg2/Server/Plugins/Cfg/CfgEncryptedGenerator.py src/lib/Bcfg2/Server/Plugins/FileProbes.py src/lib/Bcfg2/Server/Plugins/Ohai.py src/lib/Bcfg2/Server/Plugins/Packages/Collection.py src/lib/Bcfg2/Server/Plugins/Packages/Source.py src/lib/Bcfg2/Server/Plugins/Packages/Yum.py src/lib/Bcfg2/Server/Plugins/Packages/__init__.py src/lib/Bcfg2/Server/Plugins/Probes.py src/lib/Bcfg2/Server/Plugins/Properties.py src/lib/Bcfg2/Server/Reports/backends.py src/lib/Bcfg2/Server/Reports/manage.py src/lib/Bcfg2/Server/Reports/nisauth.py src/lib/Bcfg2/settings.py src/sbin/bcfg2-crypt src/sbin/bcfg2-yum-helper testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProbes.py testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestSEModules.py