с этим playbook я не получаю ошибок, и он работает на Ubuntu против git userhome slash. Autput немного громко, но я не могу понять, почему он не получает должным образом последние изменения с удаленного сервера
- hosts: local
vars:
ansible_python_interpreter: "/usr/bin/env python3"
tasks:
- name: find git directories
find:
paths: "{{ ansible_env.HOME }}/git"
file_type: directory
register: found_directories
- name: update repos
git:
repo: "{{ item.path }}/.git"
dest: "{{ item.path }}"
version: master
update: yes
with_items: "{{ found_directories.files }}"
есть идеи, почему модуль git не извлекает последние изменения из github?