ansible/playbooks/git.yml
Timo Makinen 90142649d7 git: Refactor hierarcy and names
git/client is now git and in software submodule
git/server is now git-server
2021-08-31 19:21:52 +00:00

29 lines
509 B
YAML

---
- import_playbook: "include/deploy-kvm-guest.yml myhosts=git"
- name: configure instance
hosts: git
user: root
gather_facts: true
vars_files:
- "{{ ansible_private }}/vars.yml"
pre_tasks:
- name: mount /export
mount:
name: /export
src: LABEL=/export
fstype: xfs
opts: noatime,noexec,nosuid,nodev
passno: "1"
dump: "0"
state: mounted
roles:
- base
- git
- git-server
- sssd
- nfs-client
- autofs