vote up 2 vote down star

Can someone tell me what's the equivalent of Python's Fabric in Python itself, other languages or third party tools? I am still a bit fuzzy on what it is trying to accomplish and it's usage.

flag

4 Answers

vote up 2 vote down check

These tools are for performing common remote administration tasks usually as part of automated builds - a Ruby equivalent might be Capistrano, JSch in Java.

link|flag
vote up 0 vote down

Looking at the fabric example the first thing I thought about was mpiexec. Given right coding, I believe fabric can be used to run bot-nets or parallel processing clusters depending on your inclination.

link|flag
Actually this is not true. Fabric is a deployment tool for "applications" it in fact the parallel parts of it where removed to simplify it's goal. No idea what you mean by bot-net really. – Jorge Vargas Nov 17 at 4:28
vote up 1 vote down

The Ruby community uses a tool called Capistrano for the same purpose.

link|flag
vote up 0 vote down

It helps you to run commands on a lot of remote machines via SSH from your box. So you don't have to login on each one and copypaste the output of some machine back to your desktop.

link|flag
Does that mean that I'm restricted to linux type OS? I'm guessing that trying to trigger a Windows build with Fabric from my linux machine won't work. – Thierry Lam Sep 25 at 21:26
There are SSH servers for Windows, but the command line environment they give you is probably not posix compatible. – Christian Vest Hansen Oct 12 at 19:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.