ansible/playbooks/mirror.yml

21 lines
378 B
YAML

---
- import_playbook: "include/vm-create.yml myhosts=mirror01.home.foo.sh"
- name: configure instance
hosts: mirror
user: root
gather_facts: true
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