Files
ansible-project/git_pull.yml
2021-09-05 19:31:17 +02:00

12 lines
162 B
YAML

---
- name: Git pull
hosts: all
tasks:
- name: pull "{{ git_dest }}"
git:
repo: "{{ git_repo }}"
dest: "{{ git_dest }}"
update: yes