Add apt-file to base role

This commit is contained in:
tfranken@ee 2023-08-15 12:09:44 +02:00
parent c5baa24d48
commit dc3a2deee0

View file

@ -26,9 +26,15 @@
- python3-venv
- python3-wheel
- wget
- apt-file
when: ansible_facts['distribution'] == 'Debian'
- name: Update pkgfile (Archlinux)
become: true
ansible.builtin.command: pkgfile -u
when: ansible_facts['distribution'] == 'Archlinux'
- name: Update apt-file database (Debian)
become: true
ansible.builtin.command: apt-file update
when: ansible_facts['distribution'] == 'Debian'