summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugins/Packages
Commit message (Collapse)AuthorAgeFilesLines
* Allow to run directly from a git checkout (#1037)Sol Jerome2012-03-248-1943/+0
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* fixed automatic handling of GPGKeysChris St. Pierre2012-03-211-23/+41
|
* fixed debug output from bcfg2-yum-helperChris St. Pierre2012-03-211-4/+2
|
* filter out characters yum dislikes in repo namesChris St. Pierre2012-03-151-3/+7
|
* set default debuglevel for Packages yum configs, add debug output from ↵Chris St. Pierre2012-02-231-0/+6
| | | | bcfg2-yum-helper
* catch error if Packages plugin lacks permissions to create cachedirChris St. Pierre2012-02-061-1/+6
|
* made PackagesConfig object more resilient on initial plugin loadingChris St. Pierre2012-02-061-1/+1
|
* made automatic repository naming not suck horriblyChris St. Pierre2012-01-252-10/+32
|
* removed unnecessary raise (#1068)Chris St. Pierre2012-01-241-1/+0
|
* fixed metadata/resolver option defaultsChris St. Pierre2012-01-241-0/+4
|
* improved Packages debug info, added packageresolve and packagesources ↵Chris St. Pierre2012-01-241-13/+10
| | | | bcfg2-info commands
* clarified handling of boolean values in packages.confChris St. Pierre2012-01-231-4/+16
|
* fixed parsing of newer yum repos (#1027)Chris St. Pierre2012-01-231-4/+5
|
* added toggle_debug back to Packages (#1091)Chris St. Pierre2012-01-238-86/+104
|
* fixed bugs in Packages implementation of SimpleConfigChris St. Pierre2012-01-132-14/+13
|
* merged branch rules_regexChris St. Pierre2012-01-134-58/+23
|\
| * added SimpleConfig plugin for easy config files; made Packages and Rules use ↵Chris St. Pierre2011-12-304-58/+23
| | | | | | | | SimpleConfig; made regex in rules off by default, but configurable in rules.conf
* | strip trailing slash from key URL to avoid funky tracebackChris St. Pierre2012-01-031-1/+2
|/
* Packages: Don't reverse the order of <Source>sHolger Weiß2011-12-021-5/+0
| | | | | | | | If a package is available in multiple repositories, the first one specified in the sources.xml file should be used for dependency resolution. In the past, the Packages code had to reverse the internal order of sources to achieve this effect; with the current code, this is no longer the case.
* added support for default/mandatory/optional package groupsChris St. Pierre2011-11-174-8/+14
|
* Packages: Fix md5 importRob Lemley2011-11-112-2/+2
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* avoid backtrace if bcfg2-yum-helper fails to resolve a groupChris St. Pierre2011-11-011-1/+5
|
* removed unnecessary caching from Yum Packages handlerChris St. Pierre2011-11-011-131/+4
|
* ensure that source cache files do not get cleared on server startupChris St. Pierre2011-10-241-2/+3
|
* avoid backtrace when bcfg2-yum-helper does not existChris St. Pierre2011-10-191-1/+8
|
* Various Packages plugin fixes:Chris St. Pierre2011-10-196-367/+231
| | | | | | | | | | | | | * Added bcfg2-yum-helper to offload Yum API calls to a short-lived process. As absurd as this is, it appears to be the standard way to get around Yum's atrocious memory handling (cf. yum-updatesd). * Added SourceInitError for non-fatal errors instantiating new sources. * Fixed bug that caused all cached data to be removed on server startup (reported by mikemccllstr on IRC). * Fixed a number of overly aggressive caching issues. * Fixed the way sources are loaded at server startup. * Fixed handling of Yum package groups.
* Improve error handling of Packages plugin.Mike McCallister2011-10-157-40/+42
| | | | | | | | | | | | Provide a descriptive error message that avoids logging a traceback. Error out (instead of continuing) upon receiving an HTTP error or an indication that the URL is malformed. Only write data to the cache file if it was successfully retrieved from the URL. Make log messages for Packages plugin use consistent "Packages:" prefix.
* Replaced print statements in Packages with logger calls.Mike McCallister2011-10-152-4/+4
|
* fixed inclusion of group packagesChris St. Pierre2011-10-122-4/+12
| | | | fixed loading of sources at server startup
* only cache packages from a package set, not unknownsChris St. Pierre2011-10-121-5/+7
|
* fixed variable name typoChris St. Pierre2011-10-101-3/+3
|
* don't cache collections by hostname; this could lead to bad data if a host ↵Chris St. Pierre2011-10-072-30/+17
| | | | changes OS
* * Added support for yum libraries (if available and configured). ThisChris St. Pierre2011-10-078-0/+2145
can dramatically reduce memory usage, and fixed several bugs: * #1014 (Package plugin can't resolve dependencies for rpms with Require: tags for full paths that aren't Provided explicitly) * #991 (Dependency Resolution difference between Package and yum) * #996 (Packages high memory usage) * Added support for Yum package groups when using yum libraries (#1039) * Fixed #911 (bcfg2 output for wrong package version with Packages is misleading) * YUMng turns down the Yum debug level itself depending on the debug/verbosity level requested by bcfg2 so you don't have to reduce the Yum debug level on a global basis * Added support for Pulp repositories, including registering Pulp consumers and binding to repositories * Added ability to disable magic OS groups