summaryrefslogtreecommitdiffstats
path: root/src/sbin
Commit message (Collapse)AuthorAgeFilesLines
* made bcfg2-lint load lint plugins from server plugins where appropriateChris St. Pierre2012-06-141-20/+37
|
* bcfg2-reports: pull good entries from the databaseTim Laszlo2012-06-141-3/+2
|
* bcfg2-reports: exit if file cannot be readChris St. Pierre2012-06-141-0/+1
|
* bcfg2-reports: exclude clients without an interactionTim Laszlo2012-06-141-1/+1
|
* bcfg2-reports improvements:Chris St. Pierre2012-06-141-336/+239
| | | | | | * Rewrote script, particularly option parsing, to be much more maintainable * Clarified usage message * Added --entrystatus mode
* bcfg2-crypt fixesChris St. Pierre2012-06-071-58/+62
|
* bcfg2-info: print trace when buildfile failsTim Laszlo2012-06-071-1/+3
|
* added -B (skip bundles) and -Z (skip independent) optionsChris St. Pierre2012-06-061-2/+6
|
* added properties element encryptionChris St. Pierre2012-06-061-0/+321
| | | | added bcfg2-crypt utility for encrypting Properties and Cfg files
* fixed caching of Collection objects; moved bcfg2-info packagesources code ↵Chris St. Pierre2012-06-011-24/+1
| | | | into Collection.py
* py2.4 doesn't have finally; wrong logic, anywayChris St. Pierre2012-06-011-4/+5
|
* minor option cleanupChris St. Pierre2012-06-011-6/+8
|
* fixed typoChris St. Pierre2012-06-011-36/+35
|
* bcfg2-info: Add support for bpythonSol Jerome2012-05-271-0/+3
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* bcfg2-admin: Logging broken for reportsTim Laszlo2012-05-231-3/+7
|
* bcfg2-info builddir requires interactive flagChris St. Pierre2012-05-221-1/+2
|
* fixed option group stuffChris St. Pierre2012-05-214-6/+7
|
* added option groupsChris St. Pierre2012-05-216-162/+64
|
* fixes for missing genshiChris St. Pierre2012-05-211-3/+9
|
* Added inotify filemonitor driverChris St. Pierre2012-05-185-2/+7
| | | | Moved list of files to ignore into config
* added ability to disable Cfg file validationChris St. Pierre2012-05-111-0/+1
|
* moved plugin-specific configs to main config file; propagate "setup" object ↵Chris St. Pierre2012-05-115-35/+35
| | | | to server Core
* fixed buildall wildcard stuffChris St. Pierre2012-05-041-5/+7
|
* fixed bcfg2-lint --show-errorsChris St. Pierre2012-05-031-15/+9
|
* made bcfg2-info buildall accept list of clients; added buildallfile commandChris St. Pierre2012-05-011-26/+111
|
* Merge branch 'maint'Sol Jerome2012-04-191-14/+20
|\ | | | | | | | | | | | | Conflicts: src/sbin/bcfg2-info Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
| * bcfg2-info: Fix packagesources commandSol Jerome2012-04-191-14/+20
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | removed broken Revision stuff from bcfg2-infoChris St. Pierre2012-04-131-8/+1
| |
* | added ability to pass options to nose, ignore tests, test specific clients ↵Chris St. Pierre2012-04-131-28/+76
| | | | | | | | to bcfg2-test
* | added ability to query bcfg2-info for versionChris St. Pierre2012-04-131-23/+27
| |
* | fixed mode of bcfg2-testChris St. Pierre2012-04-091-0/+0
| |
* | bcfg2-admin: Remove duplicate 'Usage'Sol Jerome2012-04-021-2/+1
| | | | | | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* | made bcfg2-info work with newer IPythonChris St. Pierre2012-04-021-2/+7
| |
* | Remove svn keywordsSol Jerome2012-02-198-17/+1
|/ | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* made bcfg2-admin accept -Q flag and a few others; general code cleanupChris St. Pierre2012-01-261-1/+7
|
* fixed bug with setting arch groups properly (reported by esrax in #bcfg2)Chris St. Pierre2012-01-261-8/+14
|
* suppress error message from bcfg2-admin Reports module if Reports not ↵Chris St. Pierre2012-01-261-3/+2
| | | | configured (#1056)
* implemented something like service removal (#1075)Chris St. Pierre2012-01-241-1/+1
|
* improved Packages debug info, added packageresolve and packagesources ↵Chris St. Pierre2012-01-242-26/+79
| | | | bcfg2-info commands
* fixed typoChris St. Pierre2012-01-191-1/+1
|
* Move sorting to the server core, rather than just in bcfg2 infoCalen Pennington2012-01-181-10/+1
|
* Sort xml by name, so that output is consistent between runs, making diffing ↵Calen Pennington2012-01-181-1/+10
| | | | easier
* fixed edge case where the same package exists in two repos available to the ↵Chris St. Pierre2012-01-181-1/+2
| | | | same client
* improved logging/debugging from bcfg2-yum-helperChris St. Pierre2012-01-181-22/+53
|
* Set YumBase config properly (#1073)Chris St. Pierre2012-01-171-0/+1
|
* Only use a minimal filemonitor for testingCalen Pennington2012-01-161-2/+3
| | | | (cherry picked from commit 18fbd90fb23a7e9c7a79fcfa3e570be45996a043)
* Use cProfile if available, otherwise use standard python profileCalen Pennington2012-01-131-1/+4
| | | | | | | cProfile, when available (python >= 2.5), gives enhanced profiling of c calls (and has a lower overhead). This means it's possible to find things like socket.gethostbyname that might be eating up large amounts of time (without showing up in the standard profile reports).
* Use native elementtree call to write configuration to diskCalen Pennington2012-01-131-4/+1
| | | | | This simplifies the logic, although it doesn't have any measurable performance improvements.
* Fix how the filemonitor is passed to core, so that it's actually passed as ↵Calen Pennington2012-01-121-1/+1
| | | | the filemonitor parameter
* Teach bcfg2-info to use the filemonitor specified in the config fileCalen Pennington2012-01-111-4/+4
|