25 lines
463 B
YAML
25 lines
463 B
YAML
---
|
|
- import_playbook: "include/deploy-kvm-guest.yml myhosts=jenkins"
|
|
|
|
- name: configure instance
|
|
hosts: jenkins
|
|
user: root
|
|
gather_facts: true
|
|
|
|
pre_tasks:
|
|
- name: mount /export
|
|
mount:
|
|
name: /export
|
|
src: LABEL=/export
|
|
fstype: xfs
|
|
opts: noatime,noexec,nosuid,nodev
|
|
passno: "0"
|
|
dump: "0"
|
|
state: mounted
|
|
|
|
vars_files:
|
|
- "{{ ansible_private }}/vars.yml"
|
|
|
|
roles:
|
|
- base
|
|
- jenkins
|