From e75648a75f74221c4c7a2e6c828376cb639eee4e Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Fri, 8 Dec 2023 22:44:47 +0100 Subject: [PATCH] ansible.cfg: "collections_paths" is deprecated, use singular This fixes the following warning of ansible-lint: DEPRECATION WARNING]: [defaults]collections_paths option, does not fit var naming standard, use the singular form collections_path instead. This feature will be removed from ansible-core in version 2.19. --- ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index c74aaba..bad09ee 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -4,7 +4,7 @@ [defaults] ansible_managed = Managed by Ansible, DO NOT MODIFY, changes will be overwritten! check_mode_markers = yes -collections_paths = ansible_galaxy +collections_path = ansible_galaxy display_failed_stderr = yes fact_caching = jsonfile fact_caching_connection = .cache -- 2.39.2