What is Ansible equivalent to Salt's top file?

Viewed 34

I'm trying to merge from Salt to Ansible. What is Ansible equivalent to Salt's top file?

1 Answers

In Ansible you build inventory, put your hosts into groups and then you run playbooks, that will bring your hosts to the desired state (e.g. ensure that software is installed, files are present, etc) on those groups. Note that there is no agent software with Ansible, it uses SSH to do things on remote hosts,

Related