Remove deprecated plural form of collection path (#84156)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/75854/merge
Abhijeet Kasurde 1 year ago committed by GitHub
parent d662a8d088
commit f29b46e438
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,3 @@
---
removed_features:
- Remove deprecated plural form of collection path (https://github.com/ansible/ansible/pull/84156).

@ -212,18 +212,9 @@ COLLECTIONS_PATHS:
default: '{{ ANSIBLE_HOME ~ "/collections:/usr/share/ansible/collections" }}' default: '{{ ANSIBLE_HOME ~ "/collections:/usr/share/ansible/collections" }}'
type: pathspec type: pathspec
env: env:
- name: ANSIBLE_COLLECTIONS_PATHS
deprecated:
why: does not fit var naming standard, use the singular form ANSIBLE_COLLECTIONS_PATH instead
version: "2.19"
- name: ANSIBLE_COLLECTIONS_PATH - name: ANSIBLE_COLLECTIONS_PATH
version_added: '2.10' version_added: '2.10'
ini: ini:
- key: collections_paths
section: defaults
deprecated:
why: does not fit var naming standard, use the singular form collections_path instead
version: "2.19"
- key: collections_path - key: collections_path
section: defaults section: defaults
version_added: '2.10' version_added: '2.10'

@ -1155,7 +1155,7 @@
- name: install collection with directory source and trailing slash - {{ test_id }} - name: install collection with directory source and trailing slash - {{ test_id }}
command: ansible-galaxy collection install '{{ galaxy_dir }}/scratch/trailing_dir/name/' {{ galaxy_verbosity }} command: ansible-galaxy collection install '{{ galaxy_dir }}/scratch/trailing_dir/name/' {{ galaxy_verbosity }}
environment: environment:
ANSIBLE_COLLECTIONS_PATHS: '{{ galaxy_dir }}/ansible_collections' ANSIBLE_COLLECTIONS_PATH: '{{ galaxy_dir }}/ansible_collections'
register: install_dir_slash register: install_dir_slash
- name: get result of install collections with with trailing slash - {{ test_id }} - name: get result of install collections with with trailing slash - {{ test_id }}

Loading…
Cancel
Save