EvoBSD/roles/etc-git/tasks/repositories.yml
2022-05-03 15:55:45 +02:00

24 lines
403 B
YAML

---
- include: repository.yml
vars:
repository_path: "/etc"
tags:
- etc-git
- name: verify /usr/share/scripts presence
stat:
path: /usr/share/scripts
register: _usr_share_scripts
tags:
- etc-git
- include: repository.yml
vars:
repository_path: "/usr/share/scripts"
when:
- _usr_share_scripts.stat.exists
- _usr_share_scripts.stat.isdir
tags:
- etc-git