search for: setupcommand

Displaying 4 results from an estimated 4 matches for "setupcommand".

2010 Aug 23
3
[Bug 1808] New: "SetupCommand" invoked before connecting
https://bugzilla.mindrot.org/show_bug.cgi?id=1808 Summary: "SetupCommand" invoked before connecting Product: Portable OpenSSH Version: 5.6p1 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: ssh AssignedTo: unassigned-bugs at mindrot.org...
2009 Jul 08
4
Feature request: "SetupCommand" invoked before connecting
...has to create a second option parser for ssh. Furthermore configuration that belongs to ssh is now located somewhere else (not in .ssh/config). The approach may also fail when third party applications that invoke ssh reset $PATH. 3) Extending ssh itself using a new configuration item "SetupCommand": Sample Implementation: ~~~~~~~~~~~~~~~~~~~~~~ I propose adding a new configuration item "SetupCommand" for the ssh client software. It would accept a string that is treated exactly the same as LocalCommand. As with LocalCommand it should also be ignored when PermitLocalCommand is...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...are +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +"""Unit and functional test suite for server.""" + +from os import path +import sys + +from tg import config +from paste.deploy import loadapp +from paste.script.appinstall import SetupCommand +from routes import url_for +from webtest import TestApp +from nose.tools import eq_ + +from ovirtserver import model + +__all__ = ['setup_db', 'teardown_db', 'TestController', 'url_for'] + +def setup_db(): + """Method used to build a database"...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...are -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -"""Unit and functional test suite for server.""" - -from os import path -import sys - -from tg import config -from paste.deploy import loadapp -from paste.script.appinstall import SetupCommand -from routes import url_for -from webtest import TestApp -from nose.tools import eq_ - -from ovirtserver import model - -__all__ = ['setup_db', 'teardown_db', 'TestController', 'url_for'] - -def setup_db(): - """Method used to build a database"...