Story #5251
Updated by bmbouter over 5 years ago
h3. Dependency Downloading Solving when syncing collections: When syncing a collection, we would like to have the collections listed as dependencies to be synced into the repository as well. Example: https://docs.ansible.com/ansible/devel/dev_guide/collections_galaxy_meta.html#examples For a collection to be synced, having the below dependencies: <pre> dependencies: "other_namespace.collection1": ">=1.0.0" "other_namespace.collection2": ">=2.0.0,<3.0.0" "anderson55.my_collection": "*" # note: "*" selects the highest version available </pre> The 3 listed collections should also get synced when syncing the collection.