2019-08-28 03:11:21 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
2020-04-01 01:01:18 +02:00
|
|
|
# we need multiple plays, and conditional import_playbook is noisy and causes problems, so choose here which one to use...
|
|
|
|
if [[ ${INVENTORY_PATH} == *.winrm ]]; then
|
|
|
|
export TEST_PLAYBOOK=windows.yml
|
|
|
|
else
|
|
|
|
export TEST_PLAYBOOK=test.yml
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
2020-06-11 20:40:13 +02:00
|
|
|
ANSIBLE_COLLECTIONS_PATH="${PWD}/collection_root" ansible-playbook "${TEST_PLAYBOOK}" -i "${INVENTORY_PATH}" "$@"
|