Files
Brian CocaandGitHub ff6e4da36a fixes to FA inheritance (#78990)
finalized applies to all field attributes
fix getting parent value
also remove unused/needed extend/prepend signature
moar testing
2022-10-04 11:47:32 -04:00

12 lines
422 B
Bash
Executable File

#!/usr/bin/env bash
set -eux
# positive inheritance works
ANSIBLE_ROLES_PATH=../ ansible-playbook 48673.yml 75692.yml -i ../../inventory -v "$@"
# ensure negative also works
ansible-playbook -C C75692.yml -i ../../inventory -v "$@" # expects 'foo' not to exist
ansible-playbook C75692.yml -i ../../inventory -v "$@" # creates 'foo'
ansible-playbook -C C75692.yml -i ../../inventory -v "$@" # expects 'foo' does exist