ansible/playbooks/git.yml
Timo Makinen 58de72e85a git: Convert to CentOS 8 and Apache
* Update git hosts to CentOS 8
 * Drop nslscd and use sssd instead
 * Change nginx to apache for future GSSAPI support
 * Fix SELinux contexts from git data directory
2021-03-17 21:29:47 +00:00

27 lines
500 B
YAML

---
- import_playbook: "include/deploy-kvm-guest.yml myhosts=git02.home.foo.sh"
- 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/client
- git/server
- sssd