summaryrefslogtreecommitdiff
path: root/lib/ansible
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible')
-rw-r--r--lib/ansible/collections/list.py47
-rw-r--r--lib/ansible/utils/collection_loader/_collection_finder.py37
2 files changed, 47 insertions, 37 deletions
diff --git a/lib/ansible/collections/list.py b/lib/ansible/collections/list.py
index a1d9901706..c6af77a364 100644
--- a/lib/ansible/collections/list.py
+++ b/lib/ansible/collections/list.py
@@ -69,33 +69,34 @@ def list_collection_dirs(search_paths=None, coll_filter=None):
collections = defaultdict(dict)
for path in list_valid_collection_paths(search_paths):
- b_path = to_bytes(path)
- if os.path.isdir(b_path):
- b_coll_root = to_bytes(os.path.join(path, 'ansible_collections'))
+ if os.path.basename(path) != 'ansible_collections':
+ path = os.path.join(path, 'ansible_collections')
+
+ b_coll_root = to_bytes(path, errors='surrogate_or_strict')
- if os.path.exists(b_coll_root) and os.path.isdir(b_coll_root):
+ if os.path.exists(b_coll_root) and os.path.isdir(b_coll_root):
- if namespace is None:
- namespaces = os.listdir(b_coll_root)
- else:
- namespaces = [namespace]
+ if namespace is None:
+ namespaces = os.listdir(b_coll_root)
+ else:
+ namespaces = [namespace]
- for ns in namespaces:
- b_namespace_dir = os.path.join(b_coll_root, to_bytes(ns))
+ for ns in namespaces:
+ b_namespace_dir = os.path.join(b_coll_root, to_bytes(ns))
- if os.path.isdir(b_namespace_dir):
+ if os.path.isdir(b_namespace_dir):
- if collection is None:
- colls = os.listdir(b_namespace_dir)
- else:
- colls = [collection]
+ if collection is None:
+ colls = os.listdir(b_namespace_dir)
+ else:
+ colls = [collection]
- for mycoll in colls:
+ for mycoll in colls:
- # skip dupe collections as they will be masked in execution
- if mycoll not in collections[ns]:
- b_coll = to_bytes(mycoll)
- b_coll_dir = os.path.join(b_namespace_dir, b_coll)
- if is_collection_path(b_coll_dir):
- collections[ns][mycoll] = b_coll_dir
- yield b_coll_dir
+ # skip dupe collections as they will be masked in execution
+ if mycoll not in collections[ns]:
+ b_coll = to_bytes(mycoll)
+ b_coll_dir = os.path.join(b_namespace_dir, b_coll)
+ if is_collection_path(b_coll_dir):
+ collections[ns][mycoll] = b_coll_dir
+ yield b_coll_dir
diff --git a/lib/ansible/utils/collection_loader/_collection_finder.py b/lib/ansible/utils/collection_loader/_collection_finder.py
index 3ce077d354..5f5b0dbb68 100644
--- a/lib/ansible/utils/collection_loader/_collection_finder.py
+++ b/lib/ansible/utils/collection_loader/_collection_finder.py
@@ -61,19 +61,22 @@ class _AnsibleCollectionFinder:
# expand any placeholders in configured paths
paths = [os.path.expanduser(to_native(p, errors='surrogate_or_strict')) for p in paths]
+ # add syspaths if needed
if scan_sys_paths:
- # append all sys.path entries with an ansible_collections package
- for path in sys.path:
- if (
- path not in paths and
- os.path.isdir(to_bytes(
- os.path.join(path, 'ansible_collections'),
- errors='surrogate_or_strict',
- ))
- ):
- paths.append(path)
-
- self._n_configured_paths = paths
+ paths.extend(sys.path)
+
+ good_paths = []
+ # expand any placeholders in configured paths
+ for p in paths:
+
+ # ensure we alway shave ansible_collections
+ if os.path.basename(p) == 'ansible_collections':
+ p = os.path.dirname(p)
+
+ if p not in good_paths and os.path.isdir(to_bytes(os.path.join(p, 'ansible_collections'), errors='surrogate_or_strict')):
+ good_paths.append(p)
+
+ self._n_configured_paths = good_paths
self._n_cached_collection_paths = None
self._n_cached_collection_qualified_paths = None
@@ -111,8 +114,14 @@ class _AnsibleCollectionFinder:
path = to_native(path)
interesting_paths = self._n_cached_collection_qualified_paths
if not interesting_paths:
- interesting_paths = [os.path.join(p, 'ansible_collections') for p in
- self._n_collection_paths]
+ interesting_paths = []
+ for p in self._n_collection_paths:
+ if os.path.basename(p) != 'ansible_collections':
+ p = os.path.join(p, 'ansible_collections')
+
+ if p not in interesting_paths:
+ interesting_paths.append(p)
+
interesting_paths.insert(0, self._ansible_pkg_path)
self._n_cached_collection_qualified_paths = interesting_paths