Update tasks/preflight.yml

This commit is contained in:
sebclem 2024-02-17 12:53:06 +01:00
parent 8febbebf87
commit acae7181ee

View File

@ -1,17 +1,5 @@
---
- name: Install build dependencies
- name: Install Borgbackup package
ansible.builtin.package:
name: "{{ borg_dependent_packages }}"
state: present
- name: Install dependent Python Packages
ansible.builtin.pip:
name: "{{ borg_dependent_python_packages }}"
when: borg_dependent_python_packages is defined
- name: Install main Python Packages
ansible.builtin.pip:
name: "{{ item.name }}"
version: "{{ item.version | default(omit, true) }}"
when: borg_python_packages is defined
loop: "{{ borg_python_packages }}"
state: present