15 lines
268 B
YAML
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 }}" |