Top "Fabric" questions

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

How to make Fabric continue running the next command after getting the exit status: 1?

I'm going to install check_mk plugin by writing a simple fabfile like this: from fabric.api import env, run, …

python fabric exitstatus
Connecting to EC2 using keypair (.pem file) via Fabric

Anyone has any Fabric recipe that shows how to connect to EC2 using the pem file? I tried writing it …

python fabric
How to answer to prompts automatically with python fabric?

I want to run a command which prompts me to enter yes/no or y/n or whatever. If I …

python command-prompt fabric
How to set CFLAGS and LDFLAGS to compile pycrypto

I am trying to install the fabric library to an old machine. There are some legacy libraries in /usr/lib, …

python build pip fabric pycrypto
Run Spyder /Python on remote server

So there are variants of this question - but none quite hit the nail on the head. I want to …

python docker server spyder fabric
Best Fabric scripts for Django

What are the best stock Fabric scripts for deploying a typical Django project? Fabric looks very good, but seems to …

django deployment fabric
Python Fabric - No hosts found. Please specify (single) host string for connection:

How do I get No hosts found. Please specify (single) host string for connection: ? How to a resolve with fabric? …

python fabric
Get the current value of env.hosts list with Python Fabric Library

I've got this code (foo and bar are local servers): env.hosts = ['foo', 'bar'] def mytask(): print(env.hosts[0]) Which, …

python fabric
running fabric script locally

I have a django app and I wrote a fabric script that installs my app on deployment server (Cent OS 5). …

django fabric
json.loads() is returning a unicode object instead of a dictionary

I'm reading in json from a file on a remote server using fabric: from StringIO import StringIO output = StringIO() get(…

python json python-2.7 unicode fabric