diff --git a/hosts.py b/hosts.py new file mode 100644 index 0000000..64f84c1 --- /dev/null +++ b/hosts.py @@ -0,0 +1,6 @@ +from fabric.api import env, run + +env.hosts = ['web1', 'web2', 'web3'] + +def hello(): + run('hostname')