summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Packages/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Packages: fixed metadata.Packages["sources"]Chris St. Pierre2013-10-091-1/+1
|
* 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).
* MultiprocessingCore: added a way to dispatch RMI calls to child processesChris St. Pierre2013-08-071-0/+3
|
* Plugin: added new Caching interfaceChris St. Pierre2013-08-071-0/+5
| | | | | | | 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
|
* Packages: better stringification/representation of OnDemandDictChris St. Pierre2013-07-181-1/+1
|
* Packages: added missing docstringChris St. Pierre2013-07-151-0/+3
|
* Read-only yum cacheChris St. Pierre2013-07-151-10/+75
| | | | | | | | | | | | | | | | 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.
* Plugins/Packages: add missing format string parameterAlexander Sulfrian2013-06-281-1/+2
|
* Packages: don't cache package collections with no sourcesChris St. Pierre2013-05-211-2/+3
|
* Packages: handle URLErrors (e.g., timeouts) when downloading GPG keys betterChris St. Pierre2013-05-101-2/+2
|
* remove some unnecessary __all__ variablesChris St. Pierre2013-03-291-1/+2
|
* Change generated APT sources default to someplace APT will actually look, ↵Phil Miller2013-03-281-1/+1
| | | | and avoid potential name conflicts there
* testsuite: fixed issues found by latest version of pep8Chris St. Pierre2013-03-261-8/+8
|
* Packages: add and expose get_config() function to get configs for other hostsChris St. Pierre2013-03-251-1/+10
|
* Revert "Packages: expose full source list via Connector interface"Chris St. Pierre2013-03-251-3/+1
| | | | This reverts commit fe7a3e9c7a7d66cccbd825465cefcf88165a0c3a.
* Revert "Packages: properly implemented deepcopy() for PackagesSources objects"Chris St. Pierre2013-03-251-10/+1
| | | | This reverts commit 432f448983ff27452d82d62314d91c942f31bce5.
* Packages: properly implemented deepcopy() for PackagesSources objectsChris St. Pierre2013-03-251-1/+10
|
* Packages: expose full source list via Connector interfaceChris St. Pierre2013-03-251-1/+3
|
* YUM: Adding functionality to YUM client tool to resolve YUM groups when ↵Jason Kincl2013-02-221-0/+5
| | | | server-side resolver is off
* Packages: fixed overzealous deduplication of packages that removed essential ↵Chris St. Pierre2013-02-221-6/+8
| | | | and group packages
* Packages: fixed several bugs that could cause duplicate Package entriesChris St. Pierre2013-02-061-13/+13
|
* fixed plugin-specific implementations of toggle_debug for new set_debug stuffChris St. Pierre2012-11-161-5/+5
|
* Packages: import error we catchChris St. Pierre2012-10-161-1/+1
|
* Packages: better error handling for GPG key downloadingChris St. Pierre2012-10-161-3/+15
|
* Plugins: Update builtin plugins to use 'mode' attributeSol Jerome2012-10-151-1/+1
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Packages: updated pulp repo handling to latest Pulp v1 APIChris St. Pierre2012-10-111-3/+6
|
* Packages: added stats trackingChris St. Pierre2012-10-101-0/+5
|
* testsuite: expanded pylint coverageChris St. Pierre2012-10-031-9/+9
|
* misc. minor bug fixesChris St. Pierre2012-09-251-2/+2
|
* run pylint for errors on almost everything, full runs on some selected stuffChris St. Pierre2012-09-251-1/+7
|
* Packages: deprecated magic groups, disabled by defaultChris St. Pierre2012-09-211-1/+9
|
* Packages: fixed reload on server startupChris St. Pierre2012-09-201-8/+9
|
* documented packages backendsChris St. Pierre2012-09-201-3/+1
|
* documented PackagesSourcesChris St. Pierre2012-09-201-23/+101
|
* documented Packages base classChris St. Pierre2012-09-201-36/+189
|
* Source fully documentedChris St. Pierre2012-09-201-6/+6
|
* development docs for Packages: Collection docs writtenChris St. Pierre2012-09-201-11/+13
|
* renamed Bcfg2Py3k to CompatChris St. Pierre2012-08-271-1/+1
|
* fixed lxml.etree.tostring invocationsChris St. Pierre2012-08-221-1/+1
|
* lots of various py3k fixesChris St. Pierre2012-08-211-1/+2
|
* Packages is no longer experimentalChris St. Pierre2012-08-151-1/+0
|
* fixed calculation of new packages listChris St. Pierre2012-08-031-1/+1
|
* made yum Packages backend support resolving by version (#1112)Chris St. Pierre2012-08-031-7/+2
|
* batch up get_group calls in Packages to improve performance (#1101)Chris St. Pierre2012-08-011-11/+8
|
* made path to Packages cache configurableChris St. Pierre2012-08-011-14/+25
|
* fixed typo in Packages end_statistics hookChris St. Pierre2012-06-191-1/+1
|
* merged maintChris St. Pierre2012-06-191-2/+2
|
* added end_statistics hook to ClientRunHooks; added calls to Packages and ↵Chris St. Pierre2012-06-121-0/+3
| | | | PuppetENC to clean cache after statistics, too
* converted Packages to use ClientRunHooks instead of abusing GoalValidatorChris St. Pierre2012-06-121-7/+5
|