29 lines
594 B
YAML
29 lines
594 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
|
|
- rsync
|
|
- fuse3
|
|
state: present
|
|
|
|
- name: Configure system timezone
|
|
become: true
|
|
ansible.builtin.command: timedatectl set-timezone {{ timezone }}
|
|
changed_when: false
|