Top "Fabric" questions

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

Test if File/Dir exists over SSH/Sudo in Python/Bash

I am installing certificates on a remote server and want to check whether they exist before I overwrite them. The …

python bash ssh fabric
Is there a deployment tool similar to Fabric written in JavaScript?

I put together a mobile development stack that is almost entirely using Javascript on node.js. With the only exception …

javascript node.js deployment fabric
paramiko, isn't talking to ssh-agent. same behavior in fabric

Firstly I tried to get fabric working, but it kept asking me for a password. So I'm trying to reduce …

python fabric paramiko ssh-keys ssh-agent
switch to different user using fabric

I recently started looking at fabric for remote deployment. I need to switch to a diff user (from the one …

python deployment fabric
Fabric's cd context manager does not work

I have set up my development environment on a new PC and seems I am having strange error with Fabric. …

python fabric
Fabric - sudo -u

I'm using fabric to launch a command on a remote server. I'd like to launch this command as a different …

python django sudo fabric
Python Fabric: How to retrieve a filelist of a dir

I'm building a remote server admin tool using the python-fabric library and am looking for a good way of retrieving …

python file fabric dir filelist
Does python fabric support dynamic set env.hosts?

I want to change the env.hosts dynamically because sometimes I want to deploy to one machine first, check if …

python fabric
Fabric asks for password even though I can SSH using credential

I'm having an odd problem while deploying a Django site using Fabric. I've configured two servers to use key files …

python django ssh fabric
Is there anyway to put a django site into maintenance mode using fabric?

I'm currently using MaintenanceModeMiddleware to put my site into maintenance mode, but it requires you make the change in the …

python django fabric maintenance-mode