mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00: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:
committed by
Brian Coca
parent
53b56825cd
commit
51f2065df5
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user