cd8ce16d48
This fixes a regression that was caused by switching from copy() to deepcopy() when 'saving' variables before templating. Since HostVars did not implement the __deepcopy__() method, deepcopy returned incorrect results when host vars were present in the variables. Fixes #63940
15 lines
438 B
Bash
Executable file
15 lines
438 B
Bash
Executable file
#!/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 "$@"
|