fabpreso/hosts.py

7 lines
104 B
Python
Raw Normal View History

2013-01-24 18:30:47 -08:00
from fabric.api import env, run
env.hosts = ['web1', 'web2', 'web3']
def hello():
run('hostname')