community.general/tests/integration/targets/lookup_merge_variables/runme.sh
Roy Lenferink f0df94e0f8 Revert "bug(lookup/merge_variables): Fix rendering foreign variables (#8303)"
This reverts commit 136419c5c0.

This because - with the introduction of data tagging to Ansible - the
internal `HostVars.raw_get()` function is no longer available and only
methods defined by `Mapping` should be used.

See https://github.com/ansible/ansible/issues/84799#issuecomment-2745254573
for more context.
2025-03-23 11:32:50 +01:00

16 lines
631 B
Bash
Executable file

#!/usr/bin/env bash
# Copyright (c) 2020, Thales Netherlands
# Copyright (c) 2021, Ansible project
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
set -eux
ANSIBLE_LOG_PATH=/tmp/ansible-test-merge-variables \
ansible-playbook test.yml "$@"
ANSIBLE_LOG_PATH=/tmp/ansible-test-merge-variables \
ANSIBLE_MERGE_VARIABLES_PATTERN_TYPE=suffix \
ansible-playbook test_with_env.yml "$@"
ANSIBLE_LOG_PATH=/tmp/ansible-test-merge-variables \
ansible-playbook -i test_inventory_all_hosts.yml test_all_hosts.yml "$@"