This commit is contained in:
parent
185b332764
commit
c48f27c42e
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user