When I administer dozens of servers using Fabric, I often do not need the features of the commands running on each server, instead I want to map small bits of information from each host and present it in the summary at the end.
Does Fabric support this functionality? (I searched the documentation to no avail, but maybe I missed something).
Otherwise, I suppose, it would be possible to aggregate this information manually and then add an exit handler, but this seems like a normal use case.
As an example, I have several scripts that perform some basic security checks on multiple servers, and I would like to create a report at the end instead of scrolling through the output for each server. I do not want to limit the output of Fabric, because if there is a problem, I want to scroll back to pinpoint it.
source
share