mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 10:10:31 -07:00
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.
16 lines
631 B
Bash
Executable file
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 "$@"
|