Fix missing pkg-configure

This commit is contained in:
SebClem 2023-02-17 15:14:42 +01:00
parent 4a7175e7d6
commit ec2f405ab1
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50
2 changed files with 8 additions and 0 deletions

View File

@ -1,4 +1,9 @@
---
- name: Install build dependencies
ansible.builtin.package:
name: "{{ borg_dependent_packages }}"
state: present
- name: Install dependent Python Packages
ansible.builtin.pip:
name: "{{ borg_dependent_python_packages }}"

View File

@ -5,6 +5,9 @@ borg_dependent_python_packages:
- cython
- pkgconfig
borg_dependent_packages:
- pkg-config
borg_python_packages:
- name: borgbackup
version: "{{ borg_version }}"