22 lines
395 B
YAML
22 lines
395 B
YAML
---
|
|
- import_playbook: "include/deploy-kvm-guest.yml myhosts=minecraft"
|
|
|
|
- name: configure instance
|
|
hosts: minecraft
|
|
user: root
|
|
gather_facts: true
|
|
|
|
pre_tasks:
|
|
- name: mount /export
|
|
mount:
|
|
name: /export
|
|
src: LABEL=/export
|
|
fstype: xfs
|
|
opts: noatime
|
|
passno: "0"
|
|
dump: "0"
|
|
state: mounted
|
|
|
|
roles:
|
|
- base
|
|
- minecraft
|