Rebase pip packages
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-08-03 13:53:54 +02:00
parent 185b332764
commit c48f27c42e
2 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,6 @@
- name: Install additional packages
ansible.builtin.apt:
pkg: "{{ packages }}"
pkg: "{{ packages.apt }}"
state: latest
update_cache: yes
install_recommends: no
@ -11,6 +11,11 @@
state: latest
update_cache: yes
- name: Install additional python packages
ansible.builtin.pip:
name: "{{ packages.pip }}"
state: latest
- name: Cleanup
ansible.builtin.apt:
autoremove: yes