27 lines
500 B
YAML
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
|
|
- ldap/nss
|