Skip to content

Commit

Permalink
Added pip Package install prerequisite
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Caron committed Jan 24, 2023
1 parent f1b1062 commit 4356e7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This role was tested on Proxmox VE 7.2.
Requirements
------------

This role requires `pexpect` to configure the various CLI prompts. If the module is missing from the host, a prerequiste task will install it.
This role requires `pexpect` to configure the various CLI prompts. If the module is missing from the host, a prerequiste task will install it along with the `python3-pip` package.

Role Variables
--------------
Expand Down
4 changes: 4 additions & 0 deletions tasks/prereq.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
---
- name: Install pip3
ansible.builtin.apt:
name: python3-pip

- name: Install pexpect
ansible.builtin.pip:
name: pexpect

0 comments on commit 4356e7d

Please sign in to comment.