fabfile.py内で以下のような関数オブジェクトを作る
fabfile.py
env.hosts = ['127.0.0.1']
def local():
env.hosts = ['127.0.0.1']
def all():
env.hosts = ['aaa.example.com','bbb.example.com',...]
def deploy():
# 処理
呼び出し時
呼び出し
% # ローカルホストのみ
% fab local deploy
%
% # 複数ホスト
% fab all deploy