homelab-v3/ansible/playbooks/01_host_prep.yml
2026-07-16 05:52:13 +00:00

27 lines
558 B
YAML

---
- name: Prepare Hypervisor Host
hosts: hypervisor
gather_facts: true
tasks:
- name: Enable EPEL repository
become: true
ansible.builtin.dnf:
name: epel-release
state: present
- name: Install utility tools
become: true
ansible.builtin.dnf:
name:
- htop
- tmux
- git
- curl
state: present
- name: Configure system timezone
become: true
ansible.builtin.command: timedatectl set-timezone {{ timezone }}
changed_when: false