Ansible: Basic Setup
This basic setup is for another linux machine on-premise
Update and install ansible.
First, create our inventory.
Write this to inventory.yml
Test this inventory config.
The output should be like this:
You are done for inventory. Next, you should create playbook.
Playbook have many things to do, for this example this playbook is for update and upgrade apt(s).
Write this to playbook.yml
hosts: all
- Specifies that the playbook will be run on all hosts listed in the inventory. You can replace all with a specific group, such as vps.become: true
- Instructs Ansible to use superuser (root) privileges when running the task.Tasks:
Update APT package cache
: Runs apt-get update to update the package index.Upgrade all APT packages
: Runs apt-get dist-upgrade to safely upgrade all packages, remove unnecessary ones, and flush the cache.
How to run ansible playbook.
Last updated