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

This commit is contained in:
Danny Bessems 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

View File

@ -146,7 +146,9 @@ dependencies:
url: http://github.com/mikefarah/yq/releases/download/v4.25.3/yq_linux_amd64
packages:
- lvm2
- python3-jmespath
- python3-passlib
- python3-pyvmomi
apt:
- lvm2
pip:
- jmespath
- passlib
- pyvmomi