summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Cfg
Commit message (Collapse)AuthorAgeFilesLines
...
| * | removed support for info/:info filesChris St. Pierre2013-01-172-53/+0
| | |
| * | removed support for .cat/.diff filesChris St. Pierre2013-01-173-79/+1
| | |
| * | removed mode="inherit" supportChris St. Pierre2013-01-171-7/+0
| | |
| * | abstracted encryption support from Properties/CfgPrivateKeyCreator to StructFileChris St. Pierre2013-01-172-42/+4
| | |
| * | added module-level OptionParser to avoid passing it as an argument or global ↵Chris St. Pierre2013-01-177-62/+42
| | | | | | | | | | | | all over
* | | better error message when rendering a template that failed to parseChris St. Pierre2013-02-211-0/+4
| |/ |/|
* | fixed checking Genshi templates for comments (#1141)Chris St. Pierre2013-02-141-0/+1
| |
* | fixed unit testsChris St. Pierre2013-02-131-7/+4
| |
* | Cfg: better error handling from verifiers, :testChris St. Pierre2013-02-082-7/+14
|/
* Made a few encryption things simpler:Chris St. Pierre2013-01-171-2/+4
| | | | | | * Only one strict/lax setting, in [encryption], rather than separate settings in [properties] and [sshkeys] * No longer necessary to enable encryption on each Properties file
* testsuite: fixed tests for decryption in Properties/CfgPrivateKeyCreatorChris St. Pierre2013-01-161-1/+1
|
* Cfg: Revert change from 10326a34Sol Jerome2013-01-081-1/+1
| | | | | | This change broke altsrc entries. Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Cfg: handle filenames with regex special characters properlyChris St. Pierre2013-01-071-1/+2
|
* Cfg: fixed existing Cfg bcfg2-lint plugin, added plugin to check for ↵Chris St. Pierre2013-01-031-23/+60
| | | | privkey.xml without pubkey.xml
* Cfg: Added feature to provide generation of SSH keys, authorized_keys fileChris St. Pierre2013-01-034-20/+497
|
* Cfg: added creator handler to perform one-time creation of static dataChris St. Pierre2012-12-203-59/+159
|
* fixed line length in Cfg docsChris St. Pierre2012-12-041-21/+19
|
* doc: wrote devel docs for client tool base objectsChris St. Pierre2012-12-041-5/+6
|
* fixed conversion to octal in py3kChris St. Pierre2012-12-041-2/+3
|
* Cfg: Fixed bugs in Genshi error handling:Chris St. Pierre2012-11-291-11/+54
| | | | | * Find the correct frame of the stack trace if the exception is raised by something outside the template * Determine if the version of Genshi in use strips all blank lines or not to correctly locate the line of the error
* avoid odd edge case in genshi error handlingChris St. Pierre2012-11-261-3/+7
|
* Templating updates:Chris St. Pierre2012-11-192-3/+7
| | | | | | * Added "repo" variable to all template formats * Made variables available in Genshi and Cheetah template more similar * Improved docs
* Cfg: improved error messagesChris St. Pierre2012-11-138-65/+27
|
* Cfg: prevent genshi loader from caching templatesChris St. Pierre2012-11-131-4/+1
|
* improved error messages during failed decryptionChris St. Pierre2012-10-242-4/+7
|
* CfgLegacyInfo: Move the dict outside of the for loopTim Laszlo2012-10-171-7/+6
|
* assigned Cfg handlers explicit priorities to avoid over-zealous regex matchesChris St. Pierre2012-10-177-3/+36
|
* Plugins: Update builtin plugins to use 'mode' attributeSol Jerome2012-10-152-7/+7
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Reporting: Merge new reporting dataTim Laszlo2012-10-081-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Cfg: fixed regexes for handling and ignoring files with different Cfg handlersChris St. Pierre2012-10-031-39/+17
|
* Cfg: fixed some issues with genshi error handlingChris St. Pierre2012-10-031-2/+2
|
* testsuite: added unit tests for Cfg handlersChris St. Pierre2012-10-027-24/+27
|
* Cfg: deprecated perms="inherit"Chris St. Pierre2012-10-021-0/+2
|
* testsuite: unit tests for Cfg plugin and base handlersChris St. Pierre2012-10-021-100/+124
|
* run pylint for errors on almost everything, full runs on some selected stuffChris St. Pierre2012-09-258-116/+144
|
* Encryption: improved docs, made algorithm configurableChris St. Pierre2012-09-203-23/+40
|
* Cfg: documented all Cfg modules, added development docsChris St. Pierre2012-09-1112-96/+444
|
* Documented all plugin helper objectsChris St. Pierre2012-09-061-1/+0
|
* deprecated info/:info, .cat, and .diff filesChris St. Pierre2012-08-314-1/+12
|
* Cfg: clarified genshi errorsChris St. Pierre2012-08-291-4/+5
|
* added better common walk_packages implementation for python 2.4 and 2.5Chris St. Pierre2012-08-271-20/+7
| | | | | | Conflicts: src/lib/Bcfg2/Client/Tools/__init__.py
* renamed Bcfg2Py3k to CompatChris St. Pierre2012-08-272-2/+2
|
* fixed handling of regex filename patterns in GroupSpool/EntrySetChris St. Pierre2012-08-221-1/+1
|
* do not require a priority attribute on InfoXML files at allChris St. Pierre2012-08-221-1/+1
|
* fixed lxml.etree.tostring invocationsChris St. Pierre2012-08-221-2/+2
|
* fixed encoding of Cfg files with unicode contentsChris St. Pierre2012-08-221-1/+1
|
* merged cheetah encoding fixes from maintChris St. Pierre2012-08-222-3/+5
|
* lots of various py3k fixesChris St. Pierre2012-08-211-15/+14
|
* fixed EntrySet.best_matching()Chris St. Pierre2012-08-201-0/+5
|
* FileProbes: fixed bug introduced by Cfg rewriteChris St. Pierre2012-08-161-0/+13
|