16 ms·
Another option over Ansible/Saltstack for managing remote hosts, is using something like Fabric [1]. It's a "remote execution framework"; basically a Python wra
by devjam 7y ago
Another option over Ansible/Saltstack for managing remote hosts, is using something like Fabric [1]. It's a "remote execution framework"; basically a Python wrapper around SSH for defining hosts and writing tasks that are executed in a shell on your fleet.
[1] https://www.fabfile.org/ https://www.fabfile.org/
- fpereiro 7y agoWill take a look at Fabric, thank you!