added example of context manager use

This commit is contained in:
Stephen McQuay 2013-01-24 18:47:02 -08:00
parent 501ef7e35c
commit 8881f50ffb
1 changed files with 17 additions and 0 deletions

17
context_managers.py Normal file
View File

@ -0,0 +1,17 @@
from fabric.api import env, run, cd, settings, local
env.roledefs = {
'web': ['web1', 'web2', 'web3'],
'db': ['db1', 'db2']
}
def cd_example():
with cd('/tmp'):
run('pwd')
def push_anyway():
with settings(warn_only=True):
# simulate failure
local('false')
run('echo doing it anyway')