47 lines
945 B
YAML
47 lines
945 B
YAML
|
---
|
||
|
.hardware: &hardware
|
||
|
memory: 1024
|
||
|
cpu: 2
|
||
|
|
||
|
dependency:
|
||
|
name: galaxy
|
||
|
driver:
|
||
|
name: vagrant
|
||
|
provider:
|
||
|
name: virtualbox
|
||
|
platforms:
|
||
|
- name: buster-mumble-molecule
|
||
|
box: debian/buster64
|
||
|
<<: *hardware
|
||
|
interfaces:
|
||
|
# Umurmur server
|
||
|
- network_name: forwarded_port
|
||
|
guest: 64738
|
||
|
host: 14738
|
||
|
protocol: udp
|
||
|
- network_name: forwarded_port
|
||
|
guest: 64738
|
||
|
host: 14738
|
||
|
protocol: tcp
|
||
|
- name: focal-mumble-molecule
|
||
|
box: ubuntu/focal64
|
||
|
<<: *hardware
|
||
|
interfaces:
|
||
|
# Umurmur server
|
||
|
- network_name: forwarded_port
|
||
|
guest: 64738
|
||
|
host: 24738
|
||
|
protocol: udp
|
||
|
- network_name: forwarded_port
|
||
|
guest: 64738
|
||
|
host: 24738
|
||
|
protocol: tcp
|
||
|
provisioner:
|
||
|
name: ansible
|
||
|
config_options:
|
||
|
defaults:
|
||
|
interpreter_python: /usr/bin/python3
|
||
|
ssh_connection:
|
||
|
pipelining: true
|
||
|
verifier:
|
||
|
name: ansible
|