This commit is contained in:
parent
185b332764
commit
c48f27c42e
@ -1,6 +1,6 @@
|
|||||||
- name: Install additional packages
|
- name: Install additional packages
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
pkg: "{{ packages }}"
|
pkg: "{{ packages.apt }}"
|
||||||
state: latest
|
state: latest
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
install_recommends: no
|
install_recommends: no
|
||||||
@ -11,6 +11,11 @@
|
|||||||
state: latest
|
state: latest
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
|
||||||
|
- name: Install additional python packages
|
||||||
|
ansible.builtin.pip:
|
||||||
|
name: "{{ packages.pip }}"
|
||||||
|
state: latest
|
||||||
|
|
||||||
- name: Cleanup
|
- name: Cleanup
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
autoremove: yes
|
autoremove: yes
|
||||||
|
@ -146,7 +146,9 @@ dependencies:
|
|||||||
url: http://github.com/mikefarah/yq/releases/download/v4.25.3/yq_linux_amd64
|
url: http://github.com/mikefarah/yq/releases/download/v4.25.3/yq_linux_amd64
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
- lvm2
|
apt:
|
||||||
- python3-jmespath
|
- lvm2
|
||||||
- python3-passlib
|
pip:
|
||||||
- python3-pyvmomi
|
- jmespath
|
||||||
|
- passlib
|
||||||
|
- pyvmomi
|
||||||
|
Loading…
Reference in New Issue
Block a user