ft_chatons/ansible/playbooks/install.yml
2026-02-19 22:25:24 +01:00

24 lines
443 B
YAML

---
- name: Configure ft_chatons base VM
hosts: ft_chatons
become: yes
tasks:
- name: Update apt cache
apt:
update_cache: yes
- name: Upgrade all packages
apt:
upgrade: dist
update_cache: yes
- name: Install htop
apt:
name:
- htop
- vim
state: present
- name: Include Docker installation tasks
include_tasks: tasks/docker.yml