Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixed more pylint tests | Chris St. Pierre | 2014-01-30 | 1 | -1/+2 |
| | |||||
* | load correct JSON library on py2.4 | Chris St. Pierre | 2014-01-29 | 1 | -1/+2 |
| | |||||
* | bcfg2-crypt: actually skip an element when we say we are | Chris St. Pierre | 2013-12-31 | 1 | -0/+1 |
| | |||||
* | bcfg2-crypt: handle error when encrypting properties with multiple keys | Chris St. Pierre | 2013-11-25 | 1 | -4/+8 |
| | |||||
* | bcfg2-crypt: Fixed variable name collision | Chris St. Pierre | 2013-11-12 | 1 | -3/+3 |
| | |||||
* | bcfg2-crypt: backported fixes in b5b26415161e715fe4d22d69328b06801ff7124d | Chris St. Pierre | 2013-11-12 | 1 | -22/+25 |
| | |||||
* | bcfg2-crypt: fixed missing EVPError | Chris St. Pierre | 2013-11-11 | 1 | -2/+1 |
| | |||||
* | bcfg2-crypt: better debugging, error handling with Properties files | Chris St. Pierre | 2013-11-11 | 1 | -3/+37 |
| | |||||
* | bcfg2-crypt: fixed completely backwards logic | Chris St. Pierre | 2013-11-11 | 1 | -1/+1 |
| | |||||
* | bcfg2-crypt: fixed deprecation warning | Chris St. Pierre | 2013-11-05 | 1 | -1/+1 |
| | |||||
* | Merge pull request #110 from AlexanderS/reporting-model-updates | Chris St. Pierre | 2013-11-05 | 1 | -5/+5 |
|\ | | | | | bcfg2-reports: update to use current models | ||||
| * | bcfg2-reports: update to use current models | Alexander Sulfrian | 2013-06-29 | 1 | -5/+5 |
| | | |||||
* | | Plugin: added new Caching interface | Chris St. Pierre | 2013-08-07 | 1 | -2/+3 |
| | | | | | | | | | | | | | | This gives a single unified interface for expiring caches, no matter the plugin. This will be particularly useful with the MultiprocessingCore, as certain calls must be dispatched to child processes to expire their caches. | ||||
* | | bcfg2-yum-helper: disable pylint check | Chris St. Pierre | 2013-08-06 | 1 | -1/+2 |
| | | |||||
* | | bcfg2-yum-helper: fully download group metadata during makecache | Chris St. Pierre | 2013-08-06 | 1 | -0/+1 |
| | | |||||
* | | bcfg2-crypt: prevent traceback for certain decrypt failures | Chris St. Pierre | 2013-08-05 | 1 | -1/+2 |
| | | |||||
* | | bcfg2-yum-helper: populate group cache during makecache | Chris St. Pierre | 2013-07-31 | 1 | -0/+4 |
| | | | | | | | | Fixes #128 | ||||
* | | bcfg2-yum-helper: Fix another python3 syntax error | Sol Jerome | 2013-07-27 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | | bcfg2-yum-helper: Fix python3 syntax error | Sol Jerome | 2013-07-27 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | | bcfg2-yum-helper: added missing docstring | Chris St. Pierre | 2013-07-18 | 1 | -0/+2 |
| | | |||||
* | | Packages: added lock to yum cache update | Chris St. Pierre | 2013-07-18 | 1 | -0/+32 |
| | | |||||
* | | bcfg2-info: fixed expirecache | Chris St. Pierre | 2013-07-18 | 1 | -2/+2 |
| | | |||||
* | | bcfg2-info: added expirecache command to expire metadata cache | Chris St. Pierre | 2013-07-18 | 1 | -0/+10 |
| | | |||||
* | | bcfg2-info: fixed automatch | Chris St. Pierre | 2013-07-18 | 1 | -1/+1 |
| | | |||||
* | | Packages: fixed read-only yum cache | Chris St. Pierre | 2013-07-18 | 1 | -5/+26 |
| | | | | | | | | | | | | Replaced incredibly stupid (mea culpa!) and race-condition-prone system that toggled filesystem permissions (what was I thinking?!?) with judicious application of the yum cacheonly option. | ||||
* | | Read-only yum cache | Chris St. Pierre | 2013-07-15 | 1 | -0/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the yum cache read-only so that bcfg2-yum-helper cannot update the cache on the fly, which should help avoid locking issues with the yum caches that can cause client runs to fail. It also makes the Packages plugin behave more consistently, since use of yum libraries won't cause the cache to be refreshed at random times on the fly, but rather more predictably as with the Apt cache or the yum cache without using yum libraries. Unlike those two cases, though, the caches will not all be downloaded initially, but rather opportunistically as needed. In order for this to work, the Bcfg2 server must not run as root. Root ignores the 'w' permissions bit, so the cache cannot be made read-only. | ||||
* | | Core: apply FAM blocking option to all commands that start a server | Chris St. Pierre | 2013-07-09 | 3 | -3/+3 |
| | | |||||
* | | fixed pylint | Chris St. Pierre | 2013-07-03 | 1 | -1/+1 |
| | | |||||
* | | bcfg2-test: fixed return value | Chris St. Pierre | 2013-07-03 | 1 | -3/+6 |
| | | |||||
* | | Rewrote bcfg2-crypt. | Chris St. Pierre | 2013-07-02 | 1 | -303/+232 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds several features and generally makes it work a lot more smoothly by not trying to overoptimize and share too much code. You can now brute-force decrypt a Cfg file (i.e., without specifying a passphrase, it will try all of them). You can also now write a Properties file with `encrypted="passphrase_name"` attributes in place, and then encrypt (and decrypt) it in one fell swoop. Various other minor improvements. | ||||
* | | bcfg2-info: added command timeout option | Chris St. Pierre | 2013-07-01 | 1 | -1/+2 |
|/ | |||||
* | bcfg2-test: Move signal handler | Sol Jerome | 2013-06-26 | 1 | -1/+1 |
| | | | | | | | Code was refactored such that this signal handler got put in the wrong place during the revert. Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | bcfg2-test: Fix merge thinko | Sol Jerome | 2013-06-26 | 1 | -5/+4 |
| | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | Revert "Core: properly handle Ctrl-C" | Sol Jerome | 2013-06-26 | 1 | -0/+17 |
| | | | | | | | | | | | | | | This reverts commit 4568c44372c99ba809826e016680da9b881bd8e8. Trying to handle ^c in the core is difficult and can break STDOUT for interactive programs that invoke the core. Signed-off-by: Sol Jerome <sol.jerome@gmail.com> Conflicts: src/lib/Bcfg2/Server/Core.py src/sbin/bcfg2-test tools/bcfg2-profile-templates.py | ||||
* | bcfg2-info: Remove nonexistent option | Sol Jerome | 2013-06-21 | 1 | -1/+0 |
| | | | | | | This option was removed in f157617a5c. Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | bcfg2-yum-helper: fixed unit tests | Chris St. Pierre | 2013-06-14 | 1 | -5/+8 |
| | |||||
* | Yum: handle and log helper errors better | Chris St. Pierre | 2013-06-13 | 1 | -19/+45 |
| | |||||
* | fixed unit tests | Chris St. Pierre | 2013-06-03 | 1 | -1/+2 |
| | |||||
* | bcfg2-admin: set appropriate return values on error | Chris St. Pierre | 2013-06-03 | 1 | -2/+2 |
| | |||||
* | Revert "bcfg2-admin: set appropriate return values on error" | Chris St. Pierre | 2013-06-03 | 1 | -2/+2 |
| | | | | | | This reverts commit dae8f399151052fd2a0ce43ac61a56f399a28252. Splitting this into two commits. | ||||
* | bcfg2-admin: set appropriate return values on error | Chris St. Pierre | 2013-06-03 | 1 | -2/+2 |
| | |||||
* | bcfg2-lint: log run time for each lint plugin | Chris St. Pierre | 2013-06-03 | 1 | -1/+5 |
| | |||||
* | bcfg2-info: Handle IOErrors | Sol Jerome | 2013-06-02 | 1 | -4/+8 |
| | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com> | ||||
* | really fixed pylint issues with cbcfg2-server | Chris St. Pierre | 2013-05-23 | 1 | -4/+3 |
| | |||||
* | fixed pylint test | Chris St. Pierre | 2013-05-23 | 1 | -1/+2 |
| | |||||
* | added multiprocessing server core | Chris St. Pierre | 2013-05-20 | 1 | -10/+21 |
| | |||||
* | bcfg2-lint: fixed unit tests | Chris St. Pierre | 2013-05-14 | 1 | -1/+1 |
| | |||||
* | doc: added devel docs for bcfg2-lint plugins | Chris St. Pierre | 2013-05-14 | 1 | -3/+3 |
| | |||||
* | bcfg2-info: running packageresolve with no packages uses the actual package ↵ | Chris St. Pierre | 2013-05-07 | 1 | -13/+17 |
| | | | | list of the host | ||||
* | added remaining required Core.load_plugins() calls | Chris St. Pierre | 2013-05-07 | 1 | -1/+2 |
| |