Re: Python SSH Library for Deploy Script

2007-10-29 Thread Tom Badran
Uggh, now i feel bad that all my deploy scripts are written in bash .. Time to do some migrating methinks. Tom On 28/10/2007, Michael Cuddy <[EMAIL PROTECTED]> wrote: > > > > I'm writing a deploy script, but right now it runs ssh commands directly > > from os.system: > > Paramiko. > > http://www

Re: Python SSH Library for Deploy Script

2007-10-29 Thread Hugh Bien
Thanks! That's exactly what I was looking for. On 10/27/07, Michael Cuddy <[EMAIL PROTECTED]> wrote: > > > > I'm writing a deploy script, but right now it runs ssh commands directly > > from os.system: > > Paramiko. > > http://www.lag.net/paramiko/ > > -- > Mike Cuddy ([EMAIL PROTECTED]), Program

Re: Python SSH Library for Deploy Script

2007-10-27 Thread Michael Cuddy
> I'm writing a deploy script, but right now it runs ssh commands directly > from os.system: Paramiko. http://www.lag.net/paramiko/ -- Mike Cuddy ([EMAIL PROTECTED]), Programmer, Baritone, Daddy, Human. Fen's Ende Software, Redwood City, CA, USA, Earth, Sol System, Milky Way. "The problem

Python SSH Library for Deploy Script

2007-10-27 Thread Hugh Bien
Hi all! I'm writing a deploy script, but right now it runs ssh commands directly from os.system: import os os.system("ssh server.name.com 'cd /deploy/path && run commands'") I'm pretty new to Python and I'm trying to find a SSH library to run commands on a remote server. Does anyone have any exp