mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-23 17:39:09 -07:00
use ANSIBLE_ prefix on all ansible-defined env vars (#54272)
mark old version deprecated in all places referenced via docs
This commit is contained in:
parent
53b56825cd
commit
51f2065df5
5 changed files with 57 additions and 9 deletions
|
@ -85,38 +85,38 @@ export ANSIBLE_FORCE_COLOR=0
|
|||
export ANSIBLE_NOCOLOR=1
|
||||
|
||||
# Default settings
|
||||
export DISPLAY_SKIPPED_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_SKIPPED_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_OK_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_FAILED_STDERR=0
|
||||
|
||||
run_test default
|
||||
|
||||
# Hide skipped
|
||||
export DISPLAY_SKIPPED_HOSTS=0
|
||||
export ANSIBLE_DISPLAY_SKIPPED_HOSTS=0
|
||||
|
||||
run_test hide_skipped
|
||||
|
||||
# Hide skipped/ok
|
||||
export DISPLAY_SKIPPED_HOSTS=0
|
||||
export ANSIBLE_DISPLAY_SKIPPED_HOSTS=0
|
||||
export ANSIBLE_DISPLAY_OK_HOSTS=0
|
||||
|
||||
run_test hide_skipped_ok
|
||||
|
||||
# Hide ok
|
||||
export DISPLAY_SKIPPED_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_SKIPPED_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_OK_HOSTS=0
|
||||
|
||||
run_test hide_ok
|
||||
|
||||
# Failed to stderr
|
||||
export DISPLAY_SKIPPED_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_SKIPPED_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_OK_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_FAILED_STDERR=1
|
||||
|
||||
run_test failed_to_stderr
|
||||
|
||||
# Default settings with unreachable tasks
|
||||
export DISPLAY_SKIPPED_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_SKIPPED_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_OK_HOSTS=1
|
||||
export ANSIBLE_DISPLAY_FAILED_STDERR=1
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue