Right now code in aplibvirt.py is:
def connect(URI: str = "qemu:///system") -> libvirt.virConnect:
""" Simple libvirt connect function """
return libvirt.open(URI)
So it's ready to consume different URI.
What needs to be done:
- Make it dependant on some configuration from database
- Create proper webpage for it under sysadmin tools (maybe a general settings page which will include this particular settings?)
Right now code in
aplibvirt.pyis:So it's ready to consume different URI.
What needs to be done: