Hello,
As part of a playbook I’m writing for creating a KVM virtualization server, I’d also like to create a new virtual network for VMs to use. The commands I would normally run to do this are:
virsh net-define /path/to/mynetwork-config.xml
virsh net-autostart mynetwork
virsh net-start mynetwork
Is there a way that I can run these commands with the virt Ansible module? It says that it can support other libvirt commands, but I am unsure how to execute them?
Thanks,
Andrew