Top "Fabric" questions

A Python library and command-line tool for streamlining the use of SSH for application deployment or systems administration tasks.

Python Fabric gives: Fatal error: No existing session

I have the following simple fabfile.py from the docs: from fabric.api import run def host_type(): run('uname …

python fabric
How to discover current role in Python Fabric

This is a very Fabric specific question, but more experienced python hackers might be able to answer this, even if …

python fabric
How to ForwardAgent yes using fabric?

I am successfully run()ning commands on remote server with my private key pair. However, I'd like to do git …

python deployment automation fabric
Can a Python Fabric task invoke other tasks and respect their hosts lists?

I have a fabfile like the following: @hosts('host1') def host1_deploy(): """Some logic that is specific to deploying …

python deployment ssh fabric
when to use fabric or ansible?

OVERVIEW I'd like to have reliable django deployments and I think I'm not following the best practices here. Till now …

django deployment centos ansible fabric
python fabric logging

I came across fabric modules - Its really cool. It works well for me. Now I have an issue ,how …

python logging fabric
How to get Fabric to automatically (instead of user-interactively) interact with shell commands? Combine with pexpect?

Seeking means to get Fabric to automatically (instead of user-interactively) interact with shell commands (and not just requests for passwords, …

python deployment command-prompt fabric pexpect