Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Core: collect more performance statistics | Chris St. Pierre | 2012-08-30 | 4 | -36/+76 |
| | |||||
* | Properties: Ignore schema files | Sol Jerome | 2012-08-29 | 1 | -0/+1 |
| | | | | | | | This prevents us from spamming the logs when the user has corresponding schema files. Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | bcfg2-admin: Fix query mode | Sol Jerome | 2012-08-29 | 1 | -1/+1 |
| | | | | | | Access to metadata.clients changed in 8b438fda. Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | bcfg2-admin: Fix traceback in client mode | Sol Jerome | 2012-08-29 | 1 | -1/+1 |
| | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | made bcfg2-admin perf work again | Chris St. Pierre | 2012-08-29 | 3 | -16/+19 |
| | |||||
* | cruft cleanup: removed Component | Chris St. Pierre | 2012-08-29 | 2 | -269/+1 |
| | |||||
* | bcfg2-reports: Point to new settings file | Sol Jerome | 2012-08-29 | 1 | -2/+2 |
| | | | | | | The location of the db settings was changed in 8b438fd. Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | fixed base64 encoding of non-ascii strings | Chris St. Pierre | 2012-08-29 | 2 | -3/+7 |
| | |||||
* | Cfg: clarified genshi errors | Chris St. Pierre | 2012-08-29 | 1 | -4/+5 |
| | |||||
* | Compat: added all() for py2.4 | Chris St. Pierre | 2012-08-28 | 2 | -14/+11 |
| | |||||
* | MetadataQuery: warn if a string is used as argument to ↵ | Chris St. Pierre | 2012-08-28 | 1 | -2/+20 |
| | | | | by_groups/by_profiles/etc. instead of a list | ||||
* | Options: misc. minor fixes | Chris St. Pierre | 2012-08-28 | 1 | -2/+7 |
| | |||||
* | Bcfg2.settings: Fixed config file reading: | Chris St. Pierre | 2012-08-28 | 3 | -18/+28 |
| | | | | | | | | | | | | | | | | | | | | * If -W is given on the command line, the config file given by -W is read. * If /etc/bcfg2-web.conf does not exist, and -C was given on the command line, the config file given by -C is read. * If /etc/bcfg2-web.conf does not exist and -C was not given on the command line, the default /etc/bcfg2.conf is read. * If /etc/bcfg2-web.conf exists, and neither -W nor -C was given on the command line, then /etc/bcfg2-web.conf is read. This will produce errors if: * A bogus (non-existent, unreadable) file was given by -W; or * A bogus file was given by -C and /etc/bcfg2-web.conf does not exist; or * No -W was given and /etc/bcfg2-web.conf exists but is unreadable; or * No -W was given, /etc/bcfg2-web.conf does not exist, and /etc/bcfg2.conf is bogus. | ||||
* | better stringification of Option objects | Chris St. Pierre | 2012-08-28 | 1 | -2/+25 |
| | |||||
* | SELinux: more tool fixes for old-n-busted RHEL 5 | Chris St. Pierre | 2012-08-28 | 1 | -17/+102 |
| | |||||
* | added better common walk_packages implementation for python 2.4 and 2.5 | Chris St. Pierre | 2012-08-27 | 5 | -77/+99 |
| | | | | | | Conflicts: src/lib/Bcfg2/Client/Tools/__init__.py | ||||
* | renamed Bcfg2Py3k to Compat | Chris St. Pierre | 2012-08-27 | 62 | -66/+69 |
| | |||||
* | POSIX: fixed setting handled entries | Chris St. Pierre | 2012-08-27 | 1 | -2/+7 |
| | |||||
* | Docs: cleaned up SSLCA docs | Chris St. Pierre | 2012-08-27 | 1 | -113/+159 |
| | |||||
* | SSLCA: removed redundant verify_certs option | Chris St. Pierre | 2012-08-27 | 1 | -1/+2 |
| | |||||
* | SSLCA: added root_ca option to verify certs against either intermediate or ↵ | Chris St. Pierre | 2012-08-27 | 1 | -5/+13 |
| | | | | root CA | ||||
* | fixed import/usage of MetadataConsistencyError | Chris St. Pierre | 2012-08-27 | 3 | -6/+5 |
| | |||||
* | Packages: added support for generating Apt sources.list | Chris St. Pierre | 2012-08-27 | 2 | -14/+47 |
| | |||||
* | Packages: made url_map consistent across all source types | Chris St. Pierre | 2012-08-27 | 5 | -77/+64 |
| | |||||
* | Merge https://github.com/dikim33/bcfg2 | Sol Jerome | 2012-08-26 | 1 | -1/+8 |
|\ | |||||
| * | Remove the primary group from the list of extra_groups | DongInn Kim | 2012-08-26 | 1 | -1/+8 |
| | | |||||
* | | added SEModules tests | Chris St. Pierre | 2012-08-24 | 1 | -0/+109 |
| | | |||||
* | | Plugin test fixes for SEModules | Chris St. Pierre | 2012-08-24 | 1 | -17/+28 |
| | | |||||
* | | fixed handling of SEModules with multiple specific modules | Chris St. Pierre | 2012-08-24 | 1 | -2/+2 |
| | | |||||
* | | added unit tests for TemplateHelper | Chris St. Pierre | 2012-08-24 | 1 | -0/+120 |
| | | |||||
* | | TemplateHelper: removed support for host- and group-specific helpers | Chris St. Pierre | 2012-08-24 | 2 | -58/+39 |
| | | | | | | | | | | | | | | | | | | | | Supporting these was basically impossible due to the way Python handles bytecode compilation. For instance, 'foo.py.G10_bar' would be compiled to foo.py.G10_barc, which is then indistinguishable from a helper for the group "barc" (or, rather, a _broken_ helper for that group, since a bytecode-compiled module cannot be imported successfully). There's no performance gain from specific helpers anyway -- they all get imported -- so I removed this functionality. | ||||
* | | added some basic plugin interface tests to allow inheritance and ↵ | Chris St. Pierre | 2012-08-24 | 2 | -2/+23 |
| | | | | | | | | forward-compat for future tests | ||||
* | | DirectoryBacked: add class attribute to ignore certain patterns | Chris St. Pierre | 2012-08-24 | 2 | -0/+18 |
| | | |||||
* | | DirectoryBacked/XMLDirectoryBacked: honor "patterns" class attribute | Chris St. Pierre | 2012-08-24 | 2 | -42/+60 |
| | | |||||
* | | fix duplicate repo name infinite loop | Chris St. Pierre | 2012-08-23 | 1 | -1/+1 |
| | | |||||
* | | bcfg2-info: fixed Collection.sourcelist arch filter | Chris St. Pierre | 2012-08-23 | 1 | -0/+2 |
| | | |||||
* | | bcfg2-info: packagessources/packageresolve fail gracefully if Packages ↵ | Chris St. Pierre | 2012-08-23 | 1 | -0/+6 |
| | | | | | | | | plugin not enabled | ||||
* | | make bcfg2-server RPM require the identical version of bcfg2 (client) | Chris St. Pierre | 2012-08-23 | 1 | -1/+1 |
| | | | | | | | | [ci skip] | ||||
* | | SchemaUpdater: fix sorting of updaters | Tim Laszlo | 2012-08-23 | 1 | -1/+2 |
| | | | | | | | | | | The updaters were not getting sorted when a new database was created this caused the wronger version to be set on a new database | ||||
* | | Init: comment out database setting by default | Tim Laszlo | 2012-08-23 | 1 | -6/+6 |
| | | |||||
* | | Templatehelper: fixed inclusion of group- and host-specific helpers | Chris St. Pierre | 2012-08-23 | 1 | -1/+1 |
| | | |||||
* | | finally a relative import fix that works on py2.4 thru 3.2 | Chris St. Pierre | 2012-08-23 | 8 | -8/+40 |
| | | |||||
* | | removed debugging output | Chris St. Pierre | 2012-08-23 | 1 | -2/+0 |
| | | |||||
* | | fixed base_url tests for py2.4/lxml 2.0 | Chris St. Pierre | 2012-08-23 | 1 | -2/+10 |
| | | |||||
* | | removed relative imports from POSIX tools | Chris St. Pierre | 2012-08-23 | 8 | -8/+8 |
| | | |||||
* | | portable way to get regex type | Chris St. Pierre | 2012-08-23 | 1 | -1/+7 |
| | | |||||
* | | removed or fixed functools imports | Chris St. Pierre | 2012-08-23 | 5 | -17/+11 |
| | | |||||
* | | removed two more relative imports | Chris St. Pierre | 2012-08-23 | 2 | -7/+7 |
| | | |||||
* | | removed relative imports from testsuite for py2.4 compat | Chris St. Pierre | 2012-08-23 | 13 | -41/+155 |
| | | |||||
* | | SchemaUpdater: _walk_packages incorrectly used __path__ | Tim Laszlo | 2012-08-22 | 1 | -2/+2 |
| | |