15 lines
366 B
YAML
15 lines
366 B
YAML
|
##
|
||
|
# This playbook configures the vm host to use systemd-networkd
|
||
|
# it creates a bridge for the vms, puts the hostinterface inside
|
||
|
#
|
||
|
# Be careful, when using it, because it can lock you out of your machine,
|
||
|
# if something goes wrong.
|
||
|
##
|
||
|
---
|
||
|
- name: Prepare libvirt on vm server
|
||
|
hosts: twice
|
||
|
become: true
|
||
|
gather_facts: false
|
||
|
roles:
|
||
|
- setup-libvirt
|