Files
local.realm.ansible/playbooks/update_git.yml
T
2020-12-08 09:50:35 +01:00

15 lines
268 B
YAML

---
- hosts: www.solusar.de
become: true
vars_files:
- vars/directories.yml
tasks:
- name: pull new stuff into cloned git repos
shell: git pull
args:
chdir: "{{ item }}"
executable: /bin/bash
with_items: "{{ git_directories }}"