On Nov 15, Jesse Rosenthal wrote:
> Whatever I do, though, I'll need to use pexpect to spawn the
> processes, since I'll need to log in to ssh servers with a password.

You might save yourself this effort by setting up ssh for
non-interactive use with keys instead of password authentication:

   $ cd ~/.ssh
   $ chmod 700 .
   $ ssh-keygen -t rsa  # just keep pressing <enter>
   $ cp id_rsa.pub authorized_keys2

-- 
_ _     ___
|V|icah |- lliott             <><             [EMAIL PROTECTED]
" "     """
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to