Tagged Questions

38
votes
3answers
6k views

Activate a virtualenv via fabric as deploy user

I want to run my fabric script locally, which will in turn, log into my server, switch user to deploy, activate the projects .virtualenv, which will change dir to the project and issue a git pull. ...
24
votes
2answers
2k views

How do you use pip, virtualenv and Fabric to handle deployment?

What are your settings, your tricks, and above all, your workflow? These tools are great but there are still no best practices attached to their usage, so I don't know what is the most efficient way ...
20
votes
9answers
5k views

How to set target hosts in Fabric file

I want to use Fabric to deploy my web app code to development, staging and production servers. My fabfile: def deploy_2_dev(): deploy('dev') def deploy_2_staging(): deploy('staging') def ...
10
votes
4answers
375 views

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 to host1""" @hosts('host2') def host2_deploy(): """Some logic that is ...
10
votes
3answers
1k views

Python's Fabric: Connect to a host listed .ssh/config

I'm having trouble with Fabric not recognizing hosts that I have in .ssh/config. My fabfile.py is as follows: from fabric.api import * env.hosts = ['lulu'] def whoami(): run('whoami') ...
9
votes
4answers
2k views

Can I prevent fabric from prompting me for a sudo password?

I am using Fabric to run commands on a remote server. The user with which I connect on that server has some sudo privileges, and does not require a password to use these privileges. When SSH'ing into ...
7
votes
3answers
558 views

Trouble activating virtualenv on server via Fabric

I am trying to run some Django management commands via Fabric on my staging server. The problem is it seems Fabric is not able to activate the virtualenv and thus using system python/libs when ...
7
votes
3answers
769 views

What is Ruby's equivalent of Python's fabric?

What is the Ruby equivalent of something like fabric? (light weight)
7
votes
4answers
991 views

Python Fabric: How to handle arbitrary remote shell prompt for input?

This is related to this question here, but with a slight twist: instead of just passing 'yes' or 'no', I need Fabric to pass an arbitrary string to the remote shell. For instance, if the remote shell ...
7
votes
4answers
2k views

Python Fabric: How to answer to keyboard input?

I would like to automate the response for some question prompted by some programs, like mysql prompting for a password, or apt asking for a 'yes' or ... when I want to rebuild my haystack index with ...
6
votes
1answer
179 views

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, but also requested user input when no "stdin/interactive ...
6
votes
1answer
542 views

fabric vs pexpect

I've stumbled upon pexpect and my impression is that it looks roughly similar to fabric. I've tried to find some comparision, without a success, so I'm asking here, in case someone has experience with ...
6
votes
2answers
862 views

How to dynamically create module level functions from methods in a class

I am trying to dynamically create module level functions from the methods in a class. So for every method in a class, I want to create a function with the same name which creates an instance of the ...
6
votes
2answers
388 views

The anatomy of a Python web project: development, packaging, deployment

I'm new to Python (from Java+Ant) and was wondering if someone could detail how to best use Fabric+Pip+Virtualenv to set up a Python web application package skeleton. The end goal is to be able to do ...
6
votes
2answers
1k views

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 * host1 = '192.168.200.181' offline_host2 = '192.168.200.199' host3 = ...
5
votes
2answers
612 views

Using an SSH keyfile with Fabric

How do you configure fabric to connect to remote hosts using SSH keyfiles (for example, Amazon EC2 instances)?
4
votes
1answer
102 views

Best way to add an environment variable in fabric?

I would like to pass a few values from fabric into the remote environment, and I'm not seeing a great way to do it. The best I've come up with so far is: with prefix('export FOO=BAR'): run('env ...
4
votes
1answer
113 views

Is there a way to capture the collection of shell commands that fabric outputs?

I've got a collection of fab files that I use to manage servers, install applications on them etc for clients. Some of them are not very happy when I deliver install documentation as a fabfile and ...
4
votes
1answer
496 views

Advanced Django Book

I have ordered the Django Book, but I wonder if there's a good book which goes beyond the subject discussed in that book. For instance, the following topics are not discussed, but I would be ...
4
votes
2answers
93 views

Is there a way to see if there are updates available from a central Mercurial repostiory before pulling them?

I am using Fabric to deploy my Python application from my local machine. I would like to hit our central Mercurial repository (hosted on BitBucket.org) to see if my local repository is at the same rev ...
4
votes
3answers
363 views

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 the following string to create the file's content: ''' import sys, os sys.path.insert(0, ...
4
votes
3answers
2k views

How to continue the task when fabric meet an error

When i define a task run on several remote server, if the task run on server one and meet a error, fabric will stop and Abort the task. But I want to make fabric to ignore the error and run the task ...
4
votes
2answers
1k views

hg pull from bitbucket using fabric

I'm trying to use fabric to deploy a Django project and I get this error when I run hg pull: [myusername.webfactional.com] run: hg pull [myusername.webfactional.com] out: remote: Warning: Permanently ...
4
votes
1answer
737 views

Fabric auto-login in Windows

Relevant question: http://stackoverflow.com/questions/2339735/fabric-password I configured Putty to login with private-public keys (no password) using this guide: ...
4
votes
1answer
627 views

Fabfiles With Command Line Arguments

Is there a clean way to have your fabfile take command line arguments? I'm writing an installation script for a tool that I want to be able to specify an optional target directory via the command ...
4
votes
2answers
407 views

Why does Fabric display the disconnect from server message for almost 2 minutes?

Fabric displays Disconnecting from username@server... done. for almost 2 minutes prior to showing a new command prompt whenever I issue a fab command. This problem exists when using Fabric commands ...
4
votes
6answers
1k views

fabric and svn password

Assuming that I cannot run something like this with Fabric: run("svn update --password 'password' .") how's the proper way to pass to Fabric the password for the remote interactive command line? ...
4
votes
4answers
3k views

fabric password

Every time fabric runs, it asks for root password, can it be sent along same for automated proposes. fab staging test
3
votes
1answer
50 views

Why can't I interact with redis-cli via fabric?

I have a fabric task set up like this: @task def cli(): command = [ os.path.join(env.servers_path, "bin", "redis-cli"), ] run(" ".join(command)) Running it gives me a prompt, ...
3
votes
1answer
142 views

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 user (neither the one connected nor root). def colstat(): run('python manage.py ...
3
votes
3answers
104 views

How to git commit nothing without an error?

I'm trying to write a fabric script that does a git commit; however, if there is nothing to commit, git exits with a status of 1. The deploy script takes that as unsuccessful, and quits. I do want to ...
3
votes
1answer
139 views

Run ssh-add with Fabric in a machine

I'm running some deployment tasks with Fabric that needs to checkout/update a Mercurial repository to the machine and then execute the appropriate copying/configuration. Every time that I instatiate ...
3
votes
2answers
59 views

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 clone ssh://private/repo on remote server using my local key (or using local ssh agent I'm ...
3
votes
2answers
269 views

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 settings.py file on the remote server. I would like to use fabric to ...
3
votes
1answer
1k views

Python: How do I copy a directory to a remote machine using Fabric?

I have a directory on my local machine that I would like to copy to a remote machine and rename using Fabric. I know I can copy file using put, but how do I copy a directory using Fabric. I know it's ...
3
votes
2answers
2k views

How connect 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 with this manner: Python Fabric run command returns "binascii.Error: Incorrect padding" But I'm ...
3
votes
3answers
685 views

How to hide the password in fabric when the command is printed out?

Say I have a fabfile.py that looks like this: def setup(): pwd = getpass('mysql password: ') run('mysql -umoo -p%s something' % pwd) The output of this is: ...
3
votes
4answers
499 views

Stand-alone fabfile for fabric?

Is it possible to make the fabfile stand-alone? I'm not very fond of running the external tool 'fab'. If I manage to get the fabfile standalone I can run the file from within the (Eclipse / Pydev) ...
3
votes
2answers
210 views

Emulate SSH sever for testing purposes

I have to write test for deployment script which uploads files through SSH, but I'd like to have it not depending on external servers configuration. This is how i see it: Create 2 SSH daemons ...
3
votes
2answers
986 views

Activate a python virtual environment using activate_this.py in a fabfile on Windows

I have a Fabric task that needs to access the settings of my Django project. On Windows, I'm unable to install Fabric into the project's virtualenv (issues with Paramiko + pycrypto deps). However, I ...
3
votes
2answers
450 views

How to make Fabric execution follow the env.hosts list order?

I have the following fabfile.py: from fabric.api import env, run host1 = '192.168.200.181' host2 = '192.168.200.182' host3 = '192.168.200.183' env.hosts = [host1, host2, host3] def df_h(): ...
3
votes
2answers
2k views

Fabric error: Fatal error: local() encountered an error (return code 2) while executing 'git commit -m 'message'

I'm trying to setup a fabfile to deploy my Django app. I can't figure out why I'm getting this error: Fatal error: local() encountered an error (return code 2) while executing 'git commit -m 'changed ...
3
votes
4answers
1k views

Activate virtualenv via os.system()

I'm writing a Python-based shell script to boilerplate a Django app with virtualenv, pip, and fabric. Should be straightforward enough, but it appears that I'm not able to activate and run commands in ...
2
votes
0answers
36 views

Making nested calls to “execute” with Python's Fabric library

Python's Fabric provides the ability to invoke fabric functions outside of the "fab" utility using the "execute" function. A contextual problem arises when an "execute" function is invoked within ...
2
votes
1answer
72 views

Using sphinx autodoc for a fabfile

Is it possible to use Sphinx autodoc to generate documentation for my fabfile, from the function docstrings? E.g. for a fabfile containing a setup_development task i've tried: .. automodule::fabfile ...
2
votes
1answer
22 views

Are there any tag values I should disallow for my deploy script?

I'm writing a semi-automated deploy script that allows users to tag the repository at deploy time. Right now it simply prompts for input and attempts to use whatever value is entered as the tag name: ...
2
votes
2answers
92 views

Preferable way to automatically update SSH config file using Python?

I'm using Fabric to automate some of my workflow, most of which involves manipulating EC2 instances. I'm looking for a way to keep my .ssh/config file up-to-date, as I regularly spin up and shutdown ...
2
votes
1answer
827 views

GCC error: command 'gcc-4.0' failed with exit status 1

I am trying to install Fabric into a Virtualenv / Django 1.3.1 / OS X Lion with Xcode 4.2. This error seems to be fairly prevalent but I can't seem to find an answer when you are running Python 2.7 ...
2
votes
3answers
94 views

Django seamless upgrades with CDN

[I'm using AWS but I think this question is relevant to all CDNs] I'm looking to seamless deploy my Django server to the AWS cloud. All static content (e.g. images, javascript, etc.) go to the Amazon ...
2
votes
2answers
174 views

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 and/or tasks, I can't seem to manage a way to do it. I want to run this ...

1 2 3