mirror of https://github.com/ansible/ansible.git
Add setup roles for passlib and pexpect for use with pause and vars_prompt tests (#43613)
* Add passlib to RHEL test instance
This looks like the only tests instance that is missing this libary. It is needed for vars_prompt tests.
* Create setup roles for pexect and passlib
Switch to using aliases rather than installing directly in the test scripts
(cherry picked from commit 96c2375692
)
pull/49623/head
parent
af03dd0463
commit
afb2e9d029
@ -1 +1,2 @@
|
||||
setup/always/setup_pexpect
|
||||
shippable/posix/group3
|
||||
|
@ -0,0 +1,4 @@
|
||||
- name: Install passlib
|
||||
pip:
|
||||
name: passlib
|
||||
state: present
|
@ -0,0 +1,4 @@
|
||||
- name: Install pexpect
|
||||
pip:
|
||||
name: pexpect
|
||||
state: present
|
@ -1 +1,3 @@
|
||||
setup/always/setup_passlib
|
||||
setup/always/setup_pexpect
|
||||
shippable/posix/group2
|
||||
|
Loading…
Reference in New Issue