7 lines
104 B
Python
7 lines
104 B
Python
|
from fabric.api import env, run
|
||
|
|
||
|
env.hosts = ['web1', 'web2', 'web3']
|
||
|
|
||
|
def hello():
|
||
|
run('hostname')
|