summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugin
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fixing unit testsChris St. Pierre2013-04-251-3/+4
| |
* | Merge branch 'maint'Chris St. Pierre2013-04-243-41/+127
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/lib/Bcfg2/Client/Client.py src/lib/Bcfg2/Client/Frame.py src/lib/Bcfg2/Client/Tools/YUM.py src/lib/Bcfg2/Options.py src/lib/Bcfg2/Server/Admin/Perf.py src/lib/Bcfg2/Server/Admin/Xcmd.py src/lib/Bcfg2/Server/Admin/__init__.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/FileMonitor/Fam.py src/lib/Bcfg2/Server/Lint/RequiredAttrs.py src/lib/Bcfg2/Server/Plugin/helpers.py src/lib/Bcfg2/Server/Plugins/Base.py src/lib/Bcfg2/Server/Plugins/Bundler.py src/lib/Bcfg2/Server/Plugins/Cfg/CfgPrivateKeyCreator.py src/lib/Bcfg2/Server/Plugins/Cvs.py src/lib/Bcfg2/Server/Plugins/Darcs.py src/lib/Bcfg2/Server/Plugins/Decisions.py src/lib/Bcfg2/Server/Plugins/FileProbes.py src/lib/Bcfg2/Server/Plugins/Fossil.py src/lib/Bcfg2/Server/Plugins/Git.py src/lib/Bcfg2/Server/Plugins/Metadata.py src/lib/Bcfg2/Server/Plugins/NagiosGen.py src/lib/Bcfg2/Server/Plugins/Packages/PackagesSources.py src/lib/Bcfg2/Server/Plugins/Packages/Source.py src/lib/Bcfg2/Server/Plugins/Packages/Yum.py src/lib/Bcfg2/Server/Plugins/Properties.py src/lib/Bcfg2/Server/Plugins/__init__.py src/lib/Bcfg2/Server/__init__.py src/sbin/bcfg2-build-reports src/sbin/bcfg2-crypt testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestMetadata.py testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProperties.py
| * XMLFileBacked: fixed deprecated logic when create is lxml.etree._Element objectChris St. Pierre2013-03-281-2/+2
| |
| * XMLFileBacked: track FAM monitors separately from processed xincludes to ↵Chris St. Pierre2013-03-271-2/+8
| | | | | | | | avoid infinite loop with pseudo FAM
| * testsuite: fixed more unit test stuffChris St. Pierre2013-03-261-4/+4
| |
| * fixed regex errors introduced by 6c996f42c53a36fc0406f836d64b8c1bec6f4bccChris St. Pierre2013-03-261-3/+3
| |
| * testsuite: can't disable pylint R0924, since it doesn't exist on older ↵Chris St. Pierre2013-03-261-0/+9
| | | | | | | | pylint and pylint barfs
| * Plugin: use appropriate loggers for Debuggable helper objectsChris St. Pierre2013-03-261-34/+35
| |
| * testsuite: fixed issues found by latest version of pylintChris St. Pierre2013-03-261-13/+13
| |
| * testsuite: fixed issues found by latest version of pep8Chris St. Pierre2013-03-262-21/+20
| |
| * Handle FAM monitor failures more gracefully:Chris St. Pierre2013-03-252-11/+52
| | | | | | | | | | | | | | | | | | * Where possible, create the file or directory that is about to be monitored. This ensures that content can be added later without need to restart Bcfg2. (Otherwise, adding the monitor would fail, and so when you did create the file in question, bcfg2-server would never be notified of it.) * When not possible, give better error messages.
| * Revert "Packages: properly implemented deepcopy() for PackagesSources objects"Chris St. Pierre2013-03-251-33/+0
| | | | | | | | This reverts commit 432f448983ff27452d82d62314d91c942f31bce5.
| * Packages: properly implemented deepcopy() for PackagesSources objectsChris St. Pierre2013-03-251-0/+33
| |
* | Merge branch '1.4.x'Chris St. Pierre2013-04-232-272/+376
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: debian/bcfg2-server.install doc/server/plugins/grouping/metadata.txt src/lib/Bcfg2/Client/Client.py src/lib/Bcfg2/Client/Tools/Portage.py src/lib/Bcfg2/Client/Tools/RcUpdate.py src/lib/Bcfg2/Client/Tools/YUM24.py src/lib/Bcfg2/Client/Tools/__init__.py src/lib/Bcfg2/Client/Tools/launchd.py src/lib/Bcfg2/Options.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/Plugin/helpers.py src/lib/Bcfg2/Server/Plugins/Metadata.py src/lib/Bcfg2/Server/models.py src/lib/Bcfg2/Utils.py src/sbin/bcfg2-info src/sbin/bcfg2-test testsuite/Testsrc/Testlib/TestClient/TestTools/Test_init.py testsuite/Testsrc/test_code_checks.py
| * extended usage of Executor class, added client-side timeout optionsChris St. Pierre2013-02-141-12/+1
| |
| * added support for wildcard XInclude in XMLFileBackedChris St. Pierre2013-02-141-11/+20
| |
| * fixed unit testsChris St. Pierre2013-02-122-4/+4
| |
| * Added client ACLs:Chris St. Pierre2013-02-122-15/+51
| | | | | | | | | | | | | | * IP and CIDR-based ACLs * Metadata (group/hostname)-based ACLs * Documentation * Unit tests
| * expose VCS revision via RMIChris St. Pierre2013-02-121-0/+2
| |
| * made XInlcude and Encryption support more consistentChris St. Pierre2013-02-071-5/+1
| |
| * documented which XML files have which featuresChris St. Pierre2013-02-061-1/+1
| |
| * converted InfoXML objects from XMLSrc to StructFileChris St. Pierre2013-02-061-171/+188
| |
| * moved some libraries in Bcfg2/ into more specific (Server/ or Client/) placesChris St. Pierre2013-02-051-45/+10
| |
| * Bundler: various changesChris St. Pierre2013-02-041-9/+11
| | | | | | | | | | | | | | * Deprecated use of an explicit name attribute * Deprecated .genshi bundles * Minor restructuring for better performance * bcfg2-lint updates
| * added genshi support to StructFileChris St. Pierre2013-02-041-3/+49
| |
| * made genshi a requirementChris St. Pierre2013-01-221-0/+16
| |
| * Merge branch '1.3.1' into 1.4.xChris St. Pierre2013-01-181-4/+1
| |\
| | * StructFile: fixed lax/strict decryption setting with no crypto libs installedChris St. Pierre2013-01-181-4/+1
| | |
| * | Merge branch '1.3.1' into 1.4.xChris St. Pierre2013-01-171-1/+1
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/server/plugins/generators/cfg.txt src/lib/Bcfg2/Server/Admin/Snapshots.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/Plugin/helpers.py src/lib/Bcfg2/Server/Plugins/Bundler.py src/lib/Bcfg2/Server/Plugins/FileProbes.py src/lib/Bcfg2/Server/Plugins/NagiosGen.py src/lib/Bcfg2/Server/Plugins/Packages/PackagesSources.py src/lib/Bcfg2/Server/models.py testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py
| | * StructFile: minor cleanupChris St. Pierre2013-01-171-3/+3
| | |
| | * abstracted encryption support from Properties/CfgPrivateKeyCreator to StructFileChris St. Pierre2013-01-171-1/+63
| | |
| | * added module-level OptionParser to avoid passing it as an argument or global ↵Chris St. Pierre2013-01-171-17/+18
| | | | | | | | | | | | all over
| * | fixed unit tests from mergeChris St. Pierre2013-01-171-3/+2
| | |
| * | fixed unit testsChris St. Pierre2013-01-171-6/+6
| | |
| * | added a module-level FAM object to avoid passing it as an argument a billion ↵Chris St. Pierre2013-01-171-21/+14
| | | | | | | | | | | | times
| * | removed support for info/:info filesChris St. Pierre2013-01-171-32/+4
| | |
| * | StructFile: minor cleanupChris St. Pierre2013-01-171-3/+3
| | |
| * | abstracted encryption support from Properties/CfgPrivateKeyCreator to StructFileChris St. Pierre2013-01-171-1/+63
| | |
| * | added module-level OptionParser to avoid passing it as an argument or global ↵Chris St. Pierre2013-01-171-15/+18
| | | | | | | | | | | | all over
* | | XMLFileBacked: fixed XIncludeChris St. Pierre2013-03-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Clear out "extras" when each event is handled to ensure that we start fresh. Failure to do so prevents the wildcard XInclude munging to work, so the first time an event is processed everything is fine; but when subsequent events are processed, _follow_xincludes() thinks that each xinclude tag has already been munged and only removes it.
* | | Debug improvements:Chris St. Pierre2013-03-191-2/+2
| | | | | | | | | | | | | | | | | | * 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
* | | Core: added more debug logging for core methodsChris St. Pierre2013-03-191-0/+1
| | |
* | | added PEP-8 style checks to test suiteChris St. Pierre2013-03-111-0/+1
| | |
* | | extended usage of Executor class, added client-side timeout optionsChris St. Pierre2013-02-141-12/+1
| | |
* | | added support for wildcard XInclude in XMLFileBackedChris St. Pierre2013-02-141-11/+20
| |/ |/|
* | read default Path metadata from config file properlyChris St. Pierre2013-01-171-1/+3
|/
* get default metadata for Path entries from config file given on command lineChris St. Pierre2013-01-161-1/+1
|
* StructFile: removed unnecessary exception handling in Index()Chris St. Pierre2013-01-031-10/+4
|
* python < 2.6 doesn't support * magic on dotted namesChris St. Pierre2012-12-181-1/+2
|
* added unit tests for Rules and DefaultsChris St. Pierre2012-12-181-6/+2
|