blob: 005f7866e3ce7d84f81603f9a8da616b81a6c829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
# file: vagrant.yaml
- hosts: vagrant
remote_user: vagrant
become: yes
become_user: root
gather_facts: false
pre_tasks:
- name: Gathering Facts
gather_facts:
tags:
- always
roles:
- role: common
tags: common
- role: python_env
tags: python_env
- role: docker
tags: docker
- role: vpp
tags: vpp
- role: vagrant
tags: vagrant
|