Hi,
I'd like to be able to .get() on a ThreadingGroup and have the hostname/ip/somethingunique added to the dst filename so I can get the same file from multiple hosts.
Sorry if I missed it, but I can not see a clean way to move to:
ThreadingGroup(*hosts, **DEFAULT_FAB_KWARGS).get(self._src, self._dst)
from
...
with fab.settings(fab.hide("running"), warn_only=True):
fab.execute(self._get, hosts=hosts)
@fab.parallel
def _get(self):
fab.get(self._src, self._dst + "." + fab.env.host)
Please merge or propose workaround if they exist! Thanks.
Hi,
I'd like to be able to .get() on a ThreadingGroup and have the hostname/ip/somethingunique added to the
dstfilename so I can get the same file from multiple hosts.Sorry if I missed it, but I can not see a clean way to move to:
from
Please merge or propose workaround if they exist! Thanks.