summaryrefslogtreecommitdiff
path: root/test/integration/targets/lookups/runme.sh
blob: dd8784026d4eac3fa8510bd4170e966e88132229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash

set -eux

source virtualenv.sh

# 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 "$@"

ansible-playbook template_lookup_vaulted.yml --vault-password-file test_vault_pass "$@"

ansible-playbook -i template_deepcopy/hosts template_deepcopy/playbook.yml "$@"

# https://github.com/ansible/ansible/issues/66943
ansible-playbook template_lookup_safe_eval_unicode/playbook.yml "$@"