diff --git a/changelogs/fragments/78819-78820-remove-deprecated-cow-options.yml b/changelogs/fragments/78819-78820-remove-deprecated-cow-options.yml new file mode 100644 index 00000000000..91e1efec6f9 --- /dev/null +++ b/changelogs/fragments/78819-78820-remove-deprecated-cow-options.yml @@ -0,0 +1,3 @@ +removed_features: + - Remove deprecated ``ANSIBLE_COW_WHITELIST`` configuration environment variable, use ``ANSIBLE_COW_ACCEPTLIST`` instead. (https://github.com/ansible/ansible/issues/78819) + - Remove deprecated ``cow_whitelist`` configuration option, use ``cowsay_enabled_stencils`` instead. (https://github.com/ansible/ansible/issues/78820) diff --git a/lib/ansible/config/base.yml b/lib/ansible/config/base.yml index 9c1def43da0..92061402097 100644 --- a/lib/ansible/config/base.yml +++ b/lib/ansible/config/base.yml @@ -37,20 +37,9 @@ ANSIBLE_COW_ACCEPTLIST: default: ['bud-frogs', 'bunny', 'cheese', 'daemon', 'default', 'dragon', 'elephant-in-snake', 'elephant', 'eyes', 'hellokitty', 'kitty', 'luke-koala', 'meow', 'milk', 'moofasa', 'moose', 'ren', 'sheep', 'small', 'stegosaurus', 'stimpy', 'supermilker', 'three-eyes', 'turkey', 'turtle', 'tux', 'udder', 'vader-koala', 'vader', 'www'] description: Accept list of cowsay templates that are 'safe' to use, set to empty list if you want to enable all installed templates. env: - - name: ANSIBLE_COW_WHITELIST - deprecated: - why: normalizing names to new standard - version: "2.15" - alternatives: 'ANSIBLE_COW_ACCEPTLIST' - name: ANSIBLE_COW_ACCEPTLIST version_added: '2.11' ini: - - key: cow_whitelist - section: defaults - deprecated: - why: normalizing names to new standard - version: "2.15" - alternatives: 'cowsay_enabled_stencils' - key: cowsay_enabled_stencils section: defaults version_added: '2.11'