summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/SSHbase.py
Commit message (Collapse)AuthorAgeFilesLines
* testsuite: fixed most pylint complaintsChris St. Pierre2013-08-091-4/+0
|
* Merge branch 'options-rewrite'Chris St. Pierre2013-08-081-10/+13
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 plugins to new options parserChris St. Pierre2013-06-271-10/+13
| |
* | Merge branch 'maint'Chris St. Pierre2013-08-081-1/+5
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | 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 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.
* | Merge branch 'maint'Chris St. Pierre2013-05-171-3/+4
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/appendix/guides/centos.txt doc/server/plugins/grouping/metadata.txt setup.py src/lib/Bcfg2/Client/Frame.py src/lib/Bcfg2/Client/Proxy.py src/lib/Bcfg2/Server/Lint/Genshi.py src/lib/Bcfg2/Server/Lint/Validate.py src/lib/Bcfg2/Server/Plugins/Bundler.py src/lib/Bcfg2/Server/Plugins/SSHbase.py src/sbin/bcfg2-lint
| * fixed long linesChris St. Pierre2013-05-071-1/+2
| |
| * SSHbase: add support for ipv6 addresses in known_hosts fileAlexander Sulfrian2013-05-021-2/+2
| |
* | Merge branch 'maint'Chris St. Pierre2013-04-241-3/+4
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/lib/Bcfg2/Client/Client.py src/lib/Bcfg2/Client/Frame.py src/lib/Bcfg2/Client/Tools/YUM.py src/lib/Bcfg2/Options.py src/lib/Bcfg2/Server/Admin/Perf.py src/lib/Bcfg2/Server/Admin/Xcmd.py src/lib/Bcfg2/Server/Admin/__init__.py src/lib/Bcfg2/Server/Core.py src/lib/Bcfg2/Server/FileMonitor/Fam.py src/lib/Bcfg2/Server/Lint/RequiredAttrs.py src/lib/Bcfg2/Server/Plugin/helpers.py src/lib/Bcfg2/Server/Plugins/Base.py src/lib/Bcfg2/Server/Plugins/Bundler.py src/lib/Bcfg2/Server/Plugins/Cfg/CfgPrivateKeyCreator.py src/lib/Bcfg2/Server/Plugins/Cvs.py src/lib/Bcfg2/Server/Plugins/Darcs.py src/lib/Bcfg2/Server/Plugins/Decisions.py src/lib/Bcfg2/Server/Plugins/FileProbes.py src/lib/Bcfg2/Server/Plugins/Fossil.py src/lib/Bcfg2/Server/Plugins/Git.py src/lib/Bcfg2/Server/Plugins/Metadata.py src/lib/Bcfg2/Server/Plugins/NagiosGen.py src/lib/Bcfg2/Server/Plugins/Packages/PackagesSources.py src/lib/Bcfg2/Server/Plugins/Packages/Source.py src/lib/Bcfg2/Server/Plugins/Packages/Yum.py src/lib/Bcfg2/Server/Plugins/Properties.py src/lib/Bcfg2/Server/Plugins/__init__.py src/lib/Bcfg2/Server/__init__.py src/sbin/bcfg2-build-reports src/sbin/bcfg2-crypt testsuite/Testsrc/Testlib/TestServer/TestPlugin/Testhelpers.py testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestMetadata.py testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestProperties.py
| * testsuite: fixed more unit test stuffChris St. Pierre2013-03-261-1/+1
| |
| * testsuite: fixed issues found by latest version of pep8Chris St. Pierre2013-03-261-2/+3
| |
* | use Executor class for better subprocess calling on serverChris St. Pierre2013-03-141-18/+21
| |
* | added a module-level FAM object to avoid passing it as an argument a billion ↵Chris St. Pierre2013-01-171-2/+3
| | | | | | | | times
* | removed support for info/:info filesChris St. Pierre2013-01-171-1/+1
|/
* replace unintuitive reduce() calls with slightly less unintuitive chain() callsChris St. Pierre2013-01-081-8/+7
|
* SSHbase: turn down the noiseChris St. Pierre2012-11-141-2/+2
|
* SSHbase: improved error messagesChris St. Pierre2012-11-131-12/+19
|
* SSHbase: fixed invalidation of ssh_known_hosts cacheChris St. Pierre2012-11-131-4/+4
|
* SSHbase: improved error messageChris St. Pierre2012-11-131-2/+3
|
* Plugins: Update builtin plugins to use 'mode' attributeSol Jerome2012-10-151-3/+3
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* testsuite: expanded pylint coverageChris St. Pierre2012-10-031-35/+53
|
* SSHbase: Fix known_hosts generationSol Jerome2012-08-301-1/+1
| | | | | | | Looks like s.data is already an 'str' object (in py3k) so the decode won't work. Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* renamed Bcfg2Py3k to CompatChris St. Pierre2012-08-271-1/+1
|
* lots of various py3k fixesChris St. Pierre2012-08-211-8/+4
|
* PY3K: Get server code working againSol Jerome2012-05-051-5/+10
| | | | Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
* Allow to run directly from a git checkout (#1037)Sol Jerome2012-03-241-0/+413
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>