summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Metadata: group_in_category fixes"Chris St. Pierre2013-08-161-18/+5
| | | | | | | | This reverts commit 35498c8b849c15632d720656d5736c4c85f76b53. group_in_category() access data that's held on the ClientMetadata object, and getting that data via the MetadataQuery object would be more expensive.
* Probes: rewrite for new caching systemChris St. Pierre2013-08-161-173/+236
| | | | | | | | | | | Substantially rewrote the way the Probes plugin caches data. Formerly, it was structured to assume that probe data was stored in probed.xml, with the database feature very much a second-class citizen; this adds a proper abstraction layer between the persistent storage and the plugin (and its caches). Also rewrote most Probes unit tests to actually be useful unit tests, not implementation tests.
* Rewrote arbitrary data cache systemChris St. Pierre2013-08-168-141/+209
| | | | | | | | | | | | The caching facilities in Bcfg2.Server.Cache provided basically no features. This rewrites that to allow for much more powerful cache expiration, with a particular focus on interoperation between different components and plugins to let caches be expired as necessary. (E.g., the Probes plugin can expire the Metadata cache.) This does not affect any of the file data cached by Bcfg2, only the caches that are populated with arbitrary data (Metadata, Packages, Probes, etc.).
* Metadata: group_in_category fixesChris St. Pierre2013-08-151-5/+18
| | | | | | | Moved ClientMetadata.group_in_category to MetadataQuery.group_in_category, with a deprecation warning for the old place. Also changed the null answer (i.e., this client isn't in a group in that category) to None from ''.
* PrioDir: Fixed event handlerChris St. Pierre2013-08-141-7/+6
|
* testsuite: fixed unit tests for new SSLCA stuffChris St. Pierre2013-08-132-9/+9
|
* Rewrote SSLCA as Cfg handler.Chris St. Pierre2013-08-138-499/+433
| | | | | | | | | | | | | | | | | This adds encryption support to SSL key creation (much like SSH private keys), and the ability to generate keys and certs that are specific to groups, instead of just to hosts. It also moves the SSLCA data (the XML files describing keys and certs as well as the keys and certs themselves) into the Cfg tree, rather than off in their own separate place. tools/upgrade/1.4/migrate_sslca.py can be used to migrate to the new format. This also adds XMLCfgCreator, a CfgCreator that makes it easier to create data based on XML descriptions of it (which is exactly what the SSH key and SSL CA creators do), including built-in support for host- and group-specific data, encryption, and so on.
* man: updated bcfg2-admin man pageChris St. Pierre2013-08-131-1/+1
|
* testsuite: fixed more unit testsChris St. Pierre2013-08-121-1/+1
|
* testsuite: fixed unit testsChris St. Pierre2013-08-121-1/+1
|
* Merge branch 'maint'Chris St. Pierre2013-08-125-15/+27
|\ | | | | | | | | | | Conflicts: src/lib/Bcfg2/Server/Admin/Viz.py src/lib/Bcfg2/Server/Plugins/Packages/__init__.py
| * Viz: include clients that should be included, not vice-versaChris St. Pierre2013-08-091-1/+1
| |
| * Viz: exclude duplicate bundles for a given hostChris St. Pierre2013-08-091-3/+4
| |
| * Viz: distinguish categories from hostsChris St. Pierre2013-08-092-1/+2
| |
| * Packages: always add collections to group/package cacheChris St. Pierre2013-08-091-4/+8
| | | | | | | | | | | | | | This fixes cases where the collection itself would not be cached because a host had no sources, or multiple sources of different types; we still want to cache package group results and package sets (both of which will be empty).
| * Metadata: Fix bundle visualizationSol Jerome2013-08-091-1/+1
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
| * MultiprocessingCore: added missing docstringChris St. Pierre2013-08-091-0/+2
| |
| * Core: iterate over RMI objects properlyChris St. Pierre2013-08-092-3/+3
| |
| * Core: fixed py3k incompatibilityChris St. Pierre2013-08-092-6/+10
| | | | | | | | | | Also abstracted getting the list of objects that may register RMI calls into a separate function.
| * Metadata: catch dns lookup errors betterChris St. Pierre2013-08-081-1/+1
| |
* | testsuite: fixed more unit testsChris St. Pierre2013-08-129-65/+38
| |
* | testsuite: fixed most pylint complaintsChris St. Pierre2013-08-0925-47/+141
| |
* | Plugins: Fixed/made consistent Django model loadChris St. Pierre2013-08-092-5/+2
| |
* | MultiprocessingCore: fixed Cache importChris St. Pierre2013-08-091-1/+1
| |
* | testsuite: fixed unit tests for server pluginsChris St. Pierre2013-08-092-8/+9
| |
* | testsuite: Fixed base plugin testsChris St. Pierre2013-08-091-1/+2
| |
* | Merge branch 'options-rewrite'Chris St. Pierre2013-08-0879-2902/+4814
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/lib/Bcfg2/Client/Frame.py src/lib/Bcfg2/Options.py src/lib/Bcfg2/Server/Admin/Init.py src/lib/Bcfg2/Server/Admin/Xcmd.py src/lib/Bcfg2/Server/BuiltinCore.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/MultiprocessingCore.py src/lib/Bcfg2/Server/Plugin/base.py src/lib/Bcfg2/Server/Plugin/helpers.py src/lib/Bcfg2/Server/Plugins/Cfg/__init__.py src/lib/Bcfg2/Server/Plugins/Packages/Yum.py src/lib/Bcfg2/Server/Plugins/Packages/__init__.py src/lib/Bcfg2/Server/SSLServer.py src/lib/Bcfg2/Utils.py src/lib/Bcfg2/settings.py src/sbin/bcfg2-crypt src/sbin/bcfg2-info src/sbin/bcfg2-lint src/sbin/bcfg2-test src/sbin/bcfg2-yum-helper tools/bcfg2-profile-templates.py
| * | Options: migrated bcfg2-yum-helperChris St. Pierre2013-06-271-0/+294
| | |
| * | Options: migrated generic database stuff to new parserChris St. Pierre2013-06-271-59/+56
| | |
| * | Options: migrated bcfg2-crypt and Encryption libs to new parserChris St. Pierre2013-06-271-41/+530
| | |
| * | Options: converted filemonitors to new options parserChris St. Pierre2013-06-273-41/+25
| | |
| * | Options: migrated bcfg2-test to new parserChris St. Pierre2013-06-271-0/+276
| | |
| * | Options: migrated bcfg2-admin to new parserChris St. Pierre2013-06-2713-1385/+1164
| | |
| * | Options: migrated bcfg2-info to new parserChris St. Pierre2013-06-271-0/+861
| | |
| * | Options: migrated bcfg2-lint to new parserChris St. Pierre2013-06-2714-86/+780
| | |
| * | Options: migrated server core to new option parserChris St. Pierre2013-06-275-258/+267
| | |
| * | Options: migrated plugins to new options parserChris St. Pierre2013-06-2739-973/+499
| | |
* | | Merge branch 'maint'Chris St. Pierre2013-08-0812-211/+546
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/appendix/files/mysql.txt doc/getting_started/index.txt doc/server/plugins/structures/bundler/kernel.txt src/lib/Bcfg2/Server/MultiprocessingCore.py src/lib/Bcfg2/Server/Plugin/interfaces.py src/lib/Bcfg2/Server/Plugins/Packages/Yum.py src/lib/Bcfg2/Server/Plugins/Probes.py src/lib/Bcfg2/Server/Plugins/SSHbase.py
| * | Plugin: added missing docstringChris St. Pierre2013-08-071-0/+11
| | |
| * | MultiprocessingCore: added a way to dispatch RMI calls to child processesChris St. Pierre2013-08-075-14/+90
| | |
| * | Plugin: added new Caching interfaceChris St. Pierre2013-08-078-15/+58
| | | | | | | | | | | | | | | | | | | | | 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.
| * | Packages: cache group and package selectionsChris St. Pierre2013-08-071-5/+32
| | |
| * | Merge pull request #130 from ↵Chris St. Pierre2013-08-071-12/+16
| |\ \ | | | | | | | | | | | | | | | | fennm/metadata-dont-update-xml-on-gratuitous-profile-update Metadata: Don't update XML on gratuitous profile update
| | * | Get profile by building metadata instead of guessingMichael Fenn2013-08-061-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | Rather than doing some ad-hoc lookups of internal data structures stpierre suggested that it'd be better to use the normal metadata build procedures. This implements that and adjusts the tests.
| | * | Make updating the structures conditional on profile changingMichael Fenn2013-08-051-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | Based on the expectations of the tests, I am reasonably confident that updating the in memory structures is logically part of changing the client's profile so I put it in the if block
| | * | Found a stray write that should be part of the new client caseMichael Fenn2013-08-051-2/+2
| | | |
| | * | Make pylint happyMichael Fenn2013-08-051-1/+1
| | | |
| | * | Metadata: Don't update XML on gratuitous profile updateMichael Fenn2013-08-051-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Check to see if the profile that is being set by set_profile exactly matches the existing profile list. If it does, then avoid writing out a new clients.xml. This simple optimization reduces the amount of clients.xml rewriting that occurs if you have a bunch of clients running bcfg2 -p at the same time (for example, during a cluster rebuild).
| * | | Probes: properly clear cacheChris St. Pierre2013-08-061-2/+4
| | | | | | | | | | | | | | | | | | | | When reloading probe groups/data for a single client from the database, only clear data for that client, not for all clients.
| * | | Probes: expire metadata cache after loading dataChris St. Pierre2013-08-061-0/+6
| | | |