Files

32 lines
867 B
YAML

---
- name: Installing basic utils for comfort work (apt-based system)
when: (ansible_facts['os_family'] == "Debian")
ansible.builtin.apt:
name: "{{ debian_13_packages }}"
update-cache: true # Run apt update before installation
become: true
remote_user: ansible
- name: Install qemu-guest-agent on VM
when:
- ansible_facts['os_family'] == "Debian"
- ansible_facts['virtualization_type'] == "kvm"
ansible.builtin.apt:
name: qemu-guest-agent
state: present
update-cache: true # Run apt update before installation
become: true
remote_user: ansible
tags:
- kvm-guests
- packages
# The same commands for Alpine
- name: Update and install packages on Alpine
when: (ansible_facts['distribution'] == "Alpine")
community.general.apk:
name: "{{ alpine_packages }}"
update_cache: true
remote_user: ansible