Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 500 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 500 Bytes

Server setup automation with Ansible

Ansible is a configuration management tool that allows to automate the configuration of multiple servers.`

Installation

sudo apt update
sudo apt install ansible

Usage

ansible-playbook -i hosts setup.yml
  • hosts: The inventory file with the hosts to configure.
  • setup.yml: The playbook file with the tasks to execute.

References