In git.yml there's no support for cloning git submodules. This can be fixed by setting recursive=yes in the git ansible module, but I'm not sure if there's any side effects to just adding that in.
Also, git checkout-index doesn't seem to be submodule aware so using it to copy over the git repository doesn't work with submodules.
In git.yml there's no support for cloning git submodules. This can be fixed by setting
recursive=yesin the git ansible module, but I'm not sure if there's any side effects to just adding that in.Also,
git checkout-indexdoesn't seem to be submodule aware so using it to copy over the git repository doesn't work with submodules.