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 set environment variables using Fabric

I have a local development environment that relies heavily on system environment variables (it follows the Heroku 12-factor app model), …

shell ubuntu fabric
fabric API direct call in python

i remember fabric API can be called directly in py script but forgot where to start anybody give a clue?

python fabric
Using Python Fabric without the command-line tool (fab)

Altough Fabric documentations refers to a way of using the library for SSH access without requiring the fab command-line tool …

python fabric
How do I create a new file on a remote host in fabric (python deployment tool)?

I'd like to create a file with the name passenger_wsgi.py on a remote host. I'd like to use …

python bash fabric
How to make Fabric ignore offline hosts in the env.hosts list?

This is related to my previous question, but a different one. I have the following fabfile: from fabric.api import * …

python fabric
Run shell script using fabric and piping script text to shell's stdin

Is there a way to execute a multi-line shell script by piping it to the remote shell's standard input in …

python fabric
Fabric on Oracle Linux 6.5 fails with "pkg_resources.DistributionNotFound: paramiko>=1.10"

When I run fab it appears to fail on a paramiko dependency: Traceback (most recent call last): File "/usr/bin/…

pip fabric paramiko
Fabric put command gives fatal error: 'No such file' exception

I'm using Fabric 1.01, and in my fabfile I'm using the put command. The line is: put('file.tar.gz', '~/…

python fabric
Change Unix password from command line over Python/Fabric

I would like a way to update my password on a remote Ubuntu 10.4 box with fabric. I would expect my …

python unix passwords fabric passwd
How to get the content of a remote file without a local temporary file with fabric

I want to get the content of a remote file with fabric, without creating a temporary file.

python fabric