Skip to content

Instantly share code, notes, and snippets.

@errorgem
Forked from yuvadm/fabfile.py
Created April 11, 2012 17:11
Show Gist options
  • Save errorgem/2360615 to your computer and use it in GitHub Desktop.
Save errorgem/2360615 to your computer and use it in GitHub Desktop.
Fabric example for SSH keyfile connection
from fabric.api import *
env.hosts = ['host.name.com']
env.user = 'user'
env.key_filename = '/path/to/keyfile.pem'
def local_uname():
local('uname -a')
def remote_uname():
run('uname -a')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment