15 lines
312 B
YAML
15 lines
312 B
YAML
---
|
|
- name: Configure P2P Private Network Bridge
|
|
hosts: proxmox
|
|
become: true
|
|
gather_facts: true
|
|
|
|
tasks:
|
|
- name: Configure p2p bridge
|
|
ansible.builtin.include_role:
|
|
name: p2p_network
|
|
when:
|
|
- priv_nic_1 is defined
|
|
- priv_nic_2 is defined
|
|
- priv_ip is defined
|