mirror of https://github.com/ansible/ansible.git
Install passlib before starting lookups test.
parent
f5edc840e2
commit
941a32a632
@ -0,0 +1,4 @@
|
|||||||
|
- hosts: testhost
|
||||||
|
gather_facts: yes
|
||||||
|
roles:
|
||||||
|
- { role: lookups }
|
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -eux
|
||||||
|
|
||||||
|
# Requirements have to be installed prior to running ansible-playbook
|
||||||
|
# because plugins and requirements are loaded before the task runs
|
||||||
|
pip install passlib
|
||||||
|
|
||||||
|
ANSIBLE_ROLES_PATH=../ ansible-playbook lookups.yml -i ../../inventory -e @../../integration_config.yml "$@"
|
Loading…
Reference in New Issue